[timidity++] Add a patch fixing a whole lot of compiler warnings Build the gtk UI as a dynamic plugin, this stops

Hans de Goede jwrdegoede at fedoraproject.org
Sat Nov 19 12:35:58 UTC 2011


commit d04427f8a347d7f2993810c08407c0aab3b69c4d
Author: Hans de Goede <hdegoede at redhat.com>
Date:   Sat Nov 19 13:36:03 2011 +0100

    Add a patch fixing a whole lot of compiler warnings
    Build the gtk UI as a dynamic plugin, this stops the main binary from
    depending on gtk + a whole bunch of other deps
    Put the gtk UI plugin into its own timidity++-GTK-interface package
    Enable building the Xaw UI as dynamic plugin, and put it in its own
    timidity++-Xaw3D-interface package

 0010-Fix-silence-various-compiler-warnings.patch   | 1905 +
 ...g-paths-usr-bin-foo-rather-then-usr-local.patch |   52 +
 ...move-all-autofoo-generated-files-from-git.patch |41422 ++++++++++++++++++++
 0013-rename-INSTALL-INSTALL.en.patch               | 1292 +
 ...ofoo-warnings-about-have_speex-ac-cache-i.patch |   27 +
 ...d-of-the-dynamic_control_mode-ControlMode.patch |  294 +
 0016-Silence-dlsym-errors.patch                    |   30 +
 ...ting-of-dynamic-interfaces-in-help-output.patch |   47 +
 ...figure-Don-t-add-lX11-to-the-generic-LIBS.patch |   29 +
 fedora-timidity.desktop                            |    2 +-
 timidity++.spec                                    |   88 +-
 timidity-xaw.desktop                               |    8 +
 12 files changed, 45188 insertions(+), 8 deletions(-)
---
diff --git a/0010-Fix-silence-various-compiler-warnings.patch b/0010-Fix-silence-various-compiler-warnings.patch
new file mode 100644
index 0000000..49676c8
--- /dev/null
+++ b/0010-Fix-silence-various-compiler-warnings.patch
@@ -0,0 +1,1905 @@
+From 8c50f98cd8e9b07babb7892b6ccadb7ad3d8815d Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Thu, 17 Nov 2011 20:44:35 +0100
+Subject: [PATCH 10/17] Fix / silence various compiler warnings
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ interface/gtk_i.c    |   39 +++---
+ interface/server_c.c |   12 +-
+ interface/tk_c.c     |    7 +-
+ interface/wrdt_tty.c |    4 +-
+ interface/x_sherry.c |    4 +-
+ interface/xaw_c.c    |   29 +++--
+ interface/xaw_i.c    |   32 +++---
+ interface/xskin_c.c  |   14 ++-
+ libarc/unlzh.c       |    1 +
+ libunimod/load_far.c |    4 +-
+ libunimod/load_it.c  |    6 +-
+ libunimod/mloader.c  |    4 +-
+ libunimod/mlutil.c   |    4 +-
+ timidity/ao_a.c      |    3 +-
+ timidity/calcnewt.c  |   10 +-
+ timidity/common.c    |   13 ++-
+ timidity/effect.c    |    1 -
+ timidity/esd_a.c     |    2 +-
+ timidity/freq.c      |   14 +--
+ timidity/instrum.c   |    3 +-
+ timidity/loadtab.c   |    2 +-
+ timidity/m2m.c       |   44 ++++----
+ timidity/miditrace.c |    3 +-
+ timidity/output.c    |    5 +-
+ timidity/playmidi.c  |   19 ++--
+ timidity/readmidi.c  |    5 +-
+ timidity/recache.c   |    2 +-
+ timidity/resample.c  |    2 +-
+ timidity/reverb.c    |  336 +++++++++++++++++++++++++++++---------------------
+ timidity/smplfile.c  |   10 +-
+ timidity/speex_a.c   |    7 +-
+ timidity/timidity.c  |   42 ++++---
+ utils/net.c          |    2 +-
+ utils/nkflib.c       |   18 ++-
+ 34 files changed, 391 insertions(+), 312 deletions(-)
+
+diff --git a/interface/gtk_i.c b/interface/gtk_i.c
+index d72217a..9df56f5 100644
+--- a/interface/gtk_i.c
++++ b/interface/gtk_i.c
+@@ -107,8 +107,8 @@ static GtkTextMark *mark;
+ static void
+ generic_cb(GtkWidget *widget, gpointer data)
+ {
+-    gtk_pipe_int_write((int)data);
+-    if((int)data == GTK_PAUSE) {
++    gtk_pipe_int_write(GPOINTER_TO_INT(data));
++    if(GPOINTER_TO_INT(data) == GTK_PAUSE) {
+ 	gtk_label_set(GTK_LABEL(cnt_lbl), "Pause");
+     }
+ }
+@@ -134,20 +134,20 @@ open_file_cb(GtkWidget *widget, gpointer data)
+ #ifdef HAVE_GTK_2
+ 	gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(filesel)->ok_button),
+ 			   "clicked",
+-			   G_CALLBACK (filer_cb), (gpointer)1);
++			   G_CALLBACK (filer_cb), GINT_TO_POINTER(1));
+ #else
+ 	gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(filesel)->ok_button),
+ 			   "clicked",
+-			   GTK_SIGNAL_FUNC (filer_cb), (gpointer)1);
++			   GTK_SIGNAL_FUNC (filer_cb), GINT_TO_POINTER(1));
+ #endif
+ #ifdef HAVE_GTK_2
+ 	gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(filesel)->cancel_button),
+ 			   "clicked",
+-			   G_CALLBACK (filer_cb), (gpointer)0);
++			   G_CALLBACK (filer_cb), GINT_TO_POINTER(0));
+ #else
+ 	gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(filesel)->cancel_button),
+ 			   "clicked",
+-			   GTK_SIGNAL_FUNC (filer_cb), (gpointer)0);
++			   GTK_SIGNAL_FUNC (filer_cb), GINT_TO_POINTER(0));
+ #endif
+     }
+ 
+@@ -167,7 +167,7 @@ filer_cb(GtkWidget *widget, gpointer data)
+ #endif
+     glob_t pglob;
+ 
+-    if((int)data == 1) {
++    if(GPOINTER_TO_INT(data) == 1) {
+ 	patt = gtk_file_selection_get_filename(GTK_FILE_SELECTION(filesel));
+ 	if(glob(patt, GLOB_BRACE|GLOB_NOMAGIC|GLOB_TILDE, NULL, &pglob))
+ 	    return;
+@@ -195,11 +195,11 @@ generic_scale_cb(GtkAdjustment *adj, gpointer data)
+     if(local_adjust)
+ 	return;
+ 
+-    gtk_pipe_int_write((int)data);
++    gtk_pipe_int_write(GPOINTER_TO_INT(data));
+ 
+     /* This is a bit of a hack as the volume scale (a GtkVScale) seems
+        to have it's minimum at the top which is counter-intuitive. */
+-    if((int)data == GTK_CHANGE_VOLUME) {
++    if(GPOINTER_TO_INT(data) == GTK_CHANGE_VOLUME) {
+ 	gtk_pipe_int_write(MAX_AMPLIFICATION - adj->value);
+     }
+     else {
+@@ -259,7 +259,7 @@ playlist_cb(GtkWidget *widget, guint data)
+     gtk_window_set_title(GTK_WINDOW(plfilesel), ((char)data == 'l')?
+ 			 "Load Playlist":
+ 			 "Save Playlist");
+-    gtk_object_set_user_data(GTK_OBJECT(plfilesel), (gpointer)data);
++    gtk_object_set_user_data(GTK_OBJECT(plfilesel), GINT_TO_POINTER(data));
+     gtk_file_selection_complete(GTK_FILE_SELECTION(plfilesel), "*.tpl");
+ 
+     gtk_widget_show(plfilesel);
+@@ -269,7 +269,8 @@ static void
+ playlist_op(GtkWidget *widget, guint data)
+ {
+     int		i;
+-    gchar	*filename[2], action, *rowdata, fname[BUFSIZ], *tmp;
++    const gchar	*filename[2];
++    gchar	action, *rowdata, fname[BUFSIZ], *tmp;
+     FILE	*plfp;
+ 
+     gtk_widget_hide(plfilesel);
+@@ -277,7 +278,7 @@ playlist_op(GtkWidget *widget, guint data)
+     if(!data)
+ 	return;
+ 
+-    action = (gchar)(int)gtk_object_get_user_data(GTK_OBJECT(plfilesel));
++    action = GPOINTER_TO_INT(gtk_object_get_user_data(GTK_OBJECT(plfilesel)));
+     filename[0] = gtk_file_selection_get_filename(GTK_FILE_SELECTION(plfilesel));
+ 
+     if(action == 'l') {
+@@ -286,6 +287,7 @@ playlist_op(GtkWidget *widget, guint data)
+ 	    return;
+ 	}
+ 	while(fgets(fname, BUFSIZ, plfp) != NULL) {
++            gchar *filename[2];
+ 	    if(fname[strlen(fname) - 1] == '\n')
+ 		fname[strlen(fname) - 1] = '\0';
+ 	    filename[0] = fname;
+@@ -600,7 +602,7 @@ create_button_with_pixmap(GtkWidget *window, gchar **bits, gint data, gchar *the
+     gtk_container_add(GTK_CONTAINER(button), pw);
+     gtk_signal_connect(GTK_OBJECT(button), "clicked",
+ 			      GTK_SIGNAL_FUNC(generic_cb),
+-			      (gpointer)data);
++			      GINT_TO_POINTER(data));
+     gtk_widget_show(button);
+     gtk_tooltips_set_tip(ttip, button, thelp, NULL);
+ 
+@@ -672,15 +674,16 @@ create_menubar(void)
+ static GtkTooltips *
+ create_yellow_tooltips()
+ {
+-    GdkColor	*t_back;
+     GtkTooltips	*tip;
+ 
+-    t_back = (GdkColor*)g_malloc( sizeof(GdkColor));
+-
+     /* First create a default Tooltip */
+     tip = gtk_tooltips_new();
+ 
+ #ifndef HAVE_GTK_2
++    GdkColor	*t_back;
++
++    t_back = (GdkColor*)g_malloc( sizeof(GdkColor));
++
+     /* Try to get the colors */
+     if ( gdk_color_parse("linen", t_back)){
+ 	if(gdk_colormap_alloc_color(gdk_colormap_get_system(),
+@@ -781,7 +784,7 @@ handle_input(gpointer client_data, gint source, GdkInputCondition ic)
+     case FILE_LIST_MESSAGE:
+ 	{
+ 	    gchar filename[255], *fnames[2];
+-	    gint i, number_of_files, row;
++	    gint i, number_of_files;
+ 
+ 	    /* reset the playing list : play from the start */
+ 	    file_number_to_play = -1;
+@@ -792,7 +795,7 @@ handle_input(gpointer client_data, gint source, GdkInputCondition ic)
+ 		gtk_pipe_string_read(filename);
+ 		fnames[0] = filename;
+ 		fnames[1] = NULL;
+-		row = gtk_clist_append(GTK_CLIST(clist), fnames);
++		gtk_clist_append(GTK_CLIST(clist), fnames);
+ 	    }
+ 	    gtk_clist_columns_autosize(GTK_CLIST(clist));
+ 	}
+diff --git a/interface/server_c.c b/interface/server_c.c
+index 676aa23..196ea7d 100644
+--- a/interface/server_c.c
++++ b/interface/server_c.c
+@@ -416,7 +416,7 @@ static void server_reset(void);
+ 
+ static int ctl_pass_playing_list(int n, char *args[])
+ {
+-    int sock;
++    int sock = 0;
+ 
+     if(n != 2 && n != 1)
+     {
+@@ -609,6 +609,7 @@ static void add_tick(int tick)
+     seq_play_event(&ev);
+ }
+ 
++#if 0
+ static int tick2sample(int tick)
+ {
+     int32 samples, cum;
+@@ -619,6 +620,7 @@ static int tick2sample(int tick)
+ 	samples += ((sample_cum >> 16) & 0xFFFF);
+     return samples;
+ }
++#endif
+ 
+ int time2tick(double sec)
+ {
+@@ -650,7 +652,6 @@ static void do_timing(uint8 *);
+ static void do_sysex(uint8 *, int len);
+ static void do_extended(uint8 *);
+ static void do_timeout(void);
+-static void server_seq_sync(double tm);
+ 
+ static uint8 data_buffer[BUFSIZ];
+ static int data_buffer_len;
+@@ -824,6 +825,7 @@ static int data_flush(int discard)
+     return 0;
+ }
+ 
++#if 0
+ static void server_seq_sync(double tm)
+ {
+     double t;
+@@ -832,6 +834,7 @@ static void server_seq_sync(double tm)
+     if(t > tm)
+ 	usleep((unsigned long)((t - tm) * 1000000));
+ }
++#endif
+ 
+ static void server_reset(void)
+ {
+@@ -856,7 +859,7 @@ static int do_control_command(void)
+ {
+     int status;
+     char *params[MAX_GETCMD_PARAMS];
+-    int nparams;
++    int nparams = 0;
+     int i;
+ 
+     if((status = control_getcmd(params, &nparams)) == -1)
+@@ -1130,7 +1133,7 @@ static int do_control_command_nonblock(void)
+ 
+ static int fdgets(char *buff, size_t buff_size, struct fd_read_buffer *p)
+ {
+-    int n, len, count, size, fd;
++    int n, count, size, fd;
+     char *buff_endp = buff + buff_size - 1, *pbuff, *beg;
+ 
+     fd = p->fd;
+@@ -1142,7 +1145,6 @@ static int fdgets(char *buff, size_t buff_size, struct fd_read_buffer *p)
+ 	return 0;
+     }
+ 
+-    len = 0;
+     count = p->count;
+     size = p->size;
+     pbuff = p->buff;
+diff --git a/interface/tk_c.c b/interface/tk_c.c
+index 7acab67..c5c9074 100644
+--- a/interface/tk_c.c
++++ b/interface/tk_c.c
+@@ -757,8 +757,8 @@ static void k_pipe_puts(char *str)
+ 	int len;
+ 	char lf = '\n';
+ 	len = line_strlen(str);
+-	write(fpip_out, str, len);
+-	write(fpip_out, &lf, 1);
++	ssize_t dummy = write(fpip_out, str, len);
++	dummy = write(fpip_out, &lf, 1);
+ }
+ 
+ 
+@@ -771,7 +771,8 @@ int k_pipe_gets(char *str, int maxlen)
+ 	/* at least 5 letters (4+\n) command */
+ 	len = 0;
+ 	for (p = str; len < maxlen - 1; p++) {
+-		read(fpip_in, p, 1);
++		ssize_t dummy = read(fpip_in, p, 1);
++		dummy += 1;
+ 		if (*p == '\n')
+ 			break;
+ 		len++;
+diff --git a/interface/wrdt_tty.c b/interface/wrdt_tty.c
+index 93b7905..d30e324 100644
+--- a/interface/wrdt_tty.c
++++ b/interface/wrdt_tty.c
+@@ -292,7 +292,7 @@ static void wrdt_apply(int cmd, int wrd_argc, int wrd_args[])
+ 	  fillbuf[0]=0x1b;
+ 	  fillbuf[1]='7';
+ 	  fillbuf[2]=0;
+-	  printf(fillbuf);
++	  printf("%s", fillbuf);
+ 
+ 	  /* 0-7: normal, 8-16: reverse */
+ 	  if(wrd_args[4] <= 7)
+@@ -308,7 +308,7 @@ static void wrdt_apply(int cmd, int wrd_argc, int wrd_args[])
+ 	  fillbuf[0]=0x1b;
+ 	  fillbuf[1]='8';
+ 	  fillbuf[2]=0;
+-	  printf(fillbuf);
++	  printf("%s", fillbuf);
+ 	  printf("\033[%dm",txtclr_preserve);
+ 	  fflush(stdout);
+ 	}
+diff --git a/interface/x_sherry.c b/interface/x_sherry.c
+index b54a731..59f658a 100644
+--- a/interface/x_sherry.c
++++ b/interface/x_sherry.c
+@@ -827,7 +827,7 @@ static void sry_load_png(uint8 *data)
+ 
+     screen = SRY_GET_SHORT(data) & 0xffff;
+     vpalette = SRY_GET_SHORT(data + 2) & 0xffff;
+-    filename = data + 4;
++    filename = (char *)data + 4;
+ 
+ #ifdef SRY_DEBUG
+     printf("Load png: %s: scr=%d pal=%d\n", filename, screen, vpalette);
+@@ -845,7 +845,7 @@ static void sry_load_png(uint8 *data)
+ 	err_to_stop = 1;
+ 	return;
+     }
+-    if(png_sig_cmp(sig, 0, sizeof(sig)))
++    if(png_sig_cmp((unsigned char*)sig, 0, sizeof(sig)))
+     {
+ 	ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "%s: Not a png file", filename);
+ 	err_to_stop = 1;
+diff --git a/interface/xaw_c.c b/interface/xaw_c.c
+index 5ab58d5..97bee41 100644
+--- a/interface/xaw_c.c
++++ b/interface/xaw_c.c
+@@ -767,21 +767,26 @@ a_pipe_write(const char *fmt, ...) {
+   /* char local_buf[PIPE_LENGTH]; */
+   int len;
+   va_list ap;
++  ssize_t dummy;
+ 
+   va_start(ap, fmt);
+   len = vsnprintf(local_buf, sizeof(local_buf), fmt, ap);
+   if ((len < 0) || (len > PIPE_LENGTH))
+-    write(pipe_out_fd, local_buf, PIPE_LENGTH);
+-  else write(pipe_out_fd, local_buf, len);
+-  write(pipe_out_fd, "\n", 1);
++    dummy = write(pipe_out_fd, local_buf, PIPE_LENGTH);
++  else
++    dummy = write(pipe_out_fd, local_buf, len);
++  dummy += write(pipe_out_fd, "\n", 1);
+   va_end(ap);
+ }
+ 
+ static void
+ a_pipe_write_buf(char *buf, int len) {
+-  if ((len < 0) || (len > PIPE_LENGTH)) write(pipe_out_fd, buf, PIPE_LENGTH);
+-  else write(pipe_out_fd, buf, len);
+-  write(pipe_out_fd, "\n", 1);
++  ssize_t dummy;
++  if ((len < 0) || (len > PIPE_LENGTH))
++    dummy = write(pipe_out_fd, buf, PIPE_LENGTH);
++  else
++    dummy = write(pipe_out_fd, buf, len);
++  dummy += write(pipe_out_fd, "\n", 1);
+ }
+ 
+ static int
+@@ -834,6 +839,7 @@ a_pipe_sync(void) {
+ static void
+ a_pipe_write_msg(char *msg) {
+     size_t msglen;
++    ssize_t dummy;
+     char buf[2 + sizeof(size_t)], *p, *q;
+ 
+     /* convert '\r' to '\n', but strip '\r' from '\r\n' */
+@@ -849,14 +855,15 @@ a_pipe_write_msg(char *msg) {
+     buf[1] = '\n';
+ 
+     memcpy(buf + 2, &msglen, sizeof(size_t));
+-    write(pipe_out_fd, buf, sizeof(buf));
+-    write(pipe_out_fd, msg, msglen - 1);
+-    write(pipe_out_fd, "\n", 1);
++    dummy  = write(pipe_out_fd, buf, sizeof(buf));
++    dummy += write(pipe_out_fd, msg, msglen - 1);
++    dummy += write(pipe_out_fd, "\n", 1);
+ }
+ 
+ static void
+ a_pipe_write_msg_nobr(char *msg) {
+     size_t msglen;
++    ssize_t dummy;
+     char buf[2 + sizeof(size_t)], *p, *q;
+ 
+     /* convert '\r' to '\n', but strip '\r' from '\r\n' */
+@@ -872,8 +879,8 @@ a_pipe_write_msg_nobr(char *msg) {
+     buf[1] = '\n';
+ 
+     memcpy(buf + 2, &msglen, sizeof(size_t));
+-    write(pipe_out_fd, buf, sizeof(buf));
+-    write(pipe_out_fd, msg, msglen);
++    dummy  = write(pipe_out_fd, buf, sizeof(buf));
++    dummy += write(pipe_out_fd, msg, msglen);
+ }
+ 
+ static void
+diff --git a/interface/xaw_i.c b/interface/xaw_i.c
+index 00fa5ef..10fba5e 100644
+--- a/interface/xaw_i.c
++++ b/interface/xaw_i.c
+@@ -688,7 +688,7 @@ aboutACT(Widget w, XEvent *e, String *v, Cardinal *n) {
+   char s[12], *p;
+   char lbuf[30];
+   int i;
+-  Widget popup_about, popup_abox, popup_aok, about_lbl[5];
++  Widget popup_about, popup_abox, popup_aok;
+ 
+   char *info[] = {"TiMidity++ %s%s - Xaw interface",
+                   "- MIDI to WAVE converter and player -",
+@@ -711,7 +711,7 @@ aboutACT(Widget w, XEvent *e, String *v, Cardinal *n) {
+     snprintf(lbuf, sizeof(lbuf), p,
+     		(strcmp(timidity_version, "current")) ? "version " : "",
+     		timidity_version);
+-    about_lbl[i] = XtVaCreateManagedWidget(s,labelWidgetClass,popup_abox,
++    XtVaCreateManagedWidget(s,labelWidgetClass,popup_abox,
+                                 XtNlabel,lbuf, XtNwidth,320, XtNresize,False,
+                                 XtNfontSet,app_resources.label_font,
+                                 XtNforeground,textcolor, XtNborderWidth,0,
+@@ -767,7 +767,7 @@ popdownopt:
+ 
+ static Widget
+ warnCB(Widget w, char *mesname, Boolean destroy) {
+-  Widget popup_warning, popup_wbox, popup_message, popup_wok;
++  Widget popup_warning, popup_wbox, popup_wok;
+ 
+   if (mesname == NULL) return None;
+   popup_warning = XtVaCreatePopupShell("popup_warning",
+@@ -775,7 +775,7 @@ warnCB(Widget w, char *mesname, Boolean destroy) {
+   popup_wbox = XtVaCreateManagedWidget("popup_wbox", boxWidgetClass,
+ 				  popup_warning, XtNbackground,bgcolor,
+                                   XtNorientation,XtorientVertical, NULL);
+-  popup_message = XtVaCreateManagedWidget(mesname, labelWidgetClass,
++  XtVaCreateManagedWidget(mesname, labelWidgetClass,
+                                           popup_wbox,
+                                           XtNfontSet,app_resources.label_font,
+                                           XtNforeground,textcolor,
+@@ -2976,10 +2976,10 @@ addOneFile(int max_files, long curr_num, char *fname) {
+ 
+ static void
+ createOptions(void) {
+-  Widget modul_b, modul_bb, modul_l, porta_b, porta_bb, porta_l, nrpnv_b,
+-         nrpnv_bb, nrpnv_l, reverb_b, reverb_bb, reverb_l, chorus_bb, chorus_l,
+-         chpressure_b, chpressure_bb, chpressure_l, overlapv_b, overlapv_bb,
+-         overlapv_l, txtmeta_b, txtmeta_bb, txtmeta_l,
++  Widget modul_b, modul_bb, porta_b, porta_bb, nrpnv_b,
++         nrpnv_bb, reverb_b, reverb_bb, chorus_bb,
++         chpressure_b, chpressure_bb, overlapv_b, overlapv_bb,
++         txtmeta_b, txtmeta_bb,
+          popup_optform, lowBox, popup_olabel, popup_ook, popup_ocancel;
+   Dimension x, y;
+ 
+@@ -2997,7 +2997,7 @@ createOptions(void) {
+   modul_b = XtVaCreateManagedWidget("modul_button",toggleWidgetClass,modul_bb,
+                        XtNbitmap,off_mark, XtNforeground,togglecolor,
+                        XtNbackground,buttonbgcolor, NULL);
+-  modul_l = XtVaCreateManagedWidget("modul_lbl",labelWidgetClass,modul_bb,
++  XtVaCreateManagedWidget("modul_lbl",labelWidgetClass,modul_bb,
+                        XtNforeground,textcolor, XtNbackground,bgcolor, NULL);
+   porta_bb = XtVaCreateManagedWidget("porta_box",boxWidgetClass,popup_optform,
+                        XtNfromVert,modul_bb, 
+@@ -3006,7 +3006,7 @@ createOptions(void) {
+   porta_b = XtVaCreateManagedWidget("porta_button",toggleWidgetClass,porta_bb,
+                        XtNforeground,togglecolor, XtNbackground,buttonbgcolor,
+                        XtNbitmap,off_mark, XtNfromVert,modul_b, NULL);
+-  porta_l = XtVaCreateManagedWidget("porta_lbl",labelWidgetClass,porta_bb,
++  XtVaCreateManagedWidget("porta_lbl",labelWidgetClass,porta_bb,
+                        XtNforeground,textcolor, XtNbackground,bgcolor, NULL);
+   nrpnv_bb = XtVaCreateManagedWidget("nrpnv_box",boxWidgetClass,popup_optform,
+                        XtNfromVert,porta_bb, 
+@@ -3015,7 +3015,7 @@ createOptions(void) {
+   nrpnv_b = XtVaCreateManagedWidget("nrpnv_button",toggleWidgetClass,nrpnv_bb,
+                        XtNforeground,togglecolor, XtNbackground,buttonbgcolor,
+                        XtNbitmap,off_mark, XtNfromVert,porta_b, NULL);
+-  nrpnv_l = XtVaCreateManagedWidget("nrpnv_lbl",labelWidgetClass,nrpnv_bb,
++  XtVaCreateManagedWidget("nrpnv_lbl",labelWidgetClass,nrpnv_bb,
+                        XtNforeground,textcolor, XtNbackground,bgcolor, NULL);
+   reverb_bb = XtVaCreateManagedWidget("reverb_box",boxWidgetClass,
+                        popup_optform, XtNfromVert,nrpnv_bb,
+@@ -3025,7 +3025,7 @@ createOptions(void) {
+                        reverb_bb, XtNbitmap,off_mark, XtNfromVert,nrpnv_b,
+                        XtNforeground,togglecolor, XtNbackground,buttonbgcolor,
+                        NULL);
+-  reverb_l = XtVaCreateManagedWidget("reverb_lbl",labelWidgetClass,reverb_bb,
++  XtVaCreateManagedWidget("reverb_lbl",labelWidgetClass,reverb_bb,
+                        XtNforeground,textcolor, XtNbackground,bgcolor, NULL);
+   chorus_bb = XtVaCreateManagedWidget("chorus_box",boxWidgetClass,
+                        popup_optform, XtNorientation,XtorientHorizontal,
+@@ -3035,7 +3035,7 @@ createOptions(void) {
+                        chorus_bb, XtNbitmap,off_mark, XtNfromVert,reverb_b,
+                        XtNforeground,togglecolor, XtNbackground,buttonbgcolor,
+                        NULL);
+-  chorus_l = XtVaCreateManagedWidget("chorus_lbl",labelWidgetClass,chorus_bb,
++  XtVaCreateManagedWidget("chorus_lbl",labelWidgetClass,chorus_bb,
+                        XtNforeground,textcolor, XtNbackground,bgcolor, NULL);
+   chpressure_bb = XtVaCreateManagedWidget("chpressure_box",boxWidgetClass,
+                        popup_optform, XtNorientation,XtorientHorizontal,
+@@ -3045,7 +3045,7 @@ createOptions(void) {
+                        toggleWidgetClass,chpressure_bb, XtNbitmap,off_mark,
+                        XtNfromVert,chorus_b, XtNforeground,togglecolor,
+                        XtNbackground,buttonbgcolor, NULL);
+-  chpressure_l = XtVaCreateManagedWidget("chpressure_lbl",labelWidgetClass,
++  XtVaCreateManagedWidget("chpressure_lbl",labelWidgetClass,
+                        chpressure_bb, XtNforeground,textcolor,
+                        XtNbackground,bgcolor, NULL);
+   overlapv_bb = XtVaCreateManagedWidget("overlapvoice_box",boxWidgetClass,
+@@ -3056,7 +3056,7 @@ createOptions(void) {
+                        toggleWidgetClass,overlapv_bb, XtNbitmap,off_mark, 
+                        XtNfromVert,chpressure_b, XtNforeground,togglecolor,
+                        XtNbackground,buttonbgcolor, NULL);
+-  overlapv_l = XtVaCreateManagedWidget("overlapv_lbl",labelWidgetClass,
++  XtVaCreateManagedWidget("overlapv_lbl",labelWidgetClass,
+                        overlapv_bb, XtNforeground,textcolor,
+                        XtNbackground,bgcolor, NULL);
+   txtmeta_bb = XtVaCreateManagedWidget("txtmeta_box",boxWidgetClass,
+@@ -3067,7 +3067,7 @@ createOptions(void) {
+                        txtmeta_bb, XtNbitmap,off_mark, XtNfromVert,overlapv_b,
+                        XtNforeground,togglecolor, XtNbackground,buttonbgcolor,
+                        NULL);
+-  txtmeta_l = XtVaCreateManagedWidget("txtmeta_lbl",labelWidgetClass,
++  XtVaCreateManagedWidget("txtmeta_lbl",labelWidgetClass,
+                        txtmeta_bb, XtNforeground,textcolor,
+                        XtNbackground,bgcolor, NULL);
+ 
+diff --git a/interface/xskin_c.c b/interface/xskin_c.c
+index b97cdf1..e3394e1 100644
+--- a/interface/xskin_c.c
++++ b/interface/xskin_c.c
+@@ -57,7 +57,6 @@ static int ctl_read(int32 *valp);
+ static int cmsg(int type, int verbosity_level, char *fmt, ...);
+ static int ctl_pass_playing_list(int number_of_files, char *list_of_files[]);
+ static void ctl_event(CtlEvent *e);
+-static void ctl_speana_data(double *val, int size);
+ static void initialize_exp_hz_table( void );
+ 
+ static void xskin_pipe_open(void);
+@@ -229,6 +228,7 @@ static void ctl_lyric(int lyricid)
+     }
+ }
+ 
++#if 0
+ static void ctl_speana_data(double *val, int size) {
+ 
+   /* 0 <= val[n] <= (AMP*NCOLOR) */
+@@ -280,6 +280,7 @@ static void ctl_speana_data(double *val, int size) {
+ 
+   return;
+ }
++#endif
+ 
+ /*ARGSUSED*/
+ static int ctl_open(int using_stdin, int using_stdout) {
+@@ -354,7 +355,8 @@ static int ctl_pass_playing_list(int number_of_files, char *list_of_files[]) {
+ 
+   /* Wait prepare 'interface' */
+   xskin_pipe_read(local_buf,sizeof(local_buf));
+-  if (strcmp("READY",local_buf)) return;
++  if (strcmp("READY",local_buf))
++    return 0;
+   xskin_ready = 1;
+ 
+   /* receive shared memory buffer */
+@@ -490,8 +492,8 @@ static void xskin_pipe_open(void) {
+ }
+ 
+ void xskin_pipe_write(char *buf) {
+-  write(pipe_out_fd,buf,strlen(buf));
+-  write(pipe_out_fd,"\n",1);
++  ssize_t dummy = write(pipe_out_fd,buf,strlen(buf));
++  dummy += write(pipe_out_fd,"\n",1);
+ }
+ 
+ static int xskin_pipe_ready(void) {
+@@ -515,7 +517,7 @@ int xskin_pipe_read(char *buf,int bufsize) {
+ 
+   bufsize--;
+   for (i=0;i<bufsize;i++) {
+-    read(pipe_in_fd,buf+i,1);
++    ssize_t dummy = read(pipe_in_fd,buf+i,1); ++dummy;
+     if (buf[i]=='\n') break;
+   }
+   buf[i]=0;
+@@ -524,7 +526,7 @@ int xskin_pipe_read(char *buf,int bufsize) {
+ 
+ int xskin_pipe_read_direct(int32 *buf, int bufsize) {
+ 
+-  read( pipe_in_fd, buf, bufsize );
++  ssize_t dummy = read( pipe_in_fd, buf, bufsize ); ++dummy;
+ 
+   return 0;
+ }
+diff --git a/libarc/unlzh.c b/libarc/unlzh.c
+index 152e886..1634271 100644
+--- a/libarc/unlzh.c
++++ b/libarc/unlzh.c
+@@ -68,6 +68,7 @@
+ #define MAGIC5 19
+ #define INBUFSIZ BUFSIZ
+ 
++#undef MIN
+ #define MIN(a,b)  ((a) < (b) ? (a) : (b))
+ 
+ struct _UNLZHHandler
+diff --git a/libunimod/load_far.c b/libunimod/load_far.c
+index 0503186..9026433 100644
+--- a/libunimod/load_far.c
++++ b/libunimod/load_far.c
+@@ -250,13 +250,13 @@ FAR_Load (BOOL curious)
+ 
+   for (t = 0; t < of.numpat; t++)
+     {
+-      UBYTE rows = 0, tempo;
++      UBYTE rows = 0;
+ 
+       memset (pat, 0, 256 * 16 * 4 * sizeof (FARNOTE));
+       if (mh2->patsiz[t])
+ 	{
+ 	  rows = _mm_read_UBYTE (modreader);
+-	  tempo = _mm_read_UBYTE (modreader);
++	  /* tempo = */ _mm_read_UBYTE (modreader);
+ 
+ 	  crow = pat;
+ 	  /* file often allocates 64 rows even if there are less in pattern */
+diff --git a/libunimod/load_it.c b/libunimod/load_it.c
+index 510e544..cb12b40 100644
+--- a/libunimod/load_it.c
++++ b/libunimod/load_it.c
+@@ -497,7 +497,6 @@ IT_Load (BOOL curious)
+   int t, u, lp;
+   INSTRUMENT *d;
+   SAMPLE *q;
+-  BOOL compressed = 0;
+ 
+   numtrk = 0;
+   filters = 0;
+@@ -741,7 +740,6 @@ IT_Load (BOOL curious)
+       if ((s.flag & 8) && (mh->cwt >= 0x214))
+ 	{
+ 	  q->flags |= SF_ITPACKED;
+-	  compressed = 1;
+ 	}
+       if (s.flag & 16)
+ 	q->flags |= SF_LOOP;
+@@ -1076,8 +1074,6 @@ IT_Load (BOOL curious)
+ 
+   for (t = 0; t < of.numpat; t++)
+     {
+-      UWORD packlen;
+-
+       /* seek to pattern position */
+       if (!paraptr[mh->insnum + mh->smpnum + t])
+ 	{			/* 0 -> empty 64 row pattern */
+@@ -1095,7 +1091,7 @@ IT_Load (BOOL curious)
+       else
+ 	{
+ 	  _mm_fseek (modreader, ((long) paraptr[mh->insnum + mh->smpnum + t]), SEEK_SET);
+-	  packlen = _mm_read_I_UWORD (modreader);
++	  /* packlen = */ _mm_read_I_UWORD (modreader);
+ 	  of.pattrows[t] = _mm_read_I_UWORD (modreader);
+ 	  _mm_read_I_ULONG (modreader);
+ 	  if (!IT_ReadPattern (of.pattrows[t]))
+diff --git a/libunimod/mloader.c b/libunimod/mloader.c
+index bea58df..7b2c873 100644
+--- a/libunimod/mloader.c
++++ b/libunimod/mloader.c
+@@ -309,8 +309,8 @@ SL_LoadInternal (void *buffer, UWORD infmt, UWORD outfmt, int scalefactor, ULONG
+   int stodo, t, u;
+ 
+   int result, c_block = 0;	/* compression bytes until next block */
+-  ITPACK status;
+-  UWORD incnt;
++  ITPACK status = { 0,0,0,0 };
++  UWORD incnt = 0;
+ 
+   while (length)
+     {
+diff --git a/libunimod/mlutil.c b/libunimod/mlutil.c
+index e147e8a..7a4dfe3 100644
+--- a/libunimod/mlutil.c
++++ b/libunimod/mlutil.c
+@@ -354,10 +354,10 @@ void S3MIT_CreateOrders(BOOL curious)
+ /* handles S3M and IT effects */
+ void S3MIT_ProcessCmd(UBYTE cmd,UBYTE inf,BOOL oldeffect)
+ {
+-	UBYTE hi,lo;
++	UBYTE lo;
+ 
+ 	lo=inf&0xf;
+-	hi=inf>>4;
++	/* hi=inf>>4; */
+ 
+ 	/* process S3M / IT specific command structure */
+ 
+diff --git a/timidity/ao_a.c b/timidity/ao_a.c
+index 9a012f3..ee62b39 100644
+--- a/timidity/ao_a.c
++++ b/timidity/ao_a.c
+@@ -90,12 +90,11 @@ static void show_ao_device_info(FILE *fp)
+ 
+ static int open_output(void)
+ {
+-  int driver_id, ret;
++  int driver_id, ret = 0;
+ 
+   int driver_count;
+   ao_info **devices;
+   int i;
+-  char buf[256];
+ 
+   ao_initialize();
+ 
+diff --git a/timidity/calcnewt.c b/timidity/calcnewt.c
+index 4e00223..fdf287d 100644
+--- a/timidity/calcnewt.c
++++ b/timidity/calcnewt.c
+@@ -53,9 +53,13 @@ int main(int argc, const char *argv[])
+ 	    fprintf(fp, "(float)%2.32g,\n", newt_coeffs[i][j]);
+ 	fclose(fp);
+ #else
+-    for (i = 0; i <= n; i++)
+-	for (j = 0; j <= n; j++)
+-	    printf("%2.32g,\n", newt_coeffs[i][j]);
++	for (i = 0; i <= n; i++) {
++		printf("{\n");
++		for (j = 0; j <= n; j++) {
++			printf("%2.32g,\n", newt_coeffs[i][j]);
++		}
++		printf("},\n");
++	}
+ #endif
+     return 0;
+ }
+diff --git a/timidity/common.c b/timidity/common.c
+index 76b13aa..f24dd9a 100644
+--- a/timidity/common.c
++++ b/timidity/common.c
+@@ -210,8 +210,9 @@ url_dumpfile(URL url, const char *ext)
+     return NULL;
+   }
+ 
+-  while((n = url_read(url, buff, sizeof(buff))) > 0)
+-    fwrite(buff, 1, n, fp);
++  while((n = url_read(url, buff, sizeof(buff))) > 0) {
++    size_t dummy = fwrite(buff, 1, n, fp); ++dummy;
++  }
+   fclose(fp);
+   return safe_strdup(filename);
+ }
+@@ -431,7 +432,7 @@ struct timidity_file *open_file(char *name, int decompress, int noise_mode)
+ 	if (!is_abs_path(name))
+ 		while (plp) {	/* Try along the path then */
+ 			*current_filename = 0;
+-			if(l = strlen(plp->path)) {
++			if((l = strlen(plp->path))) {
+ 				strncpy(current_filename, plp->path,
+ 						sizeof(current_filename));
+ 				if (!IS_PATH_SEP(current_filename[l - 1])
+@@ -509,7 +510,7 @@ struct timidity_file *open_file_r(char *name, int decompress, int noise_mode)
+ 	if (!is_abs_path(name))
+ 		while (plp) {	/* Try along the path then */
+ 			*current_filename = 0;
+-			if(l = strlen(plp->path)) {
++			if((l = strlen(plp->path))) {
+ 				strncpy(current_filename, plp->path,
+ 						sizeof(current_filename));
+ 				if (!IS_PATH_SEP(current_filename[l - 1])
+@@ -662,6 +663,7 @@ void *safe_malloc(size_t count)
+ #endif /* ABORT_AT_FATAL */
+     safe_exit(10);
+     /*NOTREACHED*/
++	return 0;
+ }
+ 
+ void *safe_large_malloc(size_t count)
+@@ -688,6 +690,7 @@ void *safe_large_malloc(size_t count)
+ #endif /* ABORT_AT_FATAL */
+     safe_exit(10);
+     /*NOTREACHED*/
++	return 0;
+ }
+ 
+ void *safe_realloc(void *ptr, size_t count)
+@@ -724,6 +727,7 @@ void *safe_realloc(void *ptr, size_t count)
+ #endif /* ABORT_AT_FATAL */
+     safe_exit(10);
+     /*NOTREACHED*/
++	return 0;
+ }
+ 
+ /* This'll allocate memory or die. */
+@@ -748,6 +752,7 @@ char *safe_strdup(const char *s)
+ #endif /* ABORT_AT_FATAL */
+     safe_exit(10);
+     /*NOTREACHED*/
++	return 0;
+ }
+ 
+ /* free ((void **)ptr_list)[0..count-1] and ptr_list itself */
+diff --git a/timidity/effect.c b/timidity/effect.c
+index ca32cb9..2e566c6 100644
+--- a/timidity/effect.c
++++ b/timidity/effect.c
+@@ -38,7 +38,6 @@
+ #include <stdlib.h>
+ 
+ #include "mt19937ar.h"
+-#define RAND_MAX 0xffffffff
+ 
+ #include "timidity.h"
+ #include "instrum.h"
+diff --git a/timidity/esd_a.c b/timidity/esd_a.c
+index 6338609..24d97f4 100644
+--- a/timidity/esd_a.c
++++ b/timidity/esd_a.c
+@@ -27,6 +27,7 @@
+ #include "config.h"
+ #endif /* HAVE_CONFIG_H */
+ #define _GNU_SOURCE
++#include <stdlib.h>
+ #include <stdio.h>
+ #include <unistd.h>
+ #include <fcntl.h>
+@@ -78,7 +79,6 @@ PlayMode dpm = {
+ 
+ static int try_open(void)
+ {
+-    int fd, tmp, i;
+     int include_enc, exclude_enc;
+     esd_format_t esdformat;
+ 
+diff --git a/timidity/freq.c b/timidity/freq.c
+index 3f54dda..140db3e 100644
+--- a/timidity/freq.c
++++ b/timidity/freq.c
+@@ -144,10 +144,10 @@ float pitch_freq_lb_table[129] = {
+    (f)ifth,		rotate back 1,	rotate back 2
+ */
+ int chord_table[4][3][3] = {
+-    0, 4, 7,     -5, 0, 4,     -8, -5, 0,
+-    0, 3, 7,     -5, 0, 3,     -9, -5, 0,
+-    0, 3, 6,     -6, 0, 3,     -9, -6, 0,
+-    0, 5, 7,     -5, 0, 5,     -7, -5, 0
++ { { 0, 4, 7, }, { -5, 0, 4, }, { -8, -5, 0, }, },
++ { { 0, 3, 7, }, { -5, 0, 3, }, { -9, -5, 0, }, },
++ { { 0, 3, 6, }, { -6, 0, 3, }, { -9, -6, 0, }, },
++ { { 0, 5, 7, }, { -5, 0, 5, }, { -7, -5, 0, }, },
+ };
+ 
+ /* write the chord type to *chord, returns the root note of the chord */
+@@ -160,7 +160,6 @@ int assign_chord(double *pitchbins, int *chord,
+     int prune_pitches[10] = {0};
+     int i, j, k, n, n2;
+     double val, cutoff, max;
+-    int start = 0;
+     int root_flag;
+ 
+     *chord = -1;
+@@ -330,14 +329,14 @@ float freq_fourier(Sample *sp, int *chord)
+     uint32 length, length0;
+     int32 maxoffset, minoffset, minoffset1, minoffset2;
+     int32 minbin, maxbin;
+-    int32 bin, largest_peak;
++    int32 bin;
+     int32 i, j, n, total;
+     unsigned int rate;
+     int pitch, bestpitch, minpitch, maxpitch, maxpitch2;
+     sample_t *origdata;
+     float f0, mag, maxmag;
+     int16 amp, oldamp, maxamp;
+-    int32 maxpos;
++    int32 maxpos = 0;
+     double sum, weightsum, maxsum;
+     double f0_inv;
+     float freq, newfreq, bestfreq, freq_inc;
+@@ -494,7 +493,6 @@ float freq_fourier(Sample *sp, int *chord)
+ 	if (sum > maxsum)
+ 	{
+ 	    maxsum = sum;
+-	    largest_peak = i;
+ 	}
+     }
+ 
+diff --git a/timidity/instrum.c b/timidity/instrum.c
+index 91f4a78..c250190 100644
+--- a/timidity/instrum.c
++++ b/timidity/instrum.c
+@@ -1043,7 +1043,7 @@ Instrument *load_instrument(int dr, int b, int prog)
+ 	char infomsg[256];
+ 	
+ #ifndef CFG_FOR_SF
+-	if (play_system_mode == GS_SYSTEM_MODE && (b == 64 || b == 65))
++	if (play_system_mode == GS_SYSTEM_MODE && (b == 64 || b == 65)) {
+ 		if (! dr)	/* User Instrument */
+ 			recompute_userinst(b, prog);
+ 		else {		/* User Drumset */
+@@ -1052,6 +1052,7 @@ Instrument *load_instrument(int dr, int b, int prog)
+ 				return ip;
+ 			}
+ 		}
++        }
+ #endif
+ 	if (bank->tone[prog].instype == 1 || bank->tone[prog].instype == 2) {
+ 		if (bank->tone[prog].instype == 1) {	/* Font extention */
+diff --git a/timidity/loadtab.c b/timidity/loadtab.c
+index 36a48e7..409fe6c 100644
+--- a/timidity/loadtab.c
++++ b/timidity/loadtab.c
+@@ -60,7 +60,7 @@ int load_table(char *file)
+ 				fclose(fp);
+ 				return 0;
+ 			}
+-		} while (value = strtok(NULL, ", \n"));
++		} while ((value = strtok(NULL, ", \n")));
+ 	}
+ 	fclose(fp);
+ 	return 0;
+diff --git a/timidity/m2m.c b/timidity/m2m.c
+index c763de4..8417bf6 100644
+--- a/timidity/m2m.c
++++ b/timidity/m2m.c
+@@ -169,25 +169,25 @@ static char chord_letters[4] = { 'M', 'm', 'd', 'f' };
+  * lookup_table[mod_vol][expression, volume]
+  */
+ static char vol_nonlin_to_lin[128][2] = {
+-      0, 127,   7, 125,  11, 120,  14, 121,  16, 126,  19, 121,  21, 122,
+-     23, 122,  25, 122,  26, 126,  28, 125,  30, 123,  31, 126,  33, 124,
+-     34, 126,  36, 124,  37, 125,  38, 126,  40, 124,  41, 125,  42, 126,
+-     43, 127,  45, 125,  46, 125,  47, 126,  48, 126,  49, 127,  50, 127,
+-     52, 125,  53, 125,  54, 125,  55, 125,  56, 126,  57, 126,  58, 126,
+-     59, 126,  60, 126,  61, 126,  62, 126,  63, 126,  64, 126,  65, 126,
+-     66, 126,  67, 125,  68, 125,  69, 125,  69, 127,  70, 127,  71, 126,
+-     72, 126,  73, 126,  74, 126,  75, 126,  76, 125,  76, 127,  77, 127,
+-     78, 126,  79, 126,  80, 126,  81, 126,  81, 127,  82, 126,  83, 126,
+-     84, 126,  85, 126,  85, 127,  86, 126,  87, 126,  88, 126,  88, 127,
+-     89, 127,  90, 126,  91, 126,  91, 127,  92, 127,  93, 126,  94, 126,
+-     94, 127,  95, 127,  96, 126,  97, 126,  97, 127,  98, 126,  99, 126,
+-    100, 126, 100, 127, 101, 126, 102, 126, 102, 127, 103, 126, 104, 126,
+-    104, 127, 105, 127, 106, 126, 106, 127, 107, 127, 108, 126, 108, 127,
+-    109, 127, 110, 126, 110, 127, 111, 127, 112, 126, 112, 127, 113, 127,
+-    114, 126, 114, 127, 115, 127, 116, 126, 116, 127, 117, 126, 118, 126,
+-    118, 127, 119, 126, 120, 126, 120, 127, 121, 126, 121, 127, 122, 126,
+-    123, 126, 123, 127, 124, 126, 124, 127, 125, 127, 126, 126, 126, 127,
+-    127, 126, 127, 127 };
++     { 0, 127, },{  7, 125,  },{11, 120, },{ 14, 121, },{ 16, 126, },{ 19, 121, },{ 21, 122,},
++     { 23, 122, },{ 25, 122, },{ 26, 126,  },{28, 125, },{ 30, 123, },{ 31, 126, },{ 33, 124,},
++     { 34, 126, },{ 36, 124, },{ 37, 125, },{ 38, 126, },{ 40, 124, },{ 41, 125, },{ 42, 126, },
++     { 43, 127, },{ 45, 125, },{ 46, 125, },{ 47, 126, },{ 48, 126, },{ 49, 127, },{ 50, 127, },
++     { 52, 125, },{ 53, 125, },{ 54, 125, },{ 55, 125, },{ 56, 126, },{ 57, 126, },{ 58, 126, },
++     { 59, 126, },{ 60, 126, },{ 61, 126, },{ 62, 126, },{ 63, 126,  },{64, 126, },{ 65, 126, },
++     { 66, 126, },{ 67, 125, },{ 68, 125, },{ 69, 125, },{ 69, 127, },{ 70, 127, },{ 71, 126, },
++     { 72, 126, },{ 73, 126, },{ 74, 126, },{ 75, 126, },{ 76, 125, },{ 76, 127, },{ 77, 127, },
++     { 78, 126, },{ 79, 126, },{ 80, 126, },{ 81, 126, },{ 81, 127, },{ 82, 126, },{ 83, 126, },
++     { 84, 126, },{ 85, 126, },{ 85, 127, },{ 86, 126, },{ 87, 126, },{ 88, 126, },{ 88, 127, },
++     { 89, 127, },{ 90, 126, },{ 91, 126, },{ 91, 127, },{ 92, 127, },{ 93, 126, },{ 94, 126, },
++     { 94, 127, },{ 95, 127, },{ 96, 126, },{ 97, 126, },{ 97, 127, },{ 98, 126, },{ 99, 126, },
++    { 100, 126, },{100, 127, },{101, 126, },{102, 126, },{102, 127, },{103, 126, },{104, 126, },
++    { 104, 127, },{105, 127, },{106, 126, },{106, 127, },{107, 127, },{108, 126, },{108, 127, },
++    { 109, 127, },{110, 126, },{110, 127, },{111, 127, },{112, 126, },{112, 127, },{113, 127, },
++    { 114, 126, },{114, 127, },{115, 127, },{116, 126, },{116, 127, },{117, 126, },{118, 126, },
++    { 118, 127, },{119, 126, },{120, 126, },{120, 127, },{121, 126, },{121, 127, },{122, 126, },
++    { 123, 126, },{123, 127, },{124, 126, },{124, 127, },{125, 127, },{126, 126, },{126, 127, },
++    { 127, 126, }, { 127, 127 }, };
+ 
+ /*
+  * Uses the volume curve specified by the -V or --volume-curve option.
+@@ -587,13 +587,13 @@ void scan_ahead_for_m2m_tweaks(MidiEvent * ev, int midi_ch, int midi_note,
+     int32 bend = 0, lowbend = 0, highbend = 0;
+     int32 pb_offset1 = 0, pb_offset2 = 0;
+     int note_offset1 = 0, note_offset2 = 0;
+-    uint32 init_time, cur_time, old_time, cut_time = 0;
++    uint32 cur_time, old_time, cut_time = 0;
+     Sample *sp;
+     double a, bent_length = 0, delta_length;
+     uint32 length;
+     float root_freq, pitch, freq;
+ 
+-    init_time = cur_time = old_time = ev->time;
++    cur_time = old_time = ev->time;
+     init_ch = ev->channel;
+     init_note = ev->a;
+     init_velocity = ev->b;
+@@ -964,7 +964,7 @@ void m2m_process_events(MidiEvent * ev)
+     uint32 oldtime = 0, deltatime;
+     double time = 0;
+     int chord, chord_type, chord_subtype;
+-    int ch, n, old_ch, newnote, mod_sample, expression;
++    int ch, n, old_ch, newnote, mod_sample=0, expression=0;
+     int extra;
+ 
+     /* go through the list for real this time */
+diff --git a/timidity/miditrace.c b/timidity/miditrace.c
+index 982edbb..4f6e852 100644
+--- a/timidity/miditrace.c
++++ b/timidity/miditrace.c
+@@ -236,7 +236,7 @@ void push_midi_time_vp(int32 start, void (*f)(void *), void *vp)
+ 
+ int32 trace_loop(void)
+ {
+-    int32 cur, start;
++    int32 cur;
+     int ctl_update;
+     static int lasttime = -1;
+ 
+@@ -250,7 +250,6 @@ int32 trace_loop(void)
+ 	cur = 0x7fffffff; /* apply all trace event */
+ 
+     ctl_update = 0;
+-    start = midi_trace.head->start;
+     while(midi_trace.head && cur >= midi_trace.head->start
+ 	  && cur > 0) /* privent flying start */
+     {
+diff --git a/timidity/output.c b/timidity/output.c
+index 2b97bd9..2fec198 100644
+--- a/timidity/output.c
++++ b/timidity/output.c
+@@ -452,9 +452,7 @@ int32 general_output_convert(int32 *buf, int32 count)
+ int validate_encoding(int enc, int include_enc, int exclude_enc)
+ {
+     const char *orig_enc_name, *enc_name;
+-    int orig_enc;
+ 
+-    orig_enc = enc;
+     orig_enc_name = output_encoding_string(enc);
+     enc |= include_enc;
+     enc &= ~exclude_enc;
+@@ -643,7 +641,7 @@ char *create_auto_output_name(const char *input_filename, char *ext_str, char *o
+ 	  *p = '_';
+ 
+     if(mode==2){
+-      char *p1,*p2,*p3;
++      char *p1,*p2;
+ #ifndef __W32__
+       p = strrchr(output_filename+dir_len,PATH_SEP);
+ #else
+@@ -654,6 +652,7 @@ char *create_auto_output_name(const char *input_filename, char *ext_str, char *o
+ #endif
+       p1 = STRRCHR(output_filename+dir_len,'/');
+       p2 = STRRCHR(output_filename+dir_len,'\\');
++      char *p3;
+       p3 = STRRCHR(output_filename+dir_len,':');
+ #undef STRRCHR
+       p1>p2 ? (p1>p3 ? (p = p1) : (p = p3)) : (p2>p3 ? (p = p2) : (p = p3));
+diff --git a/timidity/playmidi.c b/timidity/playmidi.c
+index 727f1ad..6a1e147 100644
+--- a/timidity/playmidi.c
++++ b/timidity/playmidi.c
+@@ -302,7 +302,6 @@ static int16 get_midi_controller_amp_depth(midi_controller *);
+ /* Rx. ~ (Rcv ~) */
+ static void init_rx(int);
+ static void set_rx(int, int32, int);
+-static int32 get_rx(int, int32);
+ static void init_rx_drum(struct DrumParts *);
+ static void set_rx_drum(struct DrumParts *, int32, int);
+ static int32 get_rx_drum(struct DrumParts *, int32);
+@@ -2157,8 +2156,8 @@ static int find_voice(MidiEvent *e)
+ 			else if (altassign && find_altassign(altassign, voice[i].note))
+ 				kill_note(i);
+ 			else if (voice[i].note == note && (channel[ch].assign_mode == 0
+-					|| channel[ch].assign_mode == 1
+-					&& voice[i].proximate_flag == 0))
++					|| (channel[ch].assign_mode == 1 &&
++					    voice[i].proximate_flag == 0)))
+ 				kill_note(i);
+ 		}
+ 	for (i = 0; i < upper_voices; i++)
+@@ -6727,7 +6726,7 @@ static void do_compute_data_midi(int32 count)
+ 
+ 	for (i = 0; i < uv; i++) {
+ 		if (voice[i].status != VOICE_FREE) {
+-			int32 *vpb;
++			int32 *vpb = NULL;
+ 			int8 flag;
+ 			
+ 			if (channel_effect) {
+@@ -7304,7 +7303,7 @@ static int compute_data(int32 count)
+ 	  {
+ 	      if(filled <= last_filled)
+ 	      {
+-	          int v, kill_nv, temp_nv;
++	          int kill_nv, temp_nv;
+ 
+ 		  /* set bounds on "good" and "bad" nv */
+ 		  if (! opt_realtime_playing && rate > 20 &&
+@@ -7355,7 +7354,7 @@ static int compute_data(int32 count)
+ 		  }
+ 
+ 		  for(i = 0; i < kill_nv; i++)
+-		      v = reduce_voice();
++		      reduce_voice();
+ 
+ 		  /* lower max # of allowed voices to let the buffer recover */
+ 		  if (auto_reduce_polyphony) {
+@@ -8023,8 +8022,8 @@ int play_event(MidiEvent *ev)
+ 		channel[ch].temper_type = current_event->a;
+ 		ctl_mode_event(CTLE_TEMPER_TYPE, 1, ch, channel[ch].temper_type);
+ 		if (temper_type_mute) {
+-			if (temper_type_mute & 1 << current_event->a
+-					- ((current_event->a >= 0x40) ? 0x3c : 0)) {
++			if (temper_type_mute & (1 << (current_event->a
++					- ((current_event->a >= 0x40) ? 0x3c : 0)))) {
+ 				SET_CHANNELMASK(channel_mute, ch);
+ 				ctl_mode_event(CTLE_MUTE, 1, ch, 1);
+ 			} else {
+@@ -8046,8 +8045,8 @@ int play_event(MidiEvent *ev)
+ 			ctl_mode_event(CTLE_TEMPER_TYPE, 1, i, channel[i].temper_type);
+ 		}
+ 		if (temper_type_mute) {
+-			if (temper_type_mute & 1 << current_event->a
+-					- ((current_event->a >= 0x40) ? 0x3c : 0)) {
++			if (temper_type_mute & (1 << (current_event->a
++					- ((current_event->a >= 0x40) ? 0x3c : 0)))) {
+ 				FILL_CHANNELMASK(channel_mute);
+ 				for (i = 0; i < MAX_CHANNELS; i++)
+ 					ctl_mode_event(CTLE_MUTE, 1, i, 1);
+diff --git a/timidity/readmidi.c b/timidity/readmidi.c
+index aba7f2e..158388a 100644
+--- a/timidity/readmidi.c
++++ b/timidity/readmidi.c
+@@ -5460,8 +5460,9 @@ int midi_file_save_as(char *in_name, char *out_name)
+ 	return -1;
+     }
+ 
+-    while((n = tf_read(buff, 1, sizeof(buff), tf)) > 0)
+-	fwrite(buff, 1, n, ofp);
++    while((n = tf_read(buff, 1, sizeof(buff), tf)) > 0) {
++	size_t dummy = fwrite(buff, 1, n, ofp); ++dummy;
++	}
+     ctl->cmsg(CMSG_INFO, VERB_NORMAL, "Save as %s...Done", out_name);
+ 
+     fclose(ofp);
+diff --git a/timidity/recache.c b/timidity/recache.c
+index 4f4030c..2efb448 100644
+--- a/timidity/recache.c
++++ b/timidity/recache.c
+@@ -59,7 +59,7 @@
+ #define MAX_EXPANDLEN (1024 * 32)
+ #define CACHE_DATA_LEN (allocate_cache_size / sizeof(sample_t))
+ 
+-#define sp_hash(sp, note) ((unsigned int) (sp) + (unsigned int) (note))
++#define sp_hash(sp, note) ((unsigned long) (sp) + (unsigned int) (note))
+ #define CACHE_RESAMPLING_OK 0
+ #define CACHE_RESAMPLING_NOTOK 1
+ #define SORT_THRESHOLD 20
+diff --git a/timidity/resample.c b/timidity/resample.c
+index b84469e..cd6b8e6 100644
+--- a/timidity/resample.c
++++ b/timidity/resample.c
+@@ -255,7 +255,7 @@ static sample_t *newt_old_src = NULL;
+ static resample_t resample_newton(sample_t *src, splen_t ofs, resample_rec_t *rec)
+ {
+     int n_new, n_old;
+-    int32 v1, v2, diff;
++    int32 v1, v2, diff = 0;
+     sample_t *sptr;
+     double y, xd;
+     int32 left, right, temp_n;
+diff --git a/timidity/reverb.c b/timidity/reverb.c
+index 5393855..2d3ac4d 100644
+--- a/timidity/reverb.c
++++ b/timidity/reverb.c
+@@ -274,6 +274,7 @@ static inline int32 do_lfo(lfo *lfo)
+ 	return val;
+ }
+ 
++#if 0
+ /*! modulated delay with allpass interpolation (for Chorus Effect,...) */
+ static void free_mod_delay(mod_delay *delay)
+ {
+@@ -282,7 +283,9 @@ static void free_mod_delay(mod_delay *delay)
+ 		delay->buf = NULL;
+ 	}
+ }
++#endif
+ 
++#if 0
+ static void set_mod_delay(mod_delay *delay, int32 ndelay, int32 depth)
+ {
+ 	int32 size = ndelay + depth + 1;
+@@ -297,6 +300,7 @@ static void set_mod_delay(mod_delay *delay, int32 ndelay, int32 depth)
+ 	delay->size = size;
+ 	memset(delay->buf, 0, sizeof(int32) * delay->size);
+ }
++#endif
+ 
+ static inline void do_mod_delay(int32 *stream, int32 *buf, int32 size, int32 *rindex, int32 *windex,
+ 								int32 ndelay, int32 depth, int32 lfoval, int32 *hist)
+@@ -679,6 +683,7 @@ static inline void do_filter_biquad(int32 *stream, int32 a1, int32 a2, int32 b1,
+ 	*stream = t1;
+ }
+ 
++#if 0
+ static void do_biquad_filter_stereo(int32* buf, int32 count, filter_biquad *p)
+ {
+ 	int32 i;
+@@ -694,6 +699,7 @@ static void do_biquad_filter_stereo(int32* buf, int32 count, filter_biquad *p)
+ 	p->x1l = x1l, p->x2l = x2l, p->y1l = y1l, p->y2l = y2l,
+ 		p->x1r = x1r, p->x2r = x2r, p->y1r = y1r, p->y2r = y2r;
+ }
++#endif
+ 
+ void init_filter_shelving(filter_shelving *p)
+ {
+@@ -2751,7 +2757,6 @@ void do_dual_od(int32 *buf, int32 count, EffectList *ef)
+ 	filter_moog *svfl = &(info->svfl), *svfr = &(info->svfr);
+ 	filter_biquad *lpf1 = &(info->lpf1);
+ 	void (*do_amp_siml)(int32 *, int32) = info->amp_siml,
+-		(*do_amp_simr)(int32 *, int32) = info->amp_simr,
+ 		(*do_odl)(int32 *, int32) = info->odl,
+ 		(*do_odr)(int32 *, int32) = info->odr;
+ 	int32 i, inputl, inputr, high, levelli = info->levelli, levelri = info->levelri,
+@@ -4074,6 +4079,7 @@ enum {	/* width * length * height */
+ 	ER_EOF,
+ };
+ 
++#if 0
+ struct early_reflection_param_t {
+ 	int8 character;
+ 	int16 time_left[20];	/* in ms */
+@@ -4083,154 +4089,200 @@ struct early_reflection_param_t {
+ };
+ 
+ static struct early_reflection_param_t early_reflection_param[] = {
+-	ER_SMALL_ROOM, 461, 487, 505, 530, 802, 818, 927, 941, 1047, 1058, 1068, 1070, 1076, 1096, 1192, 1203, 1236, 1261, 1321, 1344,
+-	0.1594, 0.1328, 0.1197, 0.1025, 0.0285, 0.0267, 0.0182, 0.0173, 0.0098, 0.0121, 0.0092, 0.0116, 0.0090, 0.0085, 0.0084, 0.0081, 0.0059, 0.0055, 0.0048, 0.0045,
+-	381, 524, 621, 636, 718, 803, 890, 906, 975, 1016, 1026, 1040, 1137, 1166, 1212, 1220, 1272, 1304, 1315, 1320,
+-	0.1896, 0.0706, 0.0467, 0.0388, 0.0298, 0.0211, 0.0137, 0.0181, 0.0144, 0.0101, 0.0088, 0.0118, 0.0072, 0.0081, 0.0073, 0.0071, 0.0062, 0.0042, 0.0057, 0.0024,
+-	ER_MEDIUM_ROOM, 461, 802, 927, 1047, 1236, 1321, 1345, 1468, 1497, 1568, 1609, 1642, 1713, 1744, 1768, 1828, 1835, 1864, 1893, 1923,
+-	0.3273, 0.0586, 0.0374, 0.0201, 0.0120, 0.0098, 0.0152, 0.0090, 0.0109, 0.0095, 0.0068, 0.0034, 0.0073, 0.0041, 0.0027, 0.0024, 0.0059, 0.0034, 0.0054, 0.0035,
+-	381, 636, 906, 1026, 1040, 1315, 1320, 1415, 1445, 1556, 1588, 1628, 1637, 1663, 1693, 1768, 1788, 1824, 1882, 1920,
+-	0.1896, 0.0706, 0.0467, 0.0388, 0.0298, 0.0211, 0.0137, 0.0181, 0.0144, 0.0101, 0.0088, 0.0118, 0.0072, 0.0081, 0.0073, 0.0071, 0.0062, 0.0042, 0.0057, 0.0024,
+-	ER_LARGE_ROOM, 577, 875, 1665, 1713, 1784, 1790, 1835, 1913, 1954, 2023, 2062, 2318, 2349, 2371, 2405, 2409, 2469, 2492, 2534, 2552,
+-	0.2727, 0.0752, 0.0070, 0.0110, 0.0083, 0.0056, 0.0089, 0.0079, 0.0051, 0.0066, 0.0043, 0.0019, 0.0035, 0.0023, 0.0038, 0.0017, 0.0015, 0.0029, 0.0027, 0.0032,
+-	381, 636, 1485, 1570, 1693, 1768, 1875, 1895, 1963, 2066, 2128, 2220, 2277, 2309, 2361, 2378, 2432, 2454, 2497, 2639,
+-	0.5843, 0.1197, 0.0117, 0.0098, 0.0032, 0.0028, 0.0042, 0.0022, 0.0020, 0.0038, 0.0035, 0.0043, 0.0040, 0.0022, 0.0028, 0.0035, 0.0033, 0.0018, 0.0010, 0.0008,
+-	ER_MEDIUM_HALL, 1713, 1835, 2534, 2618, 2780, 2849, 2857, 3000, 3071, 3159, 3226, 3338, 3349, 3407, 3413, 3465, 3594, 3669, 3714, 3728,
+-	0.0146, 0.0118, 0.0036, 0.0033, 0.0033, 0.0030, 0.0031, 0.0013, 0.0012, 0.0023, 0.0021, 0.0018, 0.0016, 0.0015, 0.0016, 0.0016, 0.0015, 0.0013, 0.0006, 0.0012,
+-	381, 636, 1693, 1768, 2066, 2128, 2362, 2416, 2454, 2644, 2693, 2881, 2890, 2926, 2957, 3036, 3185, 3328, 3385, 3456,
+-	0.7744, 0.1586, 0.0042, 0.0037, 0.0051, 0.0046, 0.0036, 0.0034, 0.0024, 0.0018, 0.0017, 0.0024, 0.0015, 0.0023, 0.0008, 0.0012, 0.0013, 0.0005, 0.0012, 0.0005,
+-	ER_LARGE_HALL, 1713, 1835, 2534, 2618, 3159, 3226, 3669, 3728, 4301, 4351, 4936, 5054, 5097, 5278, 5492, 5604, 5631, 5714, 5751, 5800,
+-	0.0150, 0.0121, 0.0037, 0.0034, 0.0023, 0.0022, 0.0013, 0.0012, 0.0005, 0.0005, 0.0006, 0.0002, 0.0002, 0.0004, 0.0004, 0.0004, 0.0004, 0.0002, 0.0002, 0.0003,
+-	381, 636, 1693, 1768, 2066, 2128, 2644, 2693, 3828, 3862, 4169, 4200, 4792, 5068, 5204, 5231, 5378, 5460, 5485, 5561,
+-	0.7936, 0.1625, 0.0043, 0.0038, 0.0052, 0.0047, 0.0018, 0.0017, 0.0008, 0.0008, 0.0007, 0.0007, 0.0003, 0.0001, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0003,
+-	ER_EOF, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
+-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
++	{ ER_SMALL_ROOM,
++		{ 461, 487, 505, 530, 802, 818, 927, 941, 1047, 1058, 1068, 1070, 1076, 1096, 1192, 1203, 1236, 1261, 1321, 1344, },
++		{ 0.1594, 0.1328, 0.1197, 0.1025, 0.0285, 0.0267, 0.0182, 0.0173, 0.0098, 0.0121, 0.0092, 0.0116, 0.0090, 0.0085, 0.0084, 0.0081, 0.0059, 0.0055, 0.0048, 0.0045, },
++		{ 381, 524, 621, 636, 718, 803, 890, 906, 975, 1016, 1026, 1040, 1137, 1166, 1212, 1220, 1272, 1304, 1315, 1320,},
++		{ 0.1896, 0.0706, 0.0467, 0.0388, 0.0298, 0.0211, 0.0137, 0.0181, 0.0144, 0.0101, 0.0088, 0.0118, 0.0072, 0.0081, 0.0073, 0.0071, 0.0062, 0.0042, 0.0057, 0.0024, },
++	},
++	{ ER_MEDIUM_ROOM,
++		{ 461, 802, 927, 1047, 1236, 1321, 1345, 1468, 1497, 1568, 1609, 1642, 1713, 1744, 1768, 1828, 1835, 1864, 1893, 1923,},
++		{ 0.3273, 0.0586, 0.0374, 0.0201, 0.0120, 0.0098, 0.0152, 0.0090, 0.0109, 0.0095, 0.0068, 0.0034, 0.0073, 0.0041, 0.0027, 0.0024, 0.0059, 0.0034, 0.0054, 0.0035,},
++		{ 381, 636, 906, 1026, 1040, 1315, 1320, 1415, 1445, 1556, 1588, 1628, 1637, 1663, 1693, 1768, 1788, 1824, 1882, 1920,},
++		{ 0.1896, 0.0706, 0.0467, 0.0388, 0.0298, 0.0211, 0.0137, 0.0181, 0.0144, 0.0101, 0.0088, 0.0118, 0.0072, 0.0081, 0.0073, 0.0071, 0.0062, 0.0042, 0.0057, 0.0024, },
++	},
++	{ ER_LARGE_ROOM, 
++		{ 577, 875, 1665, 1713, 1784, 1790, 1835, 1913, 1954, 2023, 2062, 2318, 2349, 2371, 2405, 2409, 2469, 2492, 2534, 2552, },
++		{ 0.2727, 0.0752, 0.0070, 0.0110, 0.0083, 0.0056, 0.0089, 0.0079, 0.0051, 0.0066, 0.0043, 0.0019, 0.0035, 0.0023, 0.0038, 0.0017, 0.0015, 0.0029, 0.0027, 0.0032,},
++		{ 381, 636, 1485, 1570, 1693, 1768, 1875, 1895, 1963, 2066, 2128, 2220, 2277, 2309, 2361, 2378, 2432, 2454, 2497, 2639,},
++		{ 0.5843, 0.1197, 0.0117, 0.0098, 0.0032, 0.0028, 0.0042, 0.0022, 0.0020, 0.0038, 0.0035, 0.0043, 0.0040, 0.0022, 0.0028, 0.0035, 0.0033, 0.0018, 0.0010, 0.0008, },
++	},
++	{ ER_MEDIUM_HALL, 
++		{ 1713, 1835, 2534, 2618, 2780, 2849, 2857, 3000, 3071, 3159, 3226, 3338, 3349, 3407, 3413, 3465, 3594, 3669, 3714, 3728,},
++		{ 0.0146, 0.0118, 0.0036, 0.0033, 0.0033, 0.0030, 0.0031, 0.0013, 0.0012, 0.0023, 0.0021, 0.0018, 0.0016, 0.0015, 0.0016, 0.0016, 0.0015, 0.0013, 0.0006, 0.0012,},
++		{ 381, 636, 1693, 1768, 2066, 2128, 2362, 2416, 2454, 2644, 2693, 2881, 2890, 2926, 2957, 3036, 3185, 3328, 3385, 3456,},
++		{ 0.7744, 0.1586, 0.0042, 0.0037, 0.0051, 0.0046, 0.0036, 0.0034, 0.0024, 0.0018, 0.0017, 0.0024, 0.0015, 0.0023, 0.0008, 0.0012, 0.0013, 0.0005, 0.0012, 0.0005, },
++	},
++	{ ER_LARGE_HALL, 
++		{ 1713, 1835, 2534, 2618, 3159, 3226, 3669, 3728, 4301, 4351, 4936, 5054, 5097, 5278, 5492, 5604, 5631, 5714, 5751, 5800,},
++		{ 0.0150, 0.0121, 0.0037, 0.0034, 0.0023, 0.0022, 0.0013, 0.0012, 0.0005, 0.0005, 0.0006, 0.0002, 0.0002, 0.0004, 0.0004, 0.0004, 0.0004, 0.0002, 0.0002, 0.0003,},
++		{ 381, 636, 1693, 1768, 2066, 2128, 2644, 2693, 3828, 3862, 4169, 4200, 4792, 5068, 5204, 5231, 5378, 5460, 5485, 5561,},
++		{ 0.7936, 0.1625, 0.0043, 0.0038, 0.0052, 0.0047, 0.0018, 0.0017, 0.0008, 0.0008, 0.0007, 0.0007, 0.0003, 0.0001, 0.0003, 0.0002, 0.0002, 0.0002, 0.0001, 0.0003, },
++	},
++	{ ER_EOF, { 0, }, { 0, }, { 0, }, { 0, }, },
+ };
++#endif
+ 
+ struct _EffectEngine effect_engine[] = {
+-	EFFECT_NONE, "None", NULL, NULL, NULL, 0,
+-	EFFECT_STEREO_EQ, "Stereo-EQ", do_stereo_eq, conv_gs_stereo_eq, NULL, sizeof(InfoStereoEQ),
+-	EFFECT_EQ2, "2-Band EQ", do_eq2, conv_gs_eq2, conv_xg_eq2, sizeof(InfoEQ2),
+-	EFFECT_EQ3, "3-Band EQ", do_eq3, NULL, conv_xg_eq3, sizeof(InfoEQ3),
+-	EFFECT_OVERDRIVE1, "Overdrive", do_overdrive1, conv_gs_overdrive1, NULL, sizeof(InfoOverdrive1),
+-	EFFECT_DISTORTION1, "Distortion", do_distortion1, conv_gs_overdrive1, NULL, sizeof(InfoOverdrive1),
+-	EFFECT_OD1OD2, "OD1/OD2", do_dual_od, conv_gs_dual_od, NULL, sizeof(InfoOD1OD2),
+-	EFFECT_HEXA_CHORUS, "Hexa-Chorus", do_hexa_chorus, conv_gs_hexa_chorus, NULL, sizeof(InfoHexaChorus),
+-	EFFECT_CHORUS, "Chorus", do_chorus, NULL, conv_xg_chorus, sizeof(InfoChorus),
+-	EFFECT_FLANGER, "Flanger", do_chorus, NULL, conv_xg_flanger, sizeof(InfoChorus),
+-	EFFECT_SYMPHONIC, "Symphonic", do_chorus, NULL, conv_xg_symphonic, sizeof(InfoChorus),
+-	EFFECT_CHORUS_EQ3, "3-Band EQ (XG Chorus built-in)", do_eq3, NULL, conv_xg_chorus_eq3, sizeof(InfoEQ3),
+-	EFFECT_STEREO_OVERDRIVE, "Stereo Overdrive", do_stereo_od, NULL, conv_xg_overdrive, sizeof(InfoStereoOD),
+-	EFFECT_STEREO_DISTORTION, "Stereo Distortion", do_stereo_od, NULL, conv_xg_distortion, sizeof(InfoStereoOD),
+-	EFFECT_STEREO_AMP_SIMULATOR, "Amp Simulator", do_stereo_od, NULL, conv_xg_amp_simulator, sizeof(InfoStereoOD),
+-	EFFECT_OD_EQ3, "2-Band EQ (XG OD built-in)", do_eq3, NULL, conv_xg_od_eq3, sizeof(InfoEQ3),
+-	EFFECT_DELAY_LCR, "Delay L,C,R", do_delay_lcr, NULL, conv_xg_delay_lcr, sizeof(InfoDelayLCR),
+-	EFFECT_DELAY_LR, "Delay L,R", do_delay_lr, NULL, conv_xg_delay_lr, sizeof(InfoDelayLR),
+-	EFFECT_ECHO, "Echo", do_echo, NULL, conv_xg_echo, sizeof(InfoEcho),
+-	EFFECT_CROSS_DELAY, "Cross Delay", do_cross_delay, NULL, conv_xg_cross_delay, sizeof(InfoCrossDelay),
+-	EFFECT_DELAY_EQ2, "2-Band EQ (XG Delay built-in)", do_eq2, NULL, conv_xg_delay_eq2, sizeof(InfoEQ2),
+-	EFFECT_LOFI, "Lo-Fi", do_lofi, NULL, conv_xg_lofi, sizeof(InfoLoFi),
+-	EFFECT_LOFI1, "Lo-Fi 1", do_lofi1, conv_gs_lofi1, NULL, sizeof(InfoLoFi1),
+-	EFFECT_LOFI2, "Lo-Fi 2", do_lofi2, conv_gs_lofi2, NULL, sizeof(InfoLoFi2),
+-	EFFECT_XG_AUTO_WAH, "Auto Wah", do_xg_auto_wah, NULL, conv_xg_auto_wah, sizeof(InfoXGAutoWah),
+-	EFFECT_XG_AUTO_WAH_EQ2, "2-Band EQ (Auto Wah built-in)", do_eq2, NULL, conv_xg_auto_wah_eq2, sizeof(InfoEQ2),
+-	EFFECT_XG_AUTO_WAH_OD, "OD (Auto Wah built-in)", do_xg_auto_wah_od, NULL, conv_xg_auto_wah_od, sizeof(InfoXGAutoWahOD),
+-	EFFECT_XG_AUTO_WAH_OD_EQ3, "2-Band EQ (Auto Wah OD built-in)", do_eq3, NULL, conv_xg_auto_wah_od_eq3, sizeof(InfoEQ3),
+-	-1, "EOF", NULL, NULL, NULL, 0, 
++{	EFFECT_NONE, "None", NULL, NULL, NULL, 0,},
++{	EFFECT_STEREO_EQ, "Stereo-EQ", do_stereo_eq, conv_gs_stereo_eq, NULL, sizeof(InfoStereoEQ),},
++{	EFFECT_EQ2, "2-Band EQ", do_eq2, conv_gs_eq2, conv_xg_eq2, sizeof(InfoEQ2),},
++{	EFFECT_EQ3, "3-Band EQ", do_eq3, NULL, conv_xg_eq3, sizeof(InfoEQ3),},
++{	EFFECT_OVERDRIVE1, "Overdrive", do_overdrive1, conv_gs_overdrive1, NULL, sizeof(InfoOverdrive1),},
++{	EFFECT_DISTORTION1, "Distortion", do_distortion1, conv_gs_overdrive1, NULL, sizeof(InfoOverdrive1),},
++{	EFFECT_OD1OD2, "OD1/OD2", do_dual_od, conv_gs_dual_od, NULL, sizeof(InfoOD1OD2),},
++{	EFFECT_HEXA_CHORUS, "Hexa-Chorus", do_hexa_chorus, conv_gs_hexa_chorus, NULL, sizeof(InfoHexaChorus),},
++{	EFFECT_CHORUS, "Chorus", do_chorus, NULL, conv_xg_chorus, sizeof(InfoChorus),},
++{	EFFECT_FLANGER, "Flanger", do_chorus, NULL, conv_xg_flanger, sizeof(InfoChorus),},
++{	EFFECT_SYMPHONIC, "Symphonic", do_chorus, NULL, conv_xg_symphonic, sizeof(InfoChorus),},
++{	EFFECT_CHORUS_EQ3, "3-Band EQ (XG Chorus built-in)", do_eq3, NULL, conv_xg_chorus_eq3, sizeof(InfoEQ3),},
++{	EFFECT_STEREO_OVERDRIVE, "Stereo Overdrive", do_stereo_od, NULL, conv_xg_overdrive, sizeof(InfoStereoOD),},
++{	EFFECT_STEREO_DISTORTION, "Stereo Distortion", do_stereo_od, NULL, conv_xg_distortion, sizeof(InfoStereoOD),},
++{	EFFECT_STEREO_AMP_SIMULATOR, "Amp Simulator", do_stereo_od, NULL, conv_xg_amp_simulator, sizeof(InfoStereoOD),},
++{	EFFECT_OD_EQ3, "2-Band EQ (XG OD built-in)", do_eq3, NULL, conv_xg_od_eq3, sizeof(InfoEQ3),},
++{	EFFECT_DELAY_LCR, "Delay L,C,R", do_delay_lcr, NULL, conv_xg_delay_lcr, sizeof(InfoDelayLCR),},
++{	EFFECT_DELAY_LR, "Delay L,R", do_delay_lr, NULL, conv_xg_delay_lr, sizeof(InfoDelayLR),},
++{	EFFECT_ECHO, "Echo", do_echo, NULL, conv_xg_echo, sizeof(InfoEcho),},
++{	EFFECT_CROSS_DELAY, "Cross Delay", do_cross_delay, NULL, conv_xg_cross_delay, sizeof(InfoCrossDelay),},
++{	EFFECT_DELAY_EQ2, "2-Band EQ (XG Delay built-in)", do_eq2, NULL, conv_xg_delay_eq2, sizeof(InfoEQ2),},
++{	EFFECT_LOFI, "Lo-Fi", do_lofi, NULL, conv_xg_lofi, sizeof(InfoLoFi),},
++{	EFFECT_LOFI1, "Lo-Fi 1", do_lofi1, conv_gs_lofi1, NULL, sizeof(InfoLoFi1),},
++{	EFFECT_LOFI2, "Lo-Fi 2", do_lofi2, conv_gs_lofi2, NULL, sizeof(InfoLoFi2),},
++{	EFFECT_XG_AUTO_WAH, "Auto Wah", do_xg_auto_wah, NULL, conv_xg_auto_wah, sizeof(InfoXGAutoWah),},
++{	EFFECT_XG_AUTO_WAH_EQ2, "2-Band EQ (Auto Wah built-in)", do_eq2, NULL, conv_xg_auto_wah_eq2, sizeof(InfoEQ2),},
++{	EFFECT_XG_AUTO_WAH_OD, "OD (Auto Wah built-in)", do_xg_auto_wah_od, NULL, conv_xg_auto_wah_od, sizeof(InfoXGAutoWahOD),},
++{	EFFECT_XG_AUTO_WAH_OD_EQ3, "2-Band EQ (Auto Wah OD built-in)", do_eq3, NULL, conv_xg_auto_wah_od_eq3, sizeof(InfoEQ3),},
++{	-1, "EOF", NULL, NULL, NULL, 0, },
+ };
+ 
+ struct effect_parameter_xg_t effect_parameter_xg[] = {
+-	0, 0, "NO EFFECT", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0x05, 0, "DELAY L,C,R", 0x1A, 0x0D, 0x27, 0x27, 0, 0, 0, 0, 0, 0,
+-	0x05, 0x03, 0x08, 0x08, 74, 100, 10, 0, 0, 32, 0, 0, 28, 64, 46, 64, 9,
+-	0x06, 0, "DELAY L,R", 0x13, 0x1D, 0x1D, 0x1D, 0, 0, 0, 0, 0, 0,
+-	0x44, 0x26, 0x28, 0x26, 87, 10, 0, 0, 0, 32, 0, 0, 28, 64, 46, 64, 9,
+-	0x07, 0, "ECHO", 0x0D, 0, 0x0D, 0, 0, 0x0D, 0x0D, 0, 0, 0,
+-	0x24, 80, 0x74, 80, 10, 0x24, 0x74, 0, 0, 40, 0, 0, 28, 64, 46, 64, 9,
+-	0x08, 0, "CROSS DELAY", 0x0D, 0x0D, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0x24, 0x56, 111, 1, 10, 0, 0, 0, 0, 32, 0, 0, 28, 64, 46, 64, 9,
+-	0x41, 0, "CHORUS 1", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	6, 54, 77, 106, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x01, "CHORUS 2", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	8, 63, 64, 30, 0, 28, 62, 42, 58, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x02, "CHORUS 3", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	4, 44, 64, 110, 0, 28, 64, 46, 66, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x03, "GM CHORUS 1", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	9, 10, 64, 109, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x04, "GM CHORUS 2", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	28, 34, 67, 105, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x05, "GM CHORUS 3", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	9, 34, 69, 105, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x06, "GM CHORUS 4", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	26, 29, 75, 102, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x07, "FB CHORUS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	6, 43, 107, 111, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0, 9,
+-	0x41, 0x08, "CHORUS 4", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	9, 32, 69, 104, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 1, 0, 9,
+-	0x42, 0, "CELESTE 1", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	12, 32, 64, 0, 0, 28, 64, 46, 64, 127, 40, 68, 10, 0, 0, 0, 9,
+-	0x42, 0x01, "CELESTE 2", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	28, 18, 90, 2, 0, 28, 62, 42, 60, 84, 40, 68, 10, 0, 0, 0, 9,
+-	0x42, 0x02, "CELESTE 3", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	4, 63, 44, 2, 0, 28, 64, 46, 68, 127, 40, 68, 10, 0, 0, 0, 9,
+-	0x42, 0x08, "CELESTE 4", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	8, 29, 64, 0, 0, 28, 64, 51, 66, 127, 40, 68, 10, 0, 1, 0, 9,
+-	0x43, 0, "FLANGER 1", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	14, 14, 104, 2, 0, 28, 64, 46, 64, 96, 40, 64, 10, 4, 0, 0, 9, 
+-	0x43, 0x01, "FLANGER 2", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	32, 17, 26, 2, 0, 28, 64, 46, 60, 96, 40, 64, 10, 4, 0, 0, 9, 
+-	0x43, 0x07, "GM FLANGER", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	3, 21, 120, 1, 0, 28, 64, 46, 64, 96, 40, 64, 10, 4, 0, 0, 9, 
+-	0x43, 0x08, "FLANGER 3", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	4, 109, 109, 2, 0, 28, 64, 46, 64, 127, 40, 64, 10, 4, 0, 0, 9, 
+-	0x44, 0, "SYMPHONIC", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	12, 25, 16, 0, 0, 28, 64, 46, 64, 127, 46, 64, 10, 0, 0, 0, 9,
+-	0x49, 0, "DISTORTION", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	40, 20, 72, 53, 48, 0, 43, 74, 10, 127, 120, 0, 0, 0, 0, 0, 0, 
+-	0x49, 0x08, "STEREO DISTORTION", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	18, 27, 71, 48, 84, 0, 32, 66, 10, 127, 105, 0, 0, 0, 0, 0, 0, 
+-	0x4A, 0, "OVERDRIVE", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	29, 24, 68, 45, 55, 0, 41, 72, 10, 127, 104, 0, 0, 0, 0, 0, 0, 
+-	0x4A, 0x08, "STEREO OVERDRIVE", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	10, 24, 69, 46, 105, 0, 41, 66, 10, 127, 104, 0, 0, 0, 0, 0, 0, 
+-	0x4B, 0, "AMP SIMULATOR", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	39, 1, 48, 55, 0, 0, 0, 0, 0, 127, 112, 0, 0, 0, 0, 0, 0, 
+-	0x4B, 0x08, "STEREO AMP SIMULATOR", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	16, 2, 46, 119, 0, 0, 0, 0, 0, 127, 106, 0, 0, 0, 0, 0, 0, 
+-	0x4C, 0, "3-BAND EQ", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	70, 34, 60, 10, 70, 28, 46, 0, 0, 127, 0, 0, 0, 0, 0, 0, -1, 
+-	0x4D, 0, "2-BAND EQ", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	28, 70, 46, 70, 0, 0, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, -1, 
+-	0x4E, 0, "AUTO WAH", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	70, 56, 39, 25, 0, 28, 66, 46, 64, 127, 0, 0, 0, 0, 0, 0, 2, 
+-	0x4E, 0x01, "AUTO WAH+DISTORTION", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	40, 73, 26, 29, 0, 28, 66, 46, 64, 127, 30, 72, 74, 53, 48, 0, 2, 
+-	0x4E, 0x02, "AUTO WAH+OVERDRIVE", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	48, 64, 32, 23, 0, 28, 66, 46, 64, 127, 29, 68, 72, 45, 55, 0, 2, 
+-	0x5E, 0, "LO-FI", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	2, 60, 6, 54, 5, 10, 1, 1, 0, 127, 0, 0, 0, 0, 1, 0, 9, 
+-	-1, -1, "EOF", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
++{	0, 0, "NO EFFECT",
++	{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},
++	{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,}, 0, },
++
++{	0x05, 0, "DELAY L,C,R", { 0x1A, 0x0D, 0x27, 0x27, 0, 0, 0, 0, 0, 0,},{
++	0x05, 0x03, 0x08, 0x08, 74, 100, 10, 0, 0, 32, 0, 0, 28, 64, 46, 64,}, 9,},
++
++{	0x06, 0, "DELAY L,R", { 0x13, 0x1D, 0x1D, 0x1D, 0, 0, 0, 0, 0, 0,},{
++	0x44, 0x26, 0x28, 0x26, 87, 10, 0, 0, 0, 32, 0, 0, 28, 64, 46, 64, },9,},
++
++{	0x07, 0, "ECHO", { 0x0D, 0, 0x0D, 0, 0, 0x0D, 0x0D, 0, 0, 0,},{
++	0x24, 80, 0x74, 80, 10, 0x24, 0x74, 0, 0, 40, 0, 0, 28, 64, 46, 64,}, 9,},
++
++{	0x08, 0, "CROSS DELAY", { 0x0D, 0x0D, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	0x24, 0x56, 111, 1, 10, 0, 0, 0, 0, 32, 0, 0, 28, 64, 46, 64,}, 9,},
++
++{	0x41, 0, "CHORUS 1", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	6, 54, 77, 106, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x01, "CHORUS 2",{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	8, 63, 64, 30, 0, 28, 62, 42, 58, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x02, "CHORUS 3",{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	4, 44, 64, 110, 0, 28, 64, 46, 66, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x03, "GM CHORUS 1",{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	9, 10, 64, 109, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x04, "GM CHORUS 2", {0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	28, 34, 67, 105, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x05, "GM CHORUS 3", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	9, 34, 69, 105, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x06, "GM CHORUS 4", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	26, 29, 75, 102, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x07, "FB CHORUS", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	6, 43, 107, 111, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x41, 0x08, "CHORUS 4", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	9, 32, 69, 104, 0, 28, 64, 46, 64, 64, 46, 64, 10, 0, 1, 0,}, 9,},
++
++{	0x42, 0, "CELESTE 1", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	12, 32, 64, 0, 0, 28, 64, 46, 64, 127, 40, 68, 10, 0, 0, 0,}, 9,},
++
++{	0x42, 0x01, "CELESTE 2", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	28, 18, 90, 2, 0, 28, 62, 42, 60, 84, 40, 68, 10, 0, 0, 0,}, 9,},
++
++{	0x42, 0x02, "CELESTE 3", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	4, 63, 44, 2, 0, 28, 64, 46, 68, 127, 40, 68, 10, 0, 0,0,}, 9,},
++
++{	0x42, 0x08, "CELESTE 4", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	8, 29, 64, 0, 0, 28, 64, 51, 66, 127, 40, 68, 10, 0, 1, 0,}, 9,},
++
++{	0x43, 0, "FLANGER 1", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	14, 14, 104, 2, 0, 28, 64, 46, 64, 96, 40, 64, 10, 4, 0, 0,}, 9, },
++
++{	0x43, 0x01, "FLANGER 2", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	32, 17, 26, 2, 0, 28, 64, 46, 60, 96, 40, 64, 10, 4, 0, 0,}, 9, },
++
++{	0x43, 0x07, "GM FLANGER", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	3, 21, 120, 1, 0, 28, 64, 46, 64, 96, 40, 64, 10, 4, 0, 0,}, 9, },
++
++{	0x43, 0x08, "FLANGER 3", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	4, 109, 109, 2, 0, 28, 64, 46, 64, 127, 40, 64, 10, 4, 0, 0,}, 9, },
++
++{	0x44, 0, "SYMPHONIC", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	12, 25, 16, 0, 0, 28, 64, 46, 64, 127, 46, 64, 10, 0, 0, 0,}, 9,},
++
++{	0x49, 0, "DISTORTION", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	40, 20, 72, 53, 48, 0, 43, 74, 10, 127, 120, 0, 0, 0, 0,0,}, 0,}, 
++
++{	0x49, 0x08, "STEREO DISTORTION", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	18, 27, 71, 48, 84, 0, 32, 66, 10, 127, 105, 0, 0, 0, 0, 0,}, 0,}, 
++
++{	0x4A, 0, "OVERDRIVE", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	29, 24, 68, 45, 55, 0, 41, 72, 10, 127, 104, 0, 0, 0, 0, 0,}, 0,}, 
++
++{	0x4A, 0x08, "STEREO OVERDRIVE", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	10, 24, 69, 46, 105, 0, 41, 66, 10, 127, 104, 0, 0, 0, 0, 0,}, 0,}, 
++
++{	0x4B, 0, "AMP SIMULATOR", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	39, 1, 48, 55, 0, 0, 0, 0, 0, 127, 112, 0, 0, 0, 0, 0,}, 0,}, 
++
++{	0x4B, 0x08, "STEREO AMP SIMULATOR", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	16, 2, 46, 119, 0, 0, 0, 0, 0, 127, 106, 0, 0, 0, 0, 0,}, 0,}, 
++
++{	0x4C, 0, "3-BAND EQ", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	70, 34, 60, 10, 70, 28, 46, 0, 0, 127, 0, 0, 0, 0, 0, 0,}, -1,}, 
++
++{	0x4D, 0, "2-BAND EQ", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	28, 70, 46, 70, 0, 0, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0,}, -1,}, 
++
++{	0x4E, 0, "AUTO WAH", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	70, 56, 39, 25, 0, 28, 66, 46, 64, 127, 0, 0, 0, 0, 0, 0,}, 2, },
++
++{	0x4E, 0x01, "AUTO WAH+DISTORTION", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	40, 73, 26, 29, 0, 28, 66, 46, 64, 127, 30, 72, 74, 53, 48, 0,}, 2, },
++
++{	0x4E, 0x02, "AUTO WAH+OVERDRIVE", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	48, 64, 32, 23, 0, 28, 66, 46, 64, 127, 29, 68, 72, 45, 55, 0,}, 2, },
++
++{	0x5E, 0, "LO-FI",{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	2, 60, 6, 54, 5, 10, 1, 1, 0, 127, 0, 0, 0, 0, 1, 0,}, 9, },
++
++{	-1, -1, "EOF",{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},{
++	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,}, 0,},
+ };
+ 
+ struct effect_parameter_gs_t effect_parameter_gs[] = {
+-	0, 0, "None", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0x01, 0x00, "Stereo-EQ", 1, 0x45, 1, 0x34, 0x48, 0, 0x48, 0x38, 0, 0x48,
+-	0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 19, -1,
+-	0x01, 0x10, "Overdrive", 48, 1, 1, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0x40, 0x40, 0x40, 96, 0, 18,
+-	0x01, 0x11, "Distrotion", 76, 3, 1, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0x40, 0x38, 0x40, 84, 0, 18, 
+-	0x11, 0x03, "OD1/OD2", 0, 48, 1, 1, 0, 1, 76, 3, 1, 0,
+-	0, 0, 0, 0, 0, 0x40, 96, 0x40, 84, 127, 1, 6, 
+-	0x01, 0x40, "Hexa Chorus", 0x18, 0x08, 127, 5, 66, 16, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0x40, 0x40, 64, 112, 1, 15, 
+-	0x01, 0x72, "Lo-Fi 1", 2, 6, 2, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 127, 0x40, 0x40, 64, 127, 15, 18, 
+-	0x01, 0x73, "Lo-Fi 2", 2, 1, 0x20, 0, 64, 1, 127, 0, 0, 127,
+-	0, 0, 127, 0, 1, 127, 0x40, 0x40, 64, 127, 3, 15, 
+-	-1, -1, "EOF", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
++{	0, 0, "None", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
++	0, 0, 0, 0, 0, 0, 0, 0, 0, 0,}, 0, 0,},
++{	0x01, 0x00, "Stereo-EQ", { 1, 0x45, 1, 0x34, 0x48, 0, 0x48, 0x38, 0, 0x48,
++	0, 0, 0, 0, 0, 0, 0, 0, 0, 127,}, 19, -1,},
++{	0x01, 0x10, "Overdrive",{  48, 1, 1, 0, 0, 0, 0, 0, 0, 0,
++	0, 0, 0, 0, 0, 0, 0x40, 0x40, 0x40, 96,}, 0, 18,},
++{	0x01, 0x11, "Distrotion",{  76, 3, 1, 0, 0, 0, 0, 0, 0, 0,
++	0, 0, 0, 0, 0, 0, 0x40, 0x38, 0x40, 84,}, 0, 18, },
++{	0x11, 0x03, "OD1/OD2",{  0, 48, 1, 1, 0, 1, 76, 3, 1, 0,
++	0, 0, 0, 0, 0, 0x40, 96, 0x40, 84, 127,}, 1, 6, },
++{	0x01, 0x40, "Hexa Chorus",{  0x18, 0x08, 127, 5, 66, 16, 0, 0, 0, 0,
++	0, 0, 0, 0, 0, 0, 0x40, 0x40, 64, 112,}, 1, 15, },
++{	0x01, 0x72, "Lo-Fi 1",{  2, 6, 2, 0, 0, 0, 0, 0, 0, 0,
++	0, 0, 0, 0, 0, 127, 0x40, 0x40, 64, 127,}, 15, 18, },
++{	0x01, 0x73, "Lo-Fi 2",{  2, 1, 0x20, 0, 64, 1, 127, 0, 0, 127,
++	0, 0, 127, 0, 1, 127, 0x40, 0x40, 64, 127,}, 3, 15, },
++{	-1, -1, "EOF",{  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
++	0, 0, 0, 0, 0, 0, 0, 0, 0, 0,}, 0, 0,},
+ };
+diff --git a/timidity/smplfile.c b/timidity/smplfile.c
+index f24413b..cab2727 100755
+--- a/timidity/smplfile.c
++++ b/timidity/smplfile.c
+@@ -318,11 +318,11 @@ static int import_wave_load(char *sample_file, Instrument *inst)
+ 	struct timidity_file	*tf;
+ 	char			buf[12];
+ 	int				state;		/* initial > fmt_read > data_read */
+-	int				i, chunk_size, type_index, type_size, samples;
++	int				i, chunk_size, type_index, type_size, samples = 0;
+ 	int32			chunk_flags;
+ 	Sample			*sample;
+-	WAVFormatChunk	format;
+-	WAVSamplerChunk	samplerc;
++	WAVFormatChunk	format = {0,};
++	WAVSamplerChunk	samplerc = {0,};
+ 	GeneralInstrumentInfo	instc;
+ 	
+ 	if ((tf = open_file(sample_file, 1, OF_NORMAL)) == NULL)
+@@ -400,7 +400,7 @@ static int import_wave_load(char *sample_file, Instrument *inst)
+ 	{
+ 		uint8		modes;
+ 		int32		sample_rate, root_freq;
+-		uint32		loopStart, loopEnd;
++		uint32		loopStart = 0, loopEnd = 0;
+ 		
+ 		sample_rate = samplerc.dwSamplePeriod == 0 ? 0 : 1000000000 / samplerc.dwSamplePeriod;
+ 		root_freq = freq_table[samplerc.dwMIDIUnityNote];
+@@ -605,7 +605,7 @@ static int import_aiff_load(char *sample_file, Instrument *inst)
+ 	AIFFCommonChunk	common;
+ 	AIFFSoundDataChunk	sound;
+ 	GeneralInstrumentInfo	inst_info;
+-	AIFFLoopInfo	loop_info;
++	AIFFLoopInfo	loop_info = {0,0,0};
+ 	AIFFMarkerData	*marker_data;
+ 	
+ 	if ((tf = open_file(sample_file, 1, OF_NORMAL)) == NULL)
+diff --git a/timidity/speex_a.c b/timidity/speex_a.c
+index 93627cf..d8b0dd1 100644
+--- a/timidity/speex_a.c
++++ b/timidity/speex_a.c
+@@ -94,7 +94,7 @@ typedef struct {
+   /* Speex */
+   SpeexHeader      header;
+   SpeexBits        bits;
+-  SpeexMode*       mode;
++  const SpeexMode* mode;
+   void*            state;
+   int              frame_size;
+   int              nframes;
+@@ -475,7 +475,7 @@ static int output_data(char *buf, int32 nbytes)
+   Speex_ctx *ctx = speex_ctx;
+   int nbBytes;
+   int16 *s;
+-  int i, j;
++  int i;
+   int ret;
+   int nbytes_left;
+ 
+@@ -626,8 +626,7 @@ static void close_output(void)
+     free(speex_ctx->input);
+ 
+     ctl->cmsg(CMSG_INFO, VERB_NORMAL, "Wrote %lu/%lu bytes(%g%% compressed)",
+-	      ctx->out_bytes, ctx->in_bytes, ((double)ctx->out_bytes / (double)ctx->in_bytes)) * 100.;
+-
++	      ctx->out_bytes, ctx->in_bytes, ((double)ctx->out_bytes / (double)ctx->in_bytes) * 100.0);
+ 
+     speex_ctx->input = NULL;
+     free(speex_ctx);
+diff --git a/timidity/timidity.c b/timidity/timidity.c
+index 51a749f..57f8fd1 100644
+--- a/timidity/timidity.c
++++ b/timidity/timidity.c
+@@ -2701,16 +2701,16 @@ MAIN_INTERFACE int set_tim_opt_short(int c, char *optarg)
+ 	return 0;
+ }
+ 
++#ifdef __W32__
+ MAIN_INTERFACE int set_tim_opt_short_cfg(int c, char *optarg)
+ {
+-	int err = 0;
+-	
+ 	switch (c) {
+ 	case 'c':
+ 		return parse_opt_c(optarg);
+ 	}
+ 	return 0;
+ }
++#endif
+ 
+ /* -------- getopt_long -------- */
+ MAIN_INTERFACE int set_tim_opt_long(int c, char *optarg, int index)
+@@ -2950,6 +2950,7 @@ MAIN_INTERFACE int set_tim_opt_long(int c, char *optarg, int index)
+ 	}
+ }
+ 
++#ifdef __W32__
+ MAIN_INTERFACE int set_tim_opt_long_cfg(int c, char *optarg, int index)
+ {
+ 	const struct option *the_option = &(longopts[index]);
+@@ -2968,6 +2969,7 @@ MAIN_INTERFACE int set_tim_opt_long_cfg(int c, char *optarg, int index)
+ 		return parse_opt_c(arg);
+ 	}
+ }
++#endif
+ 
+ static inline int parse_opt_A(const char *arg)
+ {
+@@ -3918,7 +3920,7 @@ static int parse_opt_h(const char *arg)
+ 			if (*(strchr(h, '%') + 1) != '%')
+ 				fprintf(fp, h, help_args[j++]);
+ 			else
+-				fprintf(fp, h);
++				fprintf(fp, "%s", h);
+ 		} else
+ 			fputs(h, fp);
+ 		fputs(NLS, fp);
+@@ -4099,7 +4101,7 @@ static inline void list_dyna_interface(FILE *fp, char *path, char *mark)
+ {
+     URL dir;
+     char fname[NAME_MAX];
+-    int cwd;
++    int cwd, dummy;
+ 	if ((dir = url_dir_open(path)) == NULL)
+ 		return;
+ 	cwd = open(".", 0);
+@@ -4108,17 +4110,17 @@ static inline void list_dyna_interface(FILE *fp, char *path, char *mark)
+ 	while (url_gets(dir, fname, sizeof(fname)) != NULL)
+ 		if (strncmp(fname, "if_", 3) == 0) {
+ 			void* handle = NULL;
+-			if(handle = dl_load_file(fname)) {
++			if((handle = dl_load_file(fname))) {
+ 				ControlMode *(* loader)(void);
+ 				char c = CHAR_MAX;
+ 				loader = NULL;
+ 				do {
+ 					char buf[20]; /* enough */
+-					if(mark[c]) continue;
++					if(mark[(int)c]) continue;
+ 					sprintf(buf, "interface_%c_loader", c);
+-					if(loader = dl_find_symbol(handle, buf)) {
++					if((loader = dl_find_symbol(handle, buf))) {
+ 						fprintf(fp, "  -i%c          %s" NLS, c, loader()->id_name);
+-						mark[c] = 1;
++						mark[(int)c] = 1;
+ 						goto cleanup;
+ 					}
+ 				} while (--c != CHAR_MAX); /* round-trip detection */
+@@ -4126,17 +4128,17 @@ static inline void list_dyna_interface(FILE *fp, char *path, char *mark)
+ 				dl_free(handle);
+ 			}
+ 		}
+-	fchdir(cwd);
+-	close(cwd);
++	dummy = fchdir(cwd);
++	dummy += close(cwd);
+ 	url_close(dir);
+ }
+ 
+ ControlMode *dynamic_interface_module(int id_char)
+ {
+ 	URL url;
+-	char fname[BUFSIZ], name[16], *info;
++	char fname[BUFSIZ];
+ 	ControlMode *ctl = NULL;
+-	int cwd;
++	int cwd, dummy;
+ 	void *handle;
+ 	ControlMode *(* inferface_loader)(void);
+ 
+@@ -4161,8 +4163,8 @@ ControlMode *dynamic_interface_module(int id_char)
+ 				break;
+ 		}
+ 	}
+-	fchdir(cwd);
+-	close(cwd);
++	dummy = fchdir(cwd);
++	dummy += close(cwd);
+ 	url_close(url);
+ 	return ctl;
+ }
+@@ -4171,9 +4173,8 @@ ControlMode *dynamic_interface_module(int id_char)
+ static inline int parse_opt_i(const char *arg)
+ {
+ 	/* interface mode */
+-	ControlMode *cmp, **cmpp, *cmp2, **cmpp2;
++	ControlMode *cmp, **cmpp;
+ 	int found = 0;
+-	char name[16] = "\0";
+ 	
+ 	for (cmpp = ctl_list; (cmp = *cmpp) != NULL; cmpp++) {
+ 		if (cmp->id_character == *arg) {
+@@ -5145,16 +5146,17 @@ static void interesting_message(void)
+ static RETSIGTYPE sigterm_exit(int sig)
+ {
+     char s[4];
++    ssize_t dummy;
+ 
+     /* NOTE: Here, fprintf is dangerous because it is not re-enterance
+      * function.  It is possible coredump if the signal is called in printf's.
+      */
+ 
+-    write(2, "Terminated sig=0x", 17);
++    dummy = write(2, "Terminated sig=0x", 17);
+     s[0] = "0123456789abcdef"[(sig >> 4) & 0xf];
+     s[1] = "0123456789abcdef"[sig & 0xf];
+     s[2] = '\n';
+-    write(2, s, 3);
++    dummy += write(2, s, 3);
+ 
+     safe_exit(1);
+ }
+@@ -5765,7 +5767,7 @@ int main(int argc, char **argv)
+ 	int c, err, i;
+ 	int nfiles;
+ 	char **files;
+-	char *files_nbuf;
++	char *files_nbuf = NULL;
+ 	int main_ret;
+ 	int longind;
+ #if defined(DANGEROUS_RENICE) && !defined(__W32__) && !defined(main)
+@@ -5818,7 +5820,7 @@ int main(int argc, char **argv)
+ 	dl_init(argc, argv);
+ }
+ #endif /* IA_DYNAMIC */
+-	if (program_name = pathsep_strrchr(argv[0]))
++	if ((program_name = pathsep_strrchr(argv[0])))
+ 		program_name++;
+ 	else
+ 		program_name = argv[0];
+diff --git a/utils/net.c b/utils/net.c
+index ddef895..8bcc3af 100644
+--- a/utils/net.c
++++ b/utils/net.c
+@@ -69,7 +69,7 @@ extern FREEADDRINFO ws2_freeaddrinfo;
+ 
+ SOCKET open_socket(char *host, unsigned short port)
+ {
+-    SOCKET fd;
++    SOCKET fd = -1;
+     struct addrinfo hints, *result, *rp;
+     char service[NI_MAXSERV];
+     int s;
+diff --git a/utils/nkflib.c b/utils/nkflib.c
+index 34f2d01..d5c8ba3 100644
+--- a/utils/nkflib.c
++++ b/utils/nkflib.c
+@@ -306,7 +306,9 @@ extern POINT _BufferSize;
+ 
+ /*      function prototype  */
+ 
++#if 0
+ static  int     noconvert(SFILE *f);
++#endif
+ static  int     kanji_convert(SFILE *f);
+ static  int     h_conv(SFILE *f,int c2,int c1);
+ static  int     push_hold_buf(int c2,int c1);
+@@ -319,16 +321,22 @@ static  int     pre_convert(int c1,int c2);
+ static  int     mime_begin(SFILE *f);
+ static  int     mime_getc(SFILE *f);
+ static  int     mime_ungetc(unsigned int c);
++#ifdef STRICT_MIME
+ static  int     mime_integrity(SFILE *f,unsigned char *p);
++#endif
+ static  int     base64decode(int c);
++#if 0
+ static  int     usage(void);
+ static  void    arguments(char *c);
++#endif
+ static  void    reinit();
+ 
+ /* buffers */
+ 
++#if 0
+ static char            stdibuf[IOBUF_SIZE];
+ static char            stdobuf[IOBUF_SIZE];
++#endif
+ static unsigned char   hold_buf[HOLD_SIZE*2];
+ static int             hold_count;
+ 
+@@ -340,7 +348,9 @@ static int             hold_count;
+ static unsigned char           mime_buf[MIME_BUF_SIZE];
+ static unsigned int            mime_top = 0;
+ static unsigned int            mime_last = 0;  /* decoded */
++#ifdef STRICT_MIME
+ static unsigned int            mime_input = 0; /* undecoded */
++#endif
+ 
+ /* flags */
+ static int             unbuf_f = FALSE;
+@@ -853,7 +863,6 @@ static void fix_euc_code(unsigned char *s, int len)
+ static int             file_out = FALSE;
+ static int             add_cr = FALSE;
+ static int             del_cr = FALSE;
+-static int             end_check;
+ 
+ #if 0
+ #ifndef PERL_XS
+@@ -962,6 +971,7 @@ main(argc, argv)
+ }
+ #endif
+ 
++#if 0
+ void
+ arguments(char *cp) 
+ {
+@@ -1095,7 +1105,9 @@ arguments(char *cp)
+     }
+ }
+ #endif
++#endif
+ 
++#if 0
+ int
+ noconvert(f)
+     SFILE  *f;
+@@ -1106,9 +1118,7 @@ noconvert(f)
+       sputchar(c);
+     return 1;
+ }
+-
+-
+-
++#endif
+ 
+ int
+ kanji_convert(SFILE  *f)
+-- 
+1.7.7.3
+
diff --git a/0011-Make-shebang-paths-usr-bin-foo-rather-then-usr-local.patch b/0011-Make-shebang-paths-usr-bin-foo-rather-then-usr-local.patch
new file mode 100644
index 0000000..d9792b8
--- /dev/null
+++ b/0011-Make-shebang-paths-usr-bin-foo-rather-then-usr-local.patch
@@ -0,0 +1,52 @@
+From af4798c1752d7a867ed370b6e2731c785e5909cf Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Thu, 17 Nov 2011 20:49:42 +0100
+Subject: [PATCH 11/17] Make shebang paths /usr/bin/foo rather then
+ /usr/local/bin/foo
+
+This makes life easier for packagers, people who want to use non standard
+paths will need to fix this up themselves...
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ interface/timidity.el   |    2 +-
+ interface/tkmidity.ptcl |    2 +-
+ interface/tkpanel.tcl   |    2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/interface/timidity.el b/interface/timidity.el
+index f03ba25..31abeff 100644
+--- a/interface/timidity.el
++++ b/interface/timidity.el
+@@ -35,7 +35,7 @@
+ 
+ ;; Configuration parameters.
+ ; Absolute path of timidity.
+-(defvar timidity-prog-path "/usr/local/bin/timidity")
++(defvar timidity-prog-path "/usr/bin/timidity")
+ 
+ ; String list for timidity program options.
+ (defvar timidity-default-options nil)
+diff --git a/interface/tkmidity.ptcl b/interface/tkmidity.ptcl
+index caf5e0a..7168bc4 100755
+--- a/interface/tkmidity.ptcl
++++ b/interface/tkmidity.ptcl
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/wishx -f
++#!/usr/bin/wish -f
+ #
+ # TiMidity++ -- MIDI to WAVE converter and player
+ # Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+diff --git a/interface/tkpanel.tcl b/interface/tkpanel.tcl
+index 0a392b1..e826c54 100755
+--- a/interface/tkpanel.tcl
++++ b/interface/tkpanel.tcl
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/wishx -f
++#!/usr/bin/wish -f
+ #
+ # TiMidity++ -- MIDI to WAVE converter and player
+ # Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-- 
+1.7.7.3
+
diff --git a/0012-Remove-all-autofoo-generated-files-from-git.patch b/0012-Remove-all-autofoo-generated-files-from-git.patch
new file mode 100644
index 0000000..cddca5c
--- /dev/null
+++ b/0012-Remove-all-autofoo-generated-files-from-git.patch
@@ -0,0 +1,41422 @@
+From 73d6bb4bdd879e588baf49f3842a8d16efab19c3 Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 11:09:36 +0100
+Subject: [PATCH 12/17] Remove all autofoo generated files from git
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ Makefile.in                         |  767 --
+ aclocal.m4                          | 2526 ----
+ autoconf/Makefile.in                |  433 -
+ autoconf/config.guess               | 1394 ---
+ autoconf/config.sub                 | 1492 ---
+ autoconf/depcomp                    |  436 -
+ autoconf/install-sh                 |  251 -
+ autoconf/missing                    |  336 -
+ autoconf/mkinstalldirs              |  101 -
+ config.h.in                         |  524 -
+ configs/Makefile.in                 |  425 -
+ configure                           |22707 -----------------------------------
+ doc/C/Makefile.in                   |  435 -
+ doc/Makefile.in                     |  765 --
+ doc/ja_JP.eucJP/Makefile.in         |  433 -
+ interface/Makefile.in               | 1322 --
+ interface/bitmaps/Makefile.in       |  503 -
+ interface/motif_bitmaps/Makefile.in |  488 -
+ interface/pixmaps/Makefile.in       |  498 -
+ libarc/Makefile.in                  |  717 --
+ libunimod/Makefile.in               |  693 --
+ script/Makefile.in                  |  426 -
+ timidity/Makefile.in                | 1989 ---
+ utils/Makefile.in                   |  755 --
+ windrv/Makefile.in                  |  794 --
+ 25 files changed, 0 insertions(+), 41210 deletions(-)
+ delete mode 100644 Makefile.in
+ delete mode 100644 aclocal.m4
+ delete mode 100644 autoconf/Makefile.in
+ delete mode 100755 autoconf/config.guess
+ delete mode 100755 autoconf/config.sub
+ delete mode 100755 autoconf/depcomp
+ delete mode 100755 autoconf/install-sh
+ delete mode 100755 autoconf/missing
+ delete mode 100755 autoconf/mkinstalldirs
+ delete mode 100644 config.h.in
+ delete mode 100644 configs/Makefile.in
+ delete mode 100755 configure
+ delete mode 100644 doc/C/Makefile.in
+ delete mode 100644 doc/Makefile.in
+ delete mode 100644 doc/ja_JP.eucJP/Makefile.in
+ delete mode 100644 interface/Makefile.in
+ delete mode 100644 interface/bitmaps/Makefile.in
+ delete mode 100644 interface/motif_bitmaps/Makefile.in
+ delete mode 100644 interface/pixmaps/Makefile.in
+ delete mode 100644 libarc/Makefile.in
+ delete mode 100644 libunimod/Makefile.in
+ delete mode 100644 script/Makefile.in
+ delete mode 100644 timidity/Makefile.in
+ delete mode 100644 utils/Makefile.in
+ delete mode 100755 windrv/Makefile.in
+
+diff --git a/Makefile.in b/Makefile.in
+deleted file mode 100644
+index febfa48..0000000
+--- a/Makefile.in
++++ /dev/null
+@@ -1,767 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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 Makefile is known to work with GNU make.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = .
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-
+-ACLOCAL_AMFLAGS = -I autoconf
+-M4DIR = autoconf
+-SUBDIRS = \
+-	autoconf \
+-	utils \
+-	libarc \
+-	libunimod \
+-	interface \
+-	timidity \
+-	windrv \
+-	doc \
+-	script \
+-	configs
+-
+-
+-EXTRA_DIST = \
+-	ChangeLog.1 \
+-	ChangeLog.2 \
+-	INSTALL.ja \
+-	README.ja
+-
+-
+-TOOLSDIR = timidity-tools
+-UMPDIR = ump
+-subdir = .
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = config.h interface.h
+-CONFIG_CLEAN_FILES = common.makefile
+-DIST_SOURCES =
+-
+-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
+-	ps-recursive install-info-recursive uninstall-info-recursive \
+-	all-recursive install-data-recursive install-exec-recursive \
+-	installdirs-recursive install-recursive uninstall-recursive \
+-	check-recursive installcheck-recursive
+-DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
+-	Makefile.in NEWS TODO aclocal.m4 common.makefile.in config.h.in \
+-	configure configure.in interface.h.in
+-DIST_SUBDIRS = $(SUBDIRS)
+-all: config.h interface.h
+-	$(MAKE) $(AM_MAKEFLAGS) all-recursive
+-
+-.SUFFIXES:
+-
+-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
+- configure.lineno
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
+-
+-$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+-	$(SHELL) ./config.status --recheck
+-$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
+-	cd $(srcdir) && $(AUTOCONF)
+-
+-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in autoconf/alsa.m4 autoconf/ao.m4 autoconf/arts.m4 autoconf/esd.m4 autoconf/gtk-2.0.m4 autoconf/gtk.m4 autoconf/libFLAC.m4 autoconf/libOggFLAC.m4 autoconf/ogg.m4 autoconf/utils.m4 autoconf/vorbis.m4
+-	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
+-
+-config.h: stamp-h1
+-	@if test ! -f $@; then \
+-	  rm -f stamp-h1; \
+-	  $(MAKE) stamp-h1; \
+-	else :; fi
+-
+-stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
+-	@rm -f stamp-h1
+-	cd $(top_builddir) && $(SHELL) ./config.status config.h
+-
+-$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(top_srcdir)/configure.in $(ACLOCAL_M4) 
+-	cd $(top_srcdir) && $(AUTOHEADER)
+-	touch $(srcdir)/config.h.in
+-
+-interface.h: stamp-h2
+-	@if test ! -f $@; then \
+-	  rm -f stamp-h2; \
+-	  $(MAKE) stamp-h2; \
+-	else :; fi
+-
+-stamp-h2: $(srcdir)/interface.h.in $(top_builddir)/config.status
+-	@rm -f stamp-h2
+-	cd $(top_builddir) && $(SHELL) ./config.status interface.h
+-
+-$(srcdir)/interface.h.in: @MAINTAINER_MODE_TRUE@ $(top_srcdir)/configure.in $(ACLOCAL_M4) 
+-	cd $(top_srcdir) && $(AUTOHEADER)
+-	touch $(srcdir)/interface.h.in
+-
+-distclean-hdr:
+-	-rm -f config.h stamp-h1 interface.h stamp-h2
+-common.makefile: $(top_builddir)/config.status common.makefile.in
+-	cd $(top_builddir) && $(SHELL) ./config.status $@
+-uninstall-info-am:
+-
+-# This directory's subdirectories are mostly independent; you can cd
+-# into them and run `make' without going through this Makefile.
+-# To change the values of `make' variables: instead of editing Makefiles,
+-# (1) if the variable is set in `config.status', edit `config.status'
+-#     (which will cause the Makefiles to be regenerated when you run `make');
+-# (2) otherwise, pass the desired values on the `make' command line.
+-$(RECURSIVE_TARGETS):
+-	@set fnord $$MAKEFLAGS; amf=$$2; \
+-	dot_seen=no; \
+-	target=`echo $@ | sed s/-recursive//`; \
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  echo "Making $$target in $$subdir"; \
+-	  if test "$$subdir" = "."; then \
+-	    dot_seen=yes; \
+-	    local_target="$$target-am"; \
+-	  else \
+-	    local_target="$$target"; \
+-	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+-	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+-	done; \
+-	if test "$$dot_seen" = "no"; then \
+-	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+-	fi; test -z "$$fail"
+-
+-mostlyclean-recursive clean-recursive distclean-recursive \
+-maintainer-clean-recursive:
+-	@set fnord $$MAKEFLAGS; amf=$$2; \
+-	dot_seen=no; \
+-	case "$@" in \
+-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+-	  *) list='$(SUBDIRS)' ;; \
+-	esac; \
+-	rev=''; for subdir in $$list; do \
+-	  if test "$$subdir" = "."; then :; else \
+-	    rev="$$subdir $$rev"; \
+-	  fi; \
+-	done; \
+-	rev="$$rev ."; \
+-	target=`echo $@ | sed s/-recursive//`; \
+-	for subdir in $$rev; do \
+-	  echo "Making $$target in $$subdir"; \
+-	  if test "$$subdir" = "."; then \
+-	    local_target="$$target-am"; \
+-	  else \
+-	    local_target="$$target"; \
+-	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+-	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+-	done && test -z "$$fail"
+-tags-recursive:
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+-	done
+-ctags-recursive:
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+-	done
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in interface.h.in $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	if (etags --etags-include --version) >/dev/null 2>&1; then \
+-	  include_option=--etags-include; \
+-	else \
+-	  include_option=--include; \
+-	fi; \
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  if test "$$subdir" = .; then :; else \
+-	    test -f $$subdir/TAGS && \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
+-	  fi; \
+-	done; \
+-	list='$(SOURCES) $(HEADERS) config.h.in interface.h.in $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in interface.h.in $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS) config.h.in interface.h.in $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = .
+-distdir = $(PACKAGE)-$(VERSION)
+-
+-am__remove_distdir = \
+-  { test ! -d $(distdir) \
+-    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
+-         && rm -fr $(distdir); }; }
+-
+-GZIP_ENV = --best
+-distuninstallcheck_listfiles = find . -type f -print
+-distcleancheck_listfiles = find . -type f -print
+-
+-distdir: $(DISTFILES)
+-	$(am__remove_distdir)
+-	mkdir $(distdir)
+-	$(mkinstalldirs) $(distdir)/.
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  if test "$$subdir" = .; then :; else \
+-	    test -d $(distdir)/$$subdir \
+-	    || mkdir $(distdir)/$$subdir \
+-	    || exit 1; \
+-	    (cd $$subdir && \
+-	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$(top_distdir)" \
+-	        distdir=../$(distdir)/$$subdir \
+-	        distdir) \
+-	      || exit 1; \
+-	  fi; \
+-	done
+-	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
+-	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
+-	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
+-	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
+-	|| chmod -R a+r $(distdir)
+-dist-gzip: distdir
+-	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+-	$(am__remove_distdir)
+-
+-dist-bzip2: distdir
+-	$(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2
+-	$(am__remove_distdir)
+-
+-dist dist-all: distdir
+-	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+-	$(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2
+-	$(am__remove_distdir)
+-
+-# This target untars the dist file and tries a VPATH configuration.  Then
+-# it guarantees that the distribution is self-contained by making another
+-# tarfile.
+-distcheck: dist
+-	$(am__remove_distdir)
+-	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
+-	chmod -R a-w $(distdir); chmod a+w $(distdir)
+-	mkdir $(distdir)/_build
+-	mkdir $(distdir)/_inst
+-	chmod a-w $(distdir)
+-	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
+-	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
+-	  && cd $(distdir)/_build \
+-	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
+-	    $(DISTCHECK_CONFIGURE_FLAGS) \
+-	  && $(MAKE) $(AM_MAKEFLAGS) \
+-	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
+-	  && $(MAKE) $(AM_MAKEFLAGS) check \
+-	  && $(MAKE) $(AM_MAKEFLAGS) install \
+-	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
+-	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
+-	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
+-	        distuninstallcheck \
+-	  && chmod -R a-w "$$dc_install_base" \
+-	  && ({ \
+-	       (cd ../.. && $(mkinstalldirs) "$$dc_destdir") \
+-	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
+-	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
+-	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
+-	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
+-	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
+-	  && rm -rf "$$dc_destdir" \
+-	  && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
+-	  && rm -f $(distdir).tar.gz \
+-	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
+-	$(am__remove_distdir)
+-	@echo "$(distdir).tar.gz is ready for distribution" | \
+-	  sed 'h;s/./=/g;p;x;p;x'
+-distuninstallcheck:
+-	@cd $(distuninstallcheck_dir) \
+-	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
+-	   || { echo "ERROR: files left after uninstall:" ; \
+-	        if test -n "$(DESTDIR)"; then \
+-	          echo "  (check DESTDIR support)"; \
+-	        fi ; \
+-	        $(distuninstallcheck_listfiles) ; \
+-	        exit 1; } >&2
+-distcleancheck: distclean
+-	@if test '$(srcdir)' = . ; then \
+-	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
+-	  exit 1 ; \
+-	fi
+-	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
+-	  || { echo "ERROR: files left in build directory after distclean:" ; \
+-	       $(distcleancheck_listfiles) ; \
+-	       exit 1; } >&2
+-check-am: all-am
+-check: check-recursive
+-all-am: Makefile config.h interface.h
+-installdirs: installdirs-recursive
+-installdirs-am:
+-
+-install: install-recursive
+-install-exec: install-exec-recursive
+-install-data: install-data-recursive
+-uninstall: uninstall-recursive
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-recursive
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-recursive
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-recursive
+-	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
+-distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
+-
+-dvi: dvi-recursive
+-
+-dvi-am:
+-
+-info: info-recursive
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-recursive
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-recursive
+-	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
+-	-rm -rf $(top_srcdir)/autom4te.cache
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-recursive
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-recursive
+-
+-pdf-am:
+-
+-ps: ps-recursive
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-uninstall-info: uninstall-info-recursive
+-
+-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
+-	clean-generic clean-recursive ctags ctags-recursive dist \
+-	dist-all dist-bzip2 dist-gzip distcheck distclean \
+-	distclean-generic distclean-hdr distclean-recursive \
+-	distclean-tags distcleancheck distdir distuninstallcheck dvi \
+-	dvi-am dvi-recursive info info-am info-recursive install \
+-	install-am install-data install-data-am install-data-recursive \
+-	install-exec install-exec-am install-exec-recursive \
+-	install-info install-info-am install-info-recursive install-man \
+-	install-recursive install-strip installcheck installcheck-am \
+-	installdirs installdirs-am installdirs-recursive \
+-	maintainer-clean maintainer-clean-generic \
+-	maintainer-clean-recursive mostlyclean mostlyclean-generic \
+-	mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \
+-	ps-recursive tags tags-recursive uninstall uninstall-am \
+-	uninstall-info-am uninstall-info-recursive uninstall-recursive
+-
+-
+-dynamics:
+-	cd interface; $(MAKE) $@
+-
+-install.man install.manj:
+-	cd doc; $(MAKE) $@
+-
+-install.tk:
+-	cd interface; $(MAKE) $@
+-
+-install.el:
+-	cd interface; $(MAKE) $@
+-
+-install.bin:
+-	cd timidity; $(MAKE) install
+-
+-tools:: tools-targets
+-	cd $(TOOLSDIR); $(MAKE)
+-
+-tools-targets: $(TOOLSDIR)/Makefile
+-
+-install.tools:
+-	cd $(TOOLSDIR); $(MAKE) install
+-
+-$(TOOLSDIR)/Makefile: $(TOOLSDIR)/Makefile.in config.status
+-	CONFIG_HEADERS='' CONFIG_FILES=$(TOOLSDIR)/Makefile $(SHELL) ./config.status
+-
+-#$(TOOLSDIR)/Makefile.in: $(TOOLSDIR)/Makefile.am
+-#	$(AUTOMAKE) --gnu $(TOOLSDIR)/Makefile
+-
+-ump: ump-targets
+-	cd $(UMPDIR); $(MAKE) ump
+-
+-ump-targets: $(UMPDIR)/Makefile
+-
+-$(UMPDIR)/Makefile: $(UMPDIR)/Makefile.in config.status
+-	CONFIG_HEADERS='' CONFIG_FILES=ump/Makefile $(SHELL) ./config.status
+-
+-#$(UMPDIR)/Makefile.in: $(UMPDIR)/Makefile.am
+-#	$(AUTOMAKE) --gnu $(UMPSDIR)/Makefile
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/aclocal.m4 b/aclocal.m4
+deleted file mode 100644
+index 8407716..0000000
+--- a/aclocal.m4
++++ /dev/null
+@@ -1,2526 +0,0 @@
+-# generated automatically by aclocal 1.7.6 -*- Autoconf -*-
+-
+-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
+-# Free Software Foundation, Inc.
+-# This file is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+-# Do all the work for Automake.                            -*- Autoconf -*-
+-
+-# This macro actually does too much some checks are only needed if
+-# your package does certain things.  But this isn't really a big deal.
+-
+-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 10
+-
+-AC_PREREQ([2.54])
+-
+-# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow
+-# the ones we care about.
+-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
+-
+-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
+-# AM_INIT_AUTOMAKE([OPTIONS])
+-# -----------------------------------------------
+-# The call with PACKAGE and VERSION arguments is the old style
+-# call (pre autoconf-2.50), which is being phased out.  PACKAGE
+-# and VERSION should now be passed to AC_INIT and removed from
+-# the call to AM_INIT_AUTOMAKE.
+-# We support both call styles for the transition.  After
+-# the next Automake release, Autoconf can make the AC_INIT
+-# arguments mandatory, and then we can depend on a new Autoconf
+-# release and drop the old call support.
+-AC_DEFUN([AM_INIT_AUTOMAKE],
+-[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
+- AC_REQUIRE([AC_PROG_INSTALL])dnl
+-# test to see if srcdir already configured
+-if test "`cd $srcdir && pwd`" != "`pwd`" &&
+-   test -f $srcdir/config.status; then
+-  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
+-fi
+-
+-# test whether we have cygpath
+-if test -z "$CYGPATH_W"; then
+-  if (cygpath --version) >/dev/null 2>/dev/null; then
+-    CYGPATH_W='cygpath -w'
+-  else
+-    CYGPATH_W=echo
+-  fi
+-fi
+-AC_SUBST([CYGPATH_W])
+-
+-# Define the identity of the package.
+-dnl Distinguish between old-style and new-style calls.
+-m4_ifval([$2],
+-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
+- AC_SUBST([PACKAGE], [$1])dnl
+- AC_SUBST([VERSION], [$2])],
+-[_AM_SET_OPTIONS([$1])dnl
+- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
+- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
+-
+-_AM_IF_OPTION([no-define],,
+-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
+- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
+-
+-# Some tools Automake needs.
+-AC_REQUIRE([AM_SANITY_CHECK])dnl
+-AC_REQUIRE([AC_ARG_PROGRAM])dnl
+-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
+-AM_MISSING_PROG(AUTOCONF, autoconf)
+-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
+-AM_MISSING_PROG(AUTOHEADER, autoheader)
+-AM_MISSING_PROG(MAKEINFO, makeinfo)
+-AM_MISSING_PROG(AMTAR, tar)
+-AM_PROG_INSTALL_SH
+-AM_PROG_INSTALL_STRIP
+-# We need awk for the "check" target.  The system "awk" is bad on
+-# some platforms.
+-AC_REQUIRE([AC_PROG_AWK])dnl
+-AC_REQUIRE([AC_PROG_MAKE_SET])dnl
+-AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+-
+-_AM_IF_OPTION([no-dependencies],,
+-[AC_PROVIDE_IFELSE([AC_PROG_CC],
+-                  [_AM_DEPENDENCIES(CC)],
+-                  [define([AC_PROG_CC],
+-                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
+-AC_PROVIDE_IFELSE([AC_PROG_CXX],
+-                  [_AM_DEPENDENCIES(CXX)],
+-                  [define([AC_PROG_CXX],
+-                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
+-])
+-])
+-
+-
+-# When config.status generates a header, we must update the stamp-h file.
+-# This file resides in the same directory as the config header
+-# that is generated.  The stamp files are numbered to have different names.
+-
+-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
+-# loop where config.status creates the headers, so we can generate
+-# our stamp files there.
+-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
+-[# Compute $1's index in $config_headers.
+-_am_stamp_count=1
+-for _am_header in $config_headers :; do
+-  case $_am_header in
+-    $1 | $1:* )
+-      break ;;
+-    * )
+-      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+-  esac
+-done
+-echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
+-
+-# Copyright 2002  Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-
+-# AM_AUTOMAKE_VERSION(VERSION)
+-# ----------------------------
+-# Automake X.Y traces this macro to ensure aclocal.m4 has been
+-# generated from the m4 files accompanying Automake X.Y.
+-AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"])
+-
+-# AM_SET_CURRENT_AUTOMAKE_VERSION
+-# -------------------------------
+-# Call AM_AUTOMAKE_VERSION so it can be traced.
+-# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
+-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
+-	 [AM_AUTOMAKE_VERSION([1.7.6])])
+-
+-# Helper functions for option handling.                    -*- Autoconf -*-
+-
+-# Copyright 2001, 2002  Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 2
+-
+-# _AM_MANGLE_OPTION(NAME)
+-# -----------------------
+-AC_DEFUN([_AM_MANGLE_OPTION],
+-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
+-
+-# _AM_SET_OPTION(NAME)
+-# ------------------------------
+-# Set option NAME.  Presently that only means defining a flag for this option.
+-AC_DEFUN([_AM_SET_OPTION],
+-[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
+-
+-# _AM_SET_OPTIONS(OPTIONS)
+-# ----------------------------------
+-# OPTIONS is a space-separated list of Automake options.
+-AC_DEFUN([_AM_SET_OPTIONS],
+-[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+-
+-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
+-# -------------------------------------------
+-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
+-AC_DEFUN([_AM_IF_OPTION],
+-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+-
+-#
+-# Check to make sure that the build environment is sane.
+-#
+-
+-# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 3
+-
+-# AM_SANITY_CHECK
+-# ---------------
+-AC_DEFUN([AM_SANITY_CHECK],
+-[AC_MSG_CHECKING([whether build environment is sane])
+-# Just in case
+-sleep 1
+-echo timestamp > conftest.file
+-# Do `set' in a subshell so we don't clobber the current shell's
+-# arguments.  Must try -L first in case configure is actually a
+-# symlink; some systems play weird games with the mod time of symlinks
+-# (eg FreeBSD returns the mod time of the symlink's containing
+-# directory).
+-if (
+-   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
+-   if test "$[*]" = "X"; then
+-      # -L didn't work.
+-      set X `ls -t $srcdir/configure conftest.file`
+-   fi
+-   rm -f conftest.file
+-   if test "$[*]" != "X $srcdir/configure conftest.file" \
+-      && test "$[*]" != "X conftest.file $srcdir/configure"; then
+-
+-      # If neither matched, then we have a broken ls.  This can happen
+-      # if, for instance, CONFIG_SHELL is bash and it inherits a
+-      # broken ls alias from the environment.  This has actually
+-      # happened.  Such a system could not be considered "sane".
+-      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
+-alias in your environment])
+-   fi
+-
+-   test "$[2]" = conftest.file
+-   )
+-then
+-   # Ok.
+-   :
+-else
+-   AC_MSG_ERROR([newly created file is older than distributed files!
+-Check your system clock])
+-fi
+-AC_MSG_RESULT(yes)])
+-
+-#  -*- Autoconf -*-
+-
+-
+-# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 3
+-
+-# AM_MISSING_PROG(NAME, PROGRAM)
+-# ------------------------------
+-AC_DEFUN([AM_MISSING_PROG],
+-[AC_REQUIRE([AM_MISSING_HAS_RUN])
+-$1=${$1-"${am_missing_run}$2"}
+-AC_SUBST($1)])
+-
+-
+-# AM_MISSING_HAS_RUN
+-# ------------------
+-# Define MISSING if not defined so far and test if it supports --run.
+-# If it does, set am_missing_run to use it, otherwise, to nothing.
+-AC_DEFUN([AM_MISSING_HAS_RUN],
+-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
+-# Use eval to expand $SHELL
+-if eval "$MISSING --run true"; then
+-  am_missing_run="$MISSING --run "
+-else
+-  am_missing_run=
+-  AC_MSG_WARN([`missing' script is too old or missing])
+-fi
+-])
+-
+-# AM_AUX_DIR_EXPAND
+-
+-# Copyright 2001 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
+-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
+-# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
+-#
+-# Of course, Automake must honor this variable whenever it calls a
+-# tool from the auxiliary directory.  The problem is that $srcdir (and
+-# therefore $ac_aux_dir as well) can be either absolute or relative,
+-# depending on how configure is run.  This is pretty annoying, since
+-# it makes $ac_aux_dir quite unusable in subdirectories: in the top
+-# source directory, any form will work fine, but in subdirectories a
+-# relative path needs to be adjusted first.
+-#
+-# $ac_aux_dir/missing
+-#    fails when called from a subdirectory if $ac_aux_dir is relative
+-# $top_srcdir/$ac_aux_dir/missing
+-#    fails if $ac_aux_dir is absolute,
+-#    fails when called from a subdirectory in a VPATH build with
+-#          a relative $ac_aux_dir
+-#
+-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
+-# are both prefixed by $srcdir.  In an in-source build this is usually
+-# harmless because $srcdir is `.', but things will broke when you
+-# start a VPATH build or use an absolute $srcdir.
+-#
+-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
+-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
+-#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
+-# and then we would define $MISSING as
+-#   MISSING="\${SHELL} $am_aux_dir/missing"
+-# This will work as long as MISSING is not called from configure, because
+-# unfortunately $(top_srcdir) has no meaning in configure.
+-# However there are other variables, like CC, which are often used in
+-# configure, and could therefore not use this "fixed" $ac_aux_dir.
+-#
+-# Another solution, used here, is to always expand $ac_aux_dir to an
+-# absolute PATH.  The drawback is that using absolute paths prevent a
+-# configured tree to be moved without reconfiguration.
+-
+-# Rely on autoconf to set up CDPATH properly.
+-AC_PREREQ([2.50])
+-
+-AC_DEFUN([AM_AUX_DIR_EXPAND], [
+-# expand $ac_aux_dir to an absolute path
+-am_aux_dir=`cd $ac_aux_dir && pwd`
+-])
+-
+-# AM_PROG_INSTALL_SH
+-# ------------------
+-# Define $install_sh.
+-
+-# Copyright 2001 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-AC_DEFUN([AM_PROG_INSTALL_SH],
+-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+-install_sh=${install_sh-"$am_aux_dir/install-sh"}
+-AC_SUBST(install_sh)])
+-
+-# AM_PROG_INSTALL_STRIP
+-
+-# Copyright 2001 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# One issue with vendor `install' (even GNU) is that you can't
+-# specify the program used to strip binaries.  This is especially
+-# annoying in cross-compiling environments, where the build's strip
+-# is unlikely to handle the host's binaries.
+-# Fortunately install-sh will honor a STRIPPROG variable, so we
+-# always use install-sh in `make install-strip', and initialize
+-# STRIPPROG with the value of the STRIP variable (set by the user).
+-AC_DEFUN([AM_PROG_INSTALL_STRIP],
+-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+-# Installed binaries are usually stripped using `strip' when the user
+-# run `make install-strip'.  However `strip' might not be the right
+-# tool to use in cross-compilation environments, therefore Automake
+-# will honor the `STRIP' environment variable to overrule this program.
+-dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
+-if test "$cross_compiling" != no; then
+-  AC_CHECK_TOOL([STRIP], [strip], :)
+-fi
+-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
+-AC_SUBST([INSTALL_STRIP_PROGRAM])])
+-
+-#                                                          -*- Autoconf -*-
+-# Copyright (C) 2003  Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 1
+-
+-# Check whether the underlying file-system supports filenames
+-# with a leading dot.  For instance MS-DOS doesn't.
+-AC_DEFUN([AM_SET_LEADING_DOT],
+-[rm -rf .tst 2>/dev/null
+-mkdir .tst 2>/dev/null
+-if test -d .tst; then
+-  am__leading_dot=.
+-else
+-  am__leading_dot=_
+-fi
+-rmdir .tst 2>/dev/null
+-AC_SUBST([am__leading_dot])])
+-
+-# serial 5						-*- Autoconf -*-
+-
+-# Copyright (C) 1999, 2000, 2001, 2002, 2003  Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-
+-# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
+-# written in clear, in which case automake, when reading aclocal.m4,
+-# will think it sees a *use*, and therefore will trigger all it's
+-# C support machinery.  Also note that it means that autoscan, seeing
+-# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
+-
+-
+-
+-# _AM_DEPENDENCIES(NAME)
+-# ----------------------
+-# See how the compiler implements dependency checking.
+-# NAME is "CC", "CXX", "GCJ", or "OBJC".
+-# We try a few techniques and use that to set a single cache variable.
+-#
+-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
+-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
+-# dependency, and given that the user is not expected to run this macro,
+-# just rely on AC_PROG_CC.
+-AC_DEFUN([_AM_DEPENDENCIES],
+-[AC_REQUIRE([AM_SET_DEPDIR])dnl
+-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
+-AC_REQUIRE([AM_MAKE_INCLUDE])dnl
+-AC_REQUIRE([AM_DEP_TRACK])dnl
+-
+-ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
+-       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
+-       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
+-       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
+-                   [depcc="$$1"   am_compiler_list=])
+-
+-AC_CACHE_CHECK([dependency style of $depcc],
+-               [am_cv_$1_dependencies_compiler_type],
+-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+-  # We make a subdir and do the tests there.  Otherwise we can end up
+-  # making bogus files that we don't know about and never remove.  For
+-  # instance it was reported that on HP-UX the gcc test will end up
+-  # making a dummy file named `D' -- because `-MD' means `put the output
+-  # in D'.
+-  mkdir conftest.dir
+-  # Copy depcomp to subdir because otherwise we won't find it if we're
+-  # using a relative directory.
+-  cp "$am_depcomp" conftest.dir
+-  cd conftest.dir
+-  # We will build objects and dependencies in a subdirectory because
+-  # it helps to detect inapplicable dependency modes.  For instance
+-  # both Tru64's cc and ICC support -MD to output dependencies as a
+-  # side effect of compilation, but ICC will put the dependencies in
+-  # the current directory while Tru64 will put them in the object
+-  # directory.
+-  mkdir sub
+-
+-  am_cv_$1_dependencies_compiler_type=none
+-  if test "$am_compiler_list" = ""; then
+-     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
+-  fi
+-  for depmode in $am_compiler_list; do
+-    # Setup a source with many dependencies, because some compilers
+-    # like to wrap large dependency lists on column 80 (with \), and
+-    # we should not choose a depcomp mode which is confused by this.
+-    #
+-    # We need to recreate these files for each test, as the compiler may
+-    # overwrite some of them when testing with obscure command lines.
+-    # This happens at least with the AIX C compiler.
+-    : > sub/conftest.c
+-    for i in 1 2 3 4 5 6; do
+-      echo '#include "conftst'$i'.h"' >> sub/conftest.c
+-      : > sub/conftst$i.h
+-    done
+-    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+-
+-    case $depmode in
+-    nosideeffect)
+-      # after this tag, mechanisms are not by side-effect, so they'll
+-      # only be used when explicitly requested
+-      if test "x$enable_dependency_tracking" = xyes; then
+-	continue
+-      else
+-	break
+-      fi
+-      ;;
+-    none) break ;;
+-    esac
+-    # We check with `-c' and `-o' for the sake of the "dashmstdout"
+-    # mode.  It turns out that the SunPro C++ compiler does not properly
+-    # handle `-M -o', and we need to detect this.
+-    if depmode=$depmode \
+-       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
+-       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
+-       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
+-         >/dev/null 2>conftest.err &&
+-       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
+-       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
+-       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
+-      # icc doesn't choke on unknown options, it will just issue warnings
+-      # (even with -Werror).  So we grep stderr for any message
+-      # that says an option was ignored.
+-      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
+-        am_cv_$1_dependencies_compiler_type=$depmode
+-        break
+-      fi
+-    fi
+-  done
+-
+-  cd ..
+-  rm -rf conftest.dir
+-else
+-  am_cv_$1_dependencies_compiler_type=none
+-fi
+-])
+-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
+-AM_CONDITIONAL([am__fastdep$1], [
+-  test "x$enable_dependency_tracking" != xno \
+-  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
+-])
+-
+-
+-# AM_SET_DEPDIR
+-# -------------
+-# Choose a directory name for dependency files.
+-# This macro is AC_REQUIREd in _AM_DEPENDENCIES
+-AC_DEFUN([AM_SET_DEPDIR],
+-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
+-])
+-
+-
+-# AM_DEP_TRACK
+-# ------------
+-AC_DEFUN([AM_DEP_TRACK],
+-[AC_ARG_ENABLE(dependency-tracking,
+-[  --disable-dependency-tracking Speeds up one-time builds
+-  --enable-dependency-tracking  Do not reject slow dependency extractors])
+-if test "x$enable_dependency_tracking" != xno; then
+-  am_depcomp="$ac_aux_dir/depcomp"
+-  AMDEPBACKSLASH='\'
+-fi
+-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
+-AC_SUBST([AMDEPBACKSLASH])
+-])
+-
+-# Generate code to set up dependency tracking.   -*- Autoconf -*-
+-
+-# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-#serial 2
+-
+-# _AM_OUTPUT_DEPENDENCY_COMMANDS
+-# ------------------------------
+-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
+-[for mf in $CONFIG_FILES; do
+-  # Strip MF so we end up with the name of the file.
+-  mf=`echo "$mf" | sed -e 's/:.*$//'`
+-  # Check whether this is an Automake generated Makefile or not.
+-  # We used to match only the files named `Makefile.in', but
+-  # some people rename them; so instead we look at the file content.
+-  # Grep'ing the first line is not enough: some people post-process
+-  # each Makefile.in and add a new line on top of each file to say so.
+-  # So let's grep whole file.
+-  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
+-    dirpart=`AS_DIRNAME("$mf")`
+-  else
+-    continue
+-  fi
+-  grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue
+-  # Extract the definition of DEP_FILES from the Makefile without
+-  # running `make'.
+-  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
+-  test -z "$DEPDIR" && continue
+-  # When using ansi2knr, U may be empty or an underscore; expand it
+-  U=`sed -n -e '/^U = / s///p' < "$mf"`
+-  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
+-  # We invoke sed twice because it is the simplest approach to
+-  # changing $(DEPDIR) to its actual value in the expansion.
+-  for file in `sed -n -e '
+-    /^DEP_FILES = .*\\\\$/ {
+-      s/^DEP_FILES = //
+-      :loop
+-	s/\\\\$//
+-	p
+-	n
+-	/\\\\$/ b loop
+-      p
+-    }
+-    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
+-       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
+-    # Make sure the directory exists.
+-    test -f "$dirpart/$file" && continue
+-    fdir=`AS_DIRNAME(["$file"])`
+-    AS_MKDIR_P([$dirpart/$fdir])
+-    # echo "creating $dirpart/$file"
+-    echo '# dummy' > "$dirpart/$file"
+-  done
+-done
+-])# _AM_OUTPUT_DEPENDENCY_COMMANDS
+-
+-
+-# AM_OUTPUT_DEPENDENCY_COMMANDS
+-# -----------------------------
+-# This macro should only be invoked once -- use via AC_REQUIRE.
+-#
+-# This code is only required when automatic dependency tracking
+-# is enabled.  FIXME.  This creates each `.P' file that we will
+-# need in order to bootstrap the dependency handling code.
+-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
+-[AC_CONFIG_COMMANDS([depfiles],
+-     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
+-     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
+-])
+-
+-# Check to see how 'make' treats includes.	-*- Autoconf -*-
+-
+-# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 2
+-
+-# AM_MAKE_INCLUDE()
+-# -----------------
+-# Check to see how make treats includes.
+-AC_DEFUN([AM_MAKE_INCLUDE],
+-[am_make=${MAKE-make}
+-cat > confinc << 'END'
+-am__doit:
+-	@echo done
+-.PHONY: am__doit
+-END
+-# If we don't find an include directive, just comment out the code.
+-AC_MSG_CHECKING([for style of include used by $am_make])
+-am__include="#"
+-am__quote=
+-_am_result=none
+-# First try GNU make style include.
+-echo "include confinc" > confmf
+-# We grep out `Entering directory' and `Leaving directory'
+-# messages which can occur if `w' ends up in MAKEFLAGS.
+-# In particular we don't look at `^make:' because GNU make might
+-# be invoked under some other name (usually "gmake"), in which
+-# case it prints its new name instead of `make'.
+-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
+-   am__include=include
+-   am__quote=
+-   _am_result=GNU
+-fi
+-# Now try BSD make style include.
+-if test "$am__include" = "#"; then
+-   echo '.include "confinc"' > confmf
+-   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
+-      am__include=.include
+-      am__quote="\""
+-      _am_result=BSD
+-   fi
+-fi
+-AC_SUBST([am__include])
+-AC_SUBST([am__quote])
+-AC_MSG_RESULT([$_am_result])
+-rm -f confinc confmf
+-])
+-
+-# AM_CONDITIONAL                                              -*- Autoconf -*-
+-
+-# Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 5
+-
+-AC_PREREQ(2.52)
+-
+-# AM_CONDITIONAL(NAME, SHELL-CONDITION)
+-# -------------------------------------
+-# Define a conditional.
+-AC_DEFUN([AM_CONDITIONAL],
+-[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
+-        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
+-AC_SUBST([$1_TRUE])
+-AC_SUBST([$1_FALSE])
+-if $2; then
+-  $1_TRUE=
+-  $1_FALSE='#'
+-else
+-  $1_TRUE='#'
+-  $1_FALSE=
+-fi
+-AC_CONFIG_COMMANDS_PRE(
+-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
+-  AC_MSG_ERROR([conditional "$1" was never defined.
+-Usually this means the macro was only invoked conditionally.])
+-fi])])
+-
+-# Add --enable-maintainer-mode option to configure.
+-# From Jim Meyering
+-
+-# Copyright 1996, 1998, 2000, 2001, 2002  Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 2
+-
+-AC_DEFUN([AM_MAINTAINER_MODE],
+-[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
+-  dnl maintainer-mode is disabled by default
+-  AC_ARG_ENABLE(maintainer-mode,
+-[  --enable-maintainer-mode enable make rules and dependencies not useful
+-                          (and sometimes confusing) to the casual installer],
+-      USE_MAINTAINER_MODE=$enableval,
+-      USE_MAINTAINER_MODE=no)
+-  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
+-  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
+-  MAINT=$MAINTAINER_MODE_TRUE
+-  AC_SUBST(MAINT)dnl
+-]
+-)
+-
+-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
+-
+-dnl TiMidity++ -- MIDI to WAVE converter and player
+-dnl Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-dnl Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-dnl 
+-dnl This program is free software; you can redistribute it and/or modify
+-dnl it under the terms of the GNU General Public License as published by
+-dnl the Free Software Foundation; either version 2 of the License, or
+-dnl (at your option) any later version.
+-dnl 
+-dnl This program is distributed in the hope that it will be useful,
+-dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
+-dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-dnl GNU General Public License for more details.
+-dnl 
+-dnl You should have received a copy of the GNU General Public License
+-dnl along with this program; if not, write to the Free Software
+-dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+-
+-dnl MY_DEFINE(VARIABLE)
+-AC_DEFUN([MY_DEFINE],
+-[cat >> confdefs.h <<EOF
+-[#define] $1 1
+-EOF
+-])
+-
+-dnl CONFIG_INTERFACE(package,macro_name,interface_id,help
+-dnl                  $1      $2         $3           $4
+-dnl                  action-if-yes-or-dynamic,
+-dnl		     $5
+-dnl		     action-if-yes,action-if-dynamic,action-if-no)
+-dnl		     $6            $7                $8
+-AC_DEFUN([CONFIG_INTERFACE],
+-[AC_ARG_ENABLE($1,[$4],
+-[case "x$enable_$1" in xyes|xdynamic) $5 ;; esac])
+-case "x$enable_$1" in
+-xyes)
+-  MY_DEFINE(IA_$2)
+-  AM_CONDITIONAL(ENABLE_$2, true)
+-  $6
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_$1.\$(so)"
+-  $7
+-  ;;
+-*)
+-  $8
+-  ;;
+-esac
+-AC_SUBST($3_so_libs)
+-])
+-
+-dnl CHECK_DLSYM_UNDERSCORE([ACTION-IF-NEED [, ACTION IF-NOT-NEED]])
+-dnl variable input:
+-dnl   CC CFLAGS CPPFLAGS LDFLAGS LIBS SHCFLAGS SHLD SHLDFLAGS
+-dnl   ac_cv_header_dlfcn_h lib_dl_opt so
+-AC_DEFUN([CHECK_DLSYM_UNDERSCORE],
+-[dnl Check if dlsym need a leading underscore
+-AC_MSG_CHECKING(whether your dlsym() needs a leading underscore)
+-AC_CACHE_VAL(timidity_cv_func_dlsym_underscore,
+-[case "$ac_cv_header_dlfcn_h" in
+-yes) i_dlfcn=define;;
+-*)   i_dlfcn=undef;;
+-esac
+-cat > dyna.c <<EOM
+-fred () { }
+-EOM
+-
+-cat > fred.c <<EOM
+-#include <stdio.h>
+-#$i_dlfcn I_DLFCN
+-#ifdef I_DLFCN
+-#include <dlfcn.h>      /* the dynamic linker include file for Sunos/Solaris */
+-#else
+-#include <sys/types.h>
+-#include <nlist.h>
+-#include <link.h>
+-#endif
+-
+-extern int fred() ;
+-
+-main()
+-{
+-    void * handle ;
+-    void * symbol ;
+-#ifndef RTLD_LAZY
+-    int mode = 1 ;
+-#else
+-    int mode = RTLD_LAZY ;
+-#endif
+-    handle = dlopen("./dyna.$so", mode) ;
+-    if (handle == NULL) {
+-	printf ("1\n") ;
+-	fflush (stdout) ;
+-	exit(0);
+-    }
+-    symbol = dlsym(handle, "fred") ;
+-    if (symbol == NULL) {
+-	/* try putting a leading underscore */
+-	symbol = dlsym(handle, "_fred") ;
+-	if (symbol == NULL) {
+-	    printf ("2\n") ;
+-	    fflush (stdout) ;
+-	    exit(0);
+-	}
+-	printf ("3\n") ;
+-    }
+-    else
+-	printf ("4\n") ;
+-    fflush (stdout) ;
+-    exit(0);
+-}
+-EOM
+-: Call the object file tmp-dyna.o in case dlext=o.
+-if ${CC-cc} $CFLAGS $SHCFLAGS $CPPFLAGS -c dyna.c > /dev/null 2>&1 &&
+-	mv dyna.o tmp-dyna.o > /dev/null 2>&1 &&
+-	$SHLD $SHLDFLAGS -o dyna.$so tmp-dyna.o > /dev/null 2>&1 &&
+-	${CC-cc} -o fred $CFLAGS $CPPFLAGS $LDFLAGS fred.c $LIBS $lib_dl_opt > /dev/null 2>&1; then
+-	xxx=`./fred`
+-	case $xxx in
+-	1)	AC_MSG_WARN(Test program failed using dlopen.  Perhaps you should not use dynamic loading.)
+-		;;
+-	2)	AC_MSG_WARN(Test program failed using dlsym.  Perhaps you should not use dynamic loading.)
+-		;;
+-	3)	timidity_cv_func_dlsym_underscore=yes
+-		;;
+-	4)	timidity_cv_func_dlsym_underscore=no
+-		;;
+-	esac
+-else
+-	AC_MSG_WARN(I can't compile and run the test program.)
+-fi
+-rm -f dyna.c dyna.o dyna.$so tmp-dyna.o fred.c fred.o fred
+-])
+-case "x$timidity_cv_func_dlsym_underscore" in
+-xyes)	[$1]
+-	AC_MSG_RESULT(yes)
+-	;;
+-xno)	[$2]
+-	AC_MSG_RESULT(no)
+-	;;
+-esac
+-])
+-
+-
+-dnl contains program from perl5
+-dnl CONTAINS_INIT()
+-AC_DEFUN([CONTAINS_INIT],
+-[dnl Some greps do not return status, grrr.
+-AC_MSG_CHECKING(whether grep returns status)
+-echo "grimblepritz" >grimble
+-if grep blurfldyick grimble >/dev/null 2>&1 ; then
+-	contains="./contains"
+-elif grep grimblepritz grimble >/dev/null 2>&1 ; then
+-	contains=grep
+-else
+-	contains="./contains"
+-fi
+-rm -f grimble
+-dnl the following should work in any shell
+-case "$contains" in
+-grep)	AC_MSG_RESULT(yes)
+-	;;
+-./contains)
+-	AC_MSG_RESULT(AGH!  Grep doesn't return a status.  Attempting remedial action.)
+-	cat >./contains <<'EOSS'
+-grep "[$]1" "[$]2" >.greptmp && cat .greptmp && test -s .greptmp
+-EOSS
+-	chmod +x "./contains"
+-	;;
+-esac
+-])
+-
+-dnl CONTAINS(word,filename,action-if-found,action-if-not-found)
+-AC_DEFUN([CONTAINS],
+-[if $contains "^[$1]"'[$]' $2 >/dev/null 2>&1; then
+-  [$3]
+-else
+-  [$4]
+-fi
+-])
+-
+-dnl SET_UNIQ_WORDS(shell-variable,words...)
+-AC_DEFUN([SET_UNIQ_WORDS],
+-[rm -f wordtmp >/dev/null 2>&1
+-val=''
+-for f in $2; do
+-  CONTAINS([$f],wordtmp,:,[echo $f >>wordtmp; val="$val $f"])
+-done
+-$1="$val"
+-rm -f wordtmp >/dev/null 2>&1
+-])
+-
+-
+-dnl WAPI_CHECK_FUNC(FUNCTION, INCLUDES, TEST-BODY,
+-		    [ACTION-FI-FOUND [, ACTION-IF-NOT-FOUND]])
+-AC_DEFUN([WAPI_CHECK_FUNC],
+-[AC_MSG_CHECKING(for $1)
+-AC_CACHE_VAL(wapi_cv_func_$1,
+-[AC_TRY_LINK([#include <windows.h>
+-$2
+-], [$3],
+-wapi_cv_func_$1=yes, wapi_cv_func_$1=no)])
+-if eval "test \"`echo '$wapi_cv_func_'$1`\" = yes"; then
+-  AC_MSG_RESULT(yes)
+-  ifelse([$4], , :, [$4])
+-else
+-  AC_MSG_RESULT(no)
+-ifelse([$5], , , [$5
+-])dnl
+-fi
+-])
+-
+-dnl WAPI_CHECK_LIB(LIBRARY, FUNCTION,
+-dnl		INCLUDES, TEST-BODY
+-dnl		[, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND
+-dnl		[, OTHER-LIBRARIES]]])
+-AC_DEFUN([WAPI_CHECK_LIB],
+-[AC_MSG_CHECKING([for $2 in -l$1])
+-ac_lib_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
+-AC_CACHE_VAL(wapi_cv_lib_$ac_lib_var,
+-[ac_save_LIBS="$LIBS"
+-LIBS="-l$1 $7 $LIBS"
+-AC_TRY_LINK([#include <windows.h>
+-$3
+-], [$4],
+-eval "wapi_cv_lib_$ac_lib_var=yes",
+-eval "wapi_cv_lib_$ac_lib_var=no")
+-LIBS="$ac_save_LIBS"
+-])dnl
+-if eval "test \"`echo '$wapi_cv_lib_'$ac_lib_var`\" = yes"; then
+-  AC_MSG_RESULT(yes)
+-  ifelse([$5], ,LIBS="-l$1 $LIBS", [$5])
+-else
+-  AC_MSG_RESULT(no)
+-ifelse([$6], , , [$6
+-])dnl
+-fi
+-])
+-
+-dnl EXTRACT_CPPFLAGS(CPPFLAGS-to-append,others-to-append,FLAGS)
+-AC_DEFUN([EXTRACT_CPPFLAGS],
+-[for f in $3; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	$1="[$]$1 $f" ;;
+-	*)		$2="[$]$2 $f" ;;
+-    esac
+-done
+-])
+-
+-
+-dnl CHECK_COMPILER_OPTION(OPTIONS [, ACTION-IF-SUCCEED [, ACTION-IF-FAILED]])
+-AC_DEFUN([CHECK_COMPILER_OPTION],
+-[AC_MSG_CHECKING([whether -$1 option is recognized])
+-ac_ccoption=`echo $1 | sed 'y%./+-%__p_%'`
+-AC_CACHE_VAL(timidity_cv_ccoption_$ac_ccoption,
+-[cat > conftest.$ac_ext <<EOF
+-int main() {return 0;}
+-EOF
+-if ${CC-cc} $LDFLAGS $CFLAGS -o conftest${ac_exeext} -$1 conftest.$ac_ext > conftest.out 2>&1; then
+-    if test -s conftest.out; then
+-	eval "timidity_cv_ccoption_$ac_ccoption=no"
+-    else
+-	eval "timidity_cv_ccoption_$ac_ccoption=yes"
+-    fi
+-else
+-    eval "timidity_cv_ccoption_$ac_ccoption=no"
+-fi
+-])
+-if eval "test \"`echo '$timidity_cv_ccoption_'$ac_ccoption`\" = yes"; then
+-  AC_MSG_RESULT(yes)
+-  ifelse([$2], , , [$2
+-])
+-else
+-  AC_MSG_RESULT(no)
+-ifelse([$3], , , [$3
+-])
+-fi
+-])
+-
+-
+-dnl MY_SEARCH_LIBS(FUNCTION, LIBRARIES [, ACTION-IF-FOUND
+-dnl            [, ACTION-IF-NOT-FOUND [, OTHER-LIBRARIES]]])
+-dnl Search for a library defining FUNC, if it's not already available.
+-
+-AC_DEFUN([MY_SEARCH_LIBS],
+-[AC_CACHE_CHECK([for library containing $1], [timidity_cv_search_$1],
+-[ac_func_search_save_LIBS="$LIBS"
+-timidity_cv_search_$1="no"
+-for i in $2; do
+-  LIBS="$i $5 $ac_func_search_save_LIBS"
+-  AC_TRY_LINK_FUNC([$1], [timidity_cv_search_$1="$i"; break])
+-done
+-LIBS="$ac_func_search_save_LIBS"])
+-if test "$timidity_cv_search_$1" != "no"; then
+-  $3
+-else :
+-  $4
+-fi])
+-
+-
+-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-#   Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# serial 7
+-
+-# AM_PATH_LISPDIR
+-# ---------------
+-AC_DEFUN([AM_PATH_LISPDIR],
+-[AC_ARG_WITH(lispdir,
+- [  --with-lispdir          Override the default lisp directory ],
+- [ lispdir="$withval"
+-   AC_MSG_CHECKING([where .elc files should go])
+-   AC_MSG_RESULT([$lispdir])],
+- [
+- # If set to t, that means we are running in a shell under Emacs.
+- # If you have an Emacs named "t", then use the full path.
+- test x"$EMACS" = xt && EMACS=
+- AC_CHECK_PROGS(EMACS, emacs xemacs, no)
+- if test $EMACS != "no"; then
+-   if test x${lispdir+set} != xset; then
+-     AC_CACHE_CHECK([where .elc files should go], [am_cv_lispdir],
+-       [# If $EMACS isn't GNU Emacs or XEmacs, this can blow up pretty badly
+-  # Some emacsen will start up in interactive mode, requiring C-x C-c to exit,
+-  #  which is non-obvious for non-emacs users.
+-  # Redirecting /dev/null should help a bit; pity we can't detect "broken"
+-  #  emacsen earlier and avoid running this altogether.
+-  AC_RUN_LOG([$EMACS -batch -q -eval '(while load-path (princ (concat (car load-path) "\n")) (setq load-path (cdr load-path)))' </dev/null >conftest.out])
+-        am_cv_lispdir=`sed -n \
+-       -e 's,/$,,' \
+-       -e '/.*\/lib\/x\?emacs\/site-lisp$/{s,.*/lib/\(x\?emacs/site-lisp\)$,${libdir}/\1,;p;q;}' \
+-       -e '/.*\/share\/x\?emacs\/site-lisp$/{s,.*/share/\(x\?emacs/site-lisp\),${datadir}/\1,;p;q;}' \
+-       conftest.out`
+-       rm conftest.out
+-       if test -z "$am_cv_lispdir"; then
+-         am_cv_lispdir='${datadir}/emacs/site-lisp'
+-       fi
+-     ])
+-     lispdir="$am_cv_lispdir"
+-   fi
+- fi
+-])
+-AC_SUBST(lispdir)
+-])# AM_PATH_LISPDIR
+-
+-AU_DEFUN([ud_PATH_LISPDIR], [AM_PATH_LISPDIR])
+-
+-dnl Configure Paths for Alsa
+-dnl Some modifications by Richard Boulton <richard-alsa at tartarus.org>
+-dnl Christopher Lansdown <lansdoct at cs.alfred.edu>
+-dnl Jaroslav Kysela <perex at suse.cz>
+-dnl Modified for TiMidity++ by URABE, Shyouhei <root at mput.dip.jp>
+-dnl Original    : alsa.m4,v 1.22 2002/05/27 11:14:20 tiwai Exp
+-dnl This version: alsa.m4,       2002/10/08 22:30:18 JST
+-dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
+-dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate.
+-dnl enables arguments --with-alsa-prefix=
+-dnl                   --with-alsa-enc-prefix=
+-dnl                   --disable-alsatest  (this has no effect, as yet)
+-dnl
+-dnl For backwards compatibility, if ACTION_IF_NOT_FOUND is not specified,
+-dnl and the alsa libraries are not found, a fatal AC_MSG_ERROR() will result.
+-dnl
+-AC_DEFUN([AM_PATH_ALSA],
+-[dnl Save the original CFLAGS, LDFLAGS, and LIBS
+-alsa_save_CFLAGS="$CFLAGS"
+-alsa_save_LDFLAGS="$LDFLAGS"
+-alsa_save_LIBS="$LIBS"
+-alsa_found=yes
+-
+-dnl
+-dnl Get the cflags and libraries for alsa
+-dnl
+-AC_ARG_WITH(alsa-prefix,
+-[  --with-alsa-prefix=PFX  Prefix where Alsa library is installed(optional)],
+-[alsa_prefix="$withval"], [alsa_prefix=""])
+-
+-AC_ARG_WITH(alsa-inc-prefix,
+-[  --with-alsa-inc-prefix=PFX  Prefix where include libraries are (optional)],
+-[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""])
+-
+-dnl FIXME: this is not yet implemented
+-AC_ARG_ENABLE(alsatest,
+-[  --disable-alsatest      Do not try to compile and run a test Alsa program],
+-[enable_alsatest=no],
+-[enable_alsatest=yes])
+-
+-dnl Add any special include directories
+-AC_MSG_CHECKING(for ALSA CFLAGS)
+-if test "$alsa_inc_prefix" != "" ; then
+-	ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix"
+-	CFLAGS="$CFLAGS -I$alsa_inc_prefix"
+-fi
+-AC_MSG_RESULT($ALSA_CFLAGS)
+-
+-dnl add any special lib dirs
+-AC_MSG_CHECKING(for ALSA LDFLAGS)
+-if test "$alsa_prefix" != "" ; then
+-	ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix"
+-	LDFLAGS="$LDFLAGS $ALSA_LIBS"
+-fi
+-
+-dnl add the alsa library
+-ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread"
+-LIBS=`echo $LIBS | sed 's/-lm//'`
+-LIBS=`echo $LIBS | sed 's/-ldl//'`
+-LIBS=`echo $LIBS | sed 's/-lpthread//'`
+-LIBS=`echo $LIBS | sed 's/  //'`
+-LIBS="$ALSA_LIBS $LIBS"
+-AC_MSG_RESULT($ALSA_LIBS)
+-
+-dnl Check for a working version of libasound that is of the right version.
+-min_alsa_version=ifelse([$1], ,0.1.1,$1)
+-AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version)
+-no_alsa=""
+-    alsa_min_major_version=`echo $min_alsa_version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+-    alsa_min_minor_version=`echo $min_alsa_version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+-    alsa_min_micro_version=`echo $min_alsa_version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+-
+-dnl This is the test program.
+-AC_DEFUN([MPUT_ALSA_TRY],[
+-/* ensure backward compatibility */
+-#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
+-#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
+-#endif
+-#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
+-#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
+-#endif
+-#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
+-#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
+-#endif
+-
+-#  if(SND_LIB_MAJOR > $alsa_min_major_version)
+-  exit(0);
+-#  else
+-#    if(SND_LIB_MAJOR < $alsa_min_major_version)
+-#       error not present
+-#    endif
+-
+-#   if(SND_LIB_MINOR > $alsa_min_minor_version)
+-  exit(0);
+-#   else
+-#     if(SND_LIB_MINOR < $alsa_min_minor_version)
+-#          error not present
+-#      endif
+-
+-#      if(SND_LIB_SUBMINOR < $alsa_min_micro_version)
+-#        error not present
+-#      endif
+-#    endif
+-#  endif
+-exit(0);
+-])dnl macro MPUT_ALSA_TRY
+-
+-AC_LANG_SAVE
+-AC_LANG_C
+-AC_TRY_COMPILE([
+-#include <alsa/asoundlib.h>
+-],
+-  MPUT_ALSA_TRY(),
+-  [AC_MSG_RESULT(found.)],
+-  [AC_TRY_COMPILE([
+-#include <sys/asoundlib.h>
+-], 
+-  MPUT_ALSA_TRY(),
+-  [AC_MSG_RESULT(found.)],
+-  [AC_MSG_RESULT(not present.)
+-   ifelse([$3], ,[AC_MSG_RESULT(libasound was not found anywhere.)])
+-   alsa_found=no])
+-   ifelse([$3], ,[AC_MSG_RESULT(Sufficiently new version of libasound not found.)])
+-])
+-AC_LANG_RESTORE
+-
+-dnl Now that we know we have the right version, why not see if we
+-dnl have the library and not just the headers.
+-AC_CHECK_LIB([asound],[snd_ctl_open], ,
+-  [ifelse([$3], ,[AC_MSG_RESULT(No linkable libasound was found.)])
+-   alsa_found=no
+-])
+-
+-if test "x$alsa_found" = "xyes" ; then
+-   ifelse([$2], , :, [$2])
+-   LIBS=`echo $LIBS | sed 's/-lasound//g'`
+-   LIBS=`echo $LIBS | sed 's/  //'`
+-   LIBS="-lasound $LIBS"
+-else
+-   ifelse([$3], , :, [$3])
+-   CFLAGS="$alsa_save_CFLAGS"
+-   LDFLAGS="$alsa_save_LDFLAGS"
+-   LIBS="$alsa_save_LIBS"
+-   ALSA_CFLAGS=""
+-   ALSA_LIBS=""
+-fi
+-
+-dnl That should be it.  Now just export out symbols:
+-AC_SUBST(ALSA_CFLAGS)
+-AC_SUBST(ALSA_LIBS)
+-])
+-
+-# Configure paths for ESD
+-# Manish Singh    98-9-30
+-# stolen back from Frank Belew
+-# stolen from Manish Singh
+-# Shamelessly stolen from Owen Taylor
+-
+-dnl AM_PATH_ESD([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
+-dnl Test for ESD, and define ESD_CFLAGS and ESD_LIBS
+-dnl
+-AC_DEFUN([AM_PATH_ESD],
+-[dnl 
+-dnl Get the cflags and libraries from the esd-config script
+-dnl
+-AC_ARG_WITH(esd-prefix,[  --with-esd-prefix=PFX   Prefix where ESD is installed (optional)],
+-            esd_prefix="$withval", esd_prefix="")
+-AC_ARG_WITH(esd-exec-prefix,[  --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)],
+-            esd_exec_prefix="$withval", esd_exec_prefix="")
+-AC_ARG_ENABLE(esdtest, [  --disable-esdtest       Do not try to compile and run a test ESD program],
+-		    , enable_esdtest=yes)
+-
+-  if test x$esd_exec_prefix != x ; then
+-     esd_args="$esd_args --exec-prefix=$esd_exec_prefix"
+-     if test x${ESD_CONFIG+set} != xset ; then
+-        ESD_CONFIG=$esd_exec_prefix/bin/esd-config
+-     fi
+-  fi
+-  if test x$esd_prefix != x ; then
+-     esd_args="$esd_args --prefix=$esd_prefix"
+-     if test x${ESD_CONFIG+set} != xset ; then
+-        ESD_CONFIG=$esd_prefix/bin/esd-config
+-     fi
+-  fi
+-
+-  AC_PATH_PROG(ESD_CONFIG, esd-config, no)
+-  min_esd_version=ifelse([$1], ,0.2.7,$1)
+-  AC_MSG_CHECKING(for ESD - version >= $min_esd_version)
+-  no_esd=""
+-  if test "$ESD_CONFIG" = "no" ; then
+-    no_esd=yes
+-  else
+-    AC_LANG_SAVE
+-    AC_LANG_C
+-    ESD_CFLAGS=`$ESD_CONFIG $esdconf_args --cflags`
+-    ESD_LIBS=`$ESD_CONFIG $esdconf_args --libs`
+-
+-    esd_major_version=`$ESD_CONFIG $esd_args --version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+-    esd_minor_version=`$ESD_CONFIG $esd_args --version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+-    esd_micro_version=`$ESD_CONFIG $esd_config_args --version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+-    if test "x$enable_esdtest" = "xyes" ; then
+-      ac_save_CFLAGS="$CFLAGS"
+-      ac_save_LIBS="$LIBS"
+-      CFLAGS="$CFLAGS $ESD_CFLAGS"
+-      LIBS="$LIBS $ESD_LIBS"
+-dnl
+-dnl Now check if the installed ESD is sufficiently new. (Also sanity
+-dnl checks the results of esd-config to some extent
+-dnl
+-      rm -f conf.esdtest
+-      AC_TRY_RUN([
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <esd.h>
+-
+-char*
+-my_strdup (char *str)
+-{
+-  char *new_str;
+-  
+-  if (str)
+-    {
+-      new_str = malloc ((strlen (str) + 1) * sizeof(char));
+-      strcpy (new_str, str);
+-    }
+-  else
+-    new_str = NULL;
+-  
+-  return new_str;
+-}
+-
+-int main ()
+-{
+-  int major, minor, micro;
+-  char *tmp_version;
+-
+-  system ("touch conf.esdtest");
+-
+-  /* HP/UX 9 (%@#!) writes to sscanf strings */
+-  tmp_version = my_strdup("$min_esd_version");
+-  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
+-     printf("%s, bad version string\n", "$min_esd_version");
+-     exit(1);
+-   }
+-
+-   if (($esd_major_version > major) ||
+-      (($esd_major_version == major) && ($esd_minor_version > minor)) ||
+-      (($esd_major_version == major) && ($esd_minor_version == minor) && ($esd_micro_version >= micro)))
+-    {
+-      return 0;
+-    }
+-  else
+-    {
+-      printf("\n*** 'esd-config --version' returned %d.%d.%d, but the minimum version\n", $esd_major_version, $esd_minor_version, $esd_micro_version);
+-      printf("*** of ESD required is %d.%d.%d. If esd-config is correct, then it is\n", major, minor, micro);
+-      printf("*** best to upgrade to the required version.\n");
+-      printf("*** If esd-config was wrong, set the environment variable ESD_CONFIG\n");
+-      printf("*** to point to the correct copy of esd-config, and remove the file\n");
+-      printf("*** config.cache before re-running configure\n");
+-      return 1;
+-    }
+-}
+-
+-],, no_esd=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-       AC_LANG_RESTORE
+-     fi
+-  fi
+-  if test "x$no_esd" = x ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$2], , :, [$2])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test "$ESD_CONFIG" = "no" ; then
+-       echo "*** The esd-config script installed by ESD could not be found"
+-       echo "*** If ESD was installed in PREFIX, make sure PREFIX/bin is in"
+-       echo "*** your path, or set the ESD_CONFIG environment variable to the"
+-       echo "*** full path to esd-config."
+-     else
+-       if test -f conf.esdtest ; then
+-        :
+-       else
+-          echo "*** Could not run ESD test program, checking why..."
+-          CFLAGS="$CFLAGS $ESD_CFLAGS"
+-          LIBS="$LIBS $ESD_LIBS"
+-          AC_LANG_SAVE
+-          AC_LANG_C
+-          AC_TRY_LINK([
+-#include <stdio.h>
+-#include <esd.h>
+-],      [ return 0; ],
+-        [ echo "*** The test program compiled, but did not run. This usually means"
+-          echo "*** that the run-time linker is not finding ESD or finding the wrong"
+-          echo "*** version of ESD. If it is not finding ESD, 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"],
+-        [ echo "*** The test program failed to compile or link. See the file config.log for the"
+-          echo "*** exact error that occured. This usually means ESD was incorrectly installed"
+-          echo "*** or that you have moved ESD since it was installed. In the latter case, you"
+-          echo "*** may want to edit the esd-config script: $ESD_CONFIG" ])
+-          CFLAGS="$ac_save_CFLAGS"
+-          LIBS="$ac_save_LIBS"
+-          AC_LANG_RESTORE
+-       fi
+-     fi
+-     ESD_CFLAGS=""
+-     ESD_LIBS=""
+-     ifelse([$3], , :, [$3])
+-  fi
+-  AC_SUBST(ESD_CFLAGS)
+-  AC_SUBST(ESD_LIBS)
+-  rm -f conf.esdtest
+-])
+-
+-dnl AM_ESD_SUPPORTS_MULTIPLE_RECORD([ACTION-IF-SUPPORTS [, ACTION-IF-NOT-SUPPORTS]])
+-dnl Test, whether esd supports multiple recording clients (version >=0.2.21)
+-dnl
+-AC_DEFUN([AM_ESD_SUPPORTS_MULTIPLE_RECORD],
+-[dnl
+-  AC_MSG_NOTICE([whether installed esd version supports multiple recording clients])
+-  ac_save_ESD_CFLAGS="$ESD_CFLAGS"
+-  ac_save_ESD_LIBS="$ESD_LIBS"
+-  AM_PATH_ESD(0.2.21,
+-    ifelse([$1], , [
+-      AM_CONDITIONAL(ESD_SUPPORTS_MULTIPLE_RECORD, true)
+-      AC_DEFINE(ESD_SUPPORTS_MULTIPLE_RECORD, 1,
+-	[Define if you have esound with support of multiple recording clients.])],
+-    [$1]),
+-    ifelse([$2], , [AM_CONDITIONAL(ESD_SUPPORTS_MULTIPLE_RECORD, false)], [$2])
+-    if test "x$ac_save_ESD_CFLAGS" != x ; then
+-       ESD_CFLAGS="$ac_save_ESD_CFLAGS"
+-    fi
+-    if test "x$ac_save_ESD_LIBS" != x ; then
+-       ESD_LIBS="$ac_save_ESD_LIBS"
+-    fi
+-  )
+-])
+-
+-# ao.m4
+-# Configure paths for libao
+-# Jack Moffitt <jack at icecast.org> 10-21-2000
+-# Shamelessly stolen from Owen Taylor and Manish Singh
+-
+-dnl XIPH_PATH_AO([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+-dnl Test for libao, and define AO_CFLAGS and AO_LIBS
+-dnl
+-AC_DEFUN([XIPH_PATH_AO],
+-[dnl 
+-dnl Get the cflags and libraries
+-dnl
+-AC_ARG_WITH(ao,[  --with-ao=PFX   Prefix where libao is installed (optional)], ao_prefix="$withval", ao_prefix="")
+-AC_ARG_WITH(ao-libraries,[  --with-ao-libraries=DIR   Directory where libao library is installed (optional)], ao_libraries="$withval", ao_libraries="")
+-AC_ARG_WITH(ao-includes,[  --with-ao-includes=DIR   Directory where libao header files are installed (optional)], ao_includes="$withval", ao_includes="")
+-AC_ARG_ENABLE(aotest, [  --disable-aotest       Do not try to compile and run a test ao program],, enable_aotest=yes)
+-
+-
+-  if test "x$ao_libraries" != "x" ; then
+-    AO_LIBS="-L$ao_libraries"
+-  elif test "x$ao_prefix" != "x"; then
+-    AO_LIBS="-L$ao_prefix/lib"
+-  elif test "x$prefix" != "xNONE"; then
+-    AO_LIBS="-L$prefix/lib"
+-  fi
+-
+-  if test "x$ao_includes" != "x" ; then
+-    AO_CFLAGS="-I$ao_includes"
+-  elif test "x$ao_prefix" != "x"; then
+-    AO_CFLAGS="-I$ao_prefix/include"
+-  elif test "x$prefix" != "xNONE"; then
+-    AO_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  # see where dl* and friends live
+-  AC_CHECK_FUNCS(dlopen, [AO_DL_LIBS=""], [
+-    AC_CHECK_LIB(dl, dlopen, [AO_DL_LIBS="-ldl"], [
+-      AC_MSG_WARN([could not find dlopen() needed by libao sound drivers
+-      your system may not be supported.])
+-    ])
+-  ])
+-
+-  AO_LIBS="$AO_LIBS -lao $AO_DL_LIBS"
+-
+-  AC_MSG_CHECKING(for ao)
+-  no_ao=""
+-
+-
+-  if test "x$enable_aotest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $AO_CFLAGS"
+-    LIBS="$LIBS $AO_LIBS"
+-dnl
+-dnl Now check if the installed ao is sufficiently new.
+-dnl
+-      rm -f conf.aotest
+-      AC_TRY_RUN([
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <ao/ao.h>
+-
+-int main ()
+-{
+-  system("touch conf.aotest");
+-  return 0;
+-}
+-
+-],, no_ao=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-  fi
+-
+-  if test "x$no_ao" = "x" ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$1], , :, [$1])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test -f conf.aotest ; then
+-       :
+-     else
+-       echo "*** Could not run ao test program, checking why..."
+-       CFLAGS="$CFLAGS $AO_CFLAGS"
+-       LIBS="$LIBS $AO_LIBS"
+-       AC_TRY_LINK([
+-#include <stdio.h>
+-#include <ao/ao.h>
+-],     [ return 0; ],
+-       [ echo "*** The test program compiled, but did not run. This usually means"
+-       echo "*** that the run-time linker is not finding ao or finding the wrong"
+-       echo "*** version of ao. If it is not finding ao, 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"],
+-       [ echo "*** The test program failed to compile or link. See the file config.log for the"
+-       echo "*** exact error that occured. This usually means ao was incorrectly installed"
+-       echo "*** or that you have moved ao since it was installed." ])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     AO_CFLAGS=""
+-     AO_LIBS=""
+-     ifelse([$2], , :, [$2])
+-  fi
+-  AC_SUBST(AO_CFLAGS)
+-  AC_SUBST(AO_LIBS)
+-  rm -f conf.aotest
+-])
+-
+-# Configure paths for libogg
+-# Jack Moffitt <jack at icecast.org> 10-21-2000
+-# Shamelessly stolen from Owen Taylor and Manish Singh
+-
+-dnl XIPH_PATH_OGG([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+-dnl Test for libogg, and define OGG_CFLAGS and OGG_LIBS
+-dnl
+-AC_DEFUN([XIPH_PATH_OGG],
+-[dnl 
+-dnl Get the cflags and libraries
+-dnl
+-AC_ARG_WITH(ogg,[  --with-ogg=PFX   Prefix where libogg is installed (optional)], ogg_prefix="$withval", ogg_prefix="")
+-AC_ARG_WITH(ogg-libraries,[  --with-ogg-libraries=DIR   Directory where libogg library is installed (optional)], ogg_libraries="$withval", ogg_libraries="")
+-AC_ARG_WITH(ogg-includes,[  --with-ogg-includes=DIR   Directory where libogg header files are installed (optional)], ogg_includes="$withval", ogg_includes="")
+-AC_ARG_ENABLE(oggtest, [  --disable-oggtest       Do not try to compile and run a test Ogg program],, enable_oggtest=yes)
+-
+-  if test "x$ogg_libraries" != "x" ; then
+-    OGG_LIBS="-L$ogg_libraries"
+-  elif test "x$ogg_prefix" != "x" ; then
+-    OGG_LIBS="-L$ogg_prefix/lib"
+-  elif test "x$prefix" != "xNONE" ; then
+-    OGG_LIBS="-L$prefix/lib"
+-  fi
+-
+-  OGG_LIBS="$OGG_LIBS -logg"
+-
+-  if test "x$ogg_includes" != "x" ; then
+-    OGG_CFLAGS="-I$ogg_includes"
+-  elif test "x$ogg_prefix" != "x" ; then
+-    OGG_CFLAGS="-I$ogg_prefix/include"
+-  elif test "x$prefix" != "xNONE"; then
+-    OGG_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  AC_MSG_CHECKING(for Ogg)
+-  no_ogg=""
+-
+-
+-  if test "x$enable_oggtest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $OGG_CFLAGS"
+-    LIBS="$LIBS $OGG_LIBS"
+-dnl
+-dnl Now check if the installed Ogg is sufficiently new.
+-dnl
+-      rm -f conf.oggtest
+-      AC_TRY_RUN([
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <ogg/ogg.h>
+-
+-int main ()
+-{
+-  system("touch conf.oggtest");
+-  return 0;
+-}
+-
+-],, no_ogg=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-  fi
+-
+-  if test "x$no_ogg" = "x" ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$1], , :, [$1])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test -f conf.oggtest ; then
+-       :
+-     else
+-       echo "*** Could not run Ogg test program, checking why..."
+-       CFLAGS="$CFLAGS $OGG_CFLAGS"
+-       LIBS="$LIBS $OGG_LIBS"
+-       AC_TRY_LINK([
+-#include <stdio.h>
+-#include <ogg/ogg.h>
+-],     [ return 0; ],
+-       [ echo "*** The test program compiled, but did not run. This usually means"
+-       echo "*** that the run-time linker is not finding Ogg or finding the wrong"
+-       echo "*** version of Ogg. If it is not finding Ogg, 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"],
+-       [ echo "*** The test program failed to compile or link. See the file config.log for the"
+-       echo "*** exact error that occured. This usually means Ogg was incorrectly installed"
+-       echo "*** or that you have moved Ogg since it was installed." ])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     OGG_CFLAGS=""
+-     OGG_LIBS=""
+-     ifelse([$2], , :, [$2])
+-  fi
+-  AC_SUBST(OGG_CFLAGS)
+-  AC_SUBST(OGG_LIBS)
+-  rm -f conf.oggtest
+-])
+-
+-# Configure paths for libvorbis
+-# Jack Moffitt <jack at icecast.org> 10-21-2000
+-# Shamelessly stolen from Owen Taylor and Manish Singh
+-# thomasvs added check for vorbis_bitrate_addblock which is new in rc3
+-
+-dnl XIPH_PATH_VORBIS([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+-dnl Test for libvorbis, and define VORBIS_CFLAGS and VORBIS_LIBS
+-dnl
+-AC_DEFUN([XIPH_PATH_VORBIS],
+-[dnl 
+-dnl Get the cflags and libraries
+-dnl
+-AC_ARG_WITH(vorbis,[  --with-vorbis=PFX   Prefix where libvorbis is installed (optional)], vorbis_prefix="$withval", vorbis_prefix="")
+-AC_ARG_WITH(vorbis-libraries,[  --with-vorbis-libraries=DIR   Directory where libvorbis library is installed (optional)], vorbis_libraries="$withval", vorbis_libraries="")
+-AC_ARG_WITH(vorbis-includes,[  --with-vorbis-includes=DIR   Directory where libvorbis header files are installed (optional)], vorbis_includes="$withval", vorbis_includes="")
+-AC_ARG_ENABLE(vorbistest, [  --disable-vorbistest       Do not try to compile and run a test Vorbis program],, enable_vorbistest=yes)
+-
+-  if test "x$vorbis_libraries" != "x" ; then
+-    VORBIS_LIBS="-L$vorbis_libraries"
+-  elif test "x$vorbis_prefix" != "x" ; then
+-    VORBIS_LIBS="-L$vorbis_prefix/lib"
+-  elif test "x$prefix" != "xNONE"; then
+-    VORBIS_LIBS="-L$prefix/lib"
+-  fi
+-
+-  VORBIS_LIBS="$VORBIS_LIBS -lvorbis -lm"
+-  VORBISFILE_LIBS="-lvorbisfile"
+-  VORBISENC_LIBS="-lvorbisenc"
+-
+-  if test "x$vorbis_includes" != "x" ; then
+-    VORBIS_CFLAGS="-I$vorbis_includes"
+-  elif test "x$vorbis_prefix" != "x" ; then
+-    VORBIS_CFLAGS="-I$vorbis_prefix/include"
+-  elif test "x$prefix" != "xNONE"; then
+-    VORBIS_CFLAGS="-I$prefix/include"
+-  fi
+-
+-
+-  AC_MSG_CHECKING(for Vorbis)
+-  no_vorbis=""
+-
+-
+-  if test "x$enable_vorbistest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $VORBIS_CFLAGS $OGG_CFLAGS"
+-    LIBS="$LIBS $VORBIS_LIBS $VORBISENC_LIBS $OGG_LIBS"
+-dnl
+-dnl Now check if the installed Vorbis is sufficiently new.
+-dnl
+-      rm -f conf.vorbistest
+-      AC_TRY_RUN([
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <vorbis/codec.h>
+-#include <vorbis/vorbisenc.h>
+-
+-int main ()
+-{
+-    vorbis_block 	vb;
+-    vorbis_dsp_state	vd;
+-    vorbis_info		vi;
+-
+-    vorbis_info_init (&vi);
+-    vorbis_encode_init (&vi, 2, 44100, -1, 128000, -1);
+-    vorbis_analysis_init (&vd, &vi);
+-    vorbis_block_init (&vd, &vb);
+-    /* this function was added in 1.0rc3, so this is what we're testing for */
+-    vorbis_bitrate_addblock (&vb);
+-
+-    system("touch conf.vorbistest");
+-    return 0;
+-}
+-
+-],, no_vorbis=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-  fi
+-
+-  if test "x$no_vorbis" = "x" ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$1], , :, [$1])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test -f conf.vorbistest ; then
+-       :
+-     else
+-       echo "*** Could not run Vorbis test program, checking why..."
+-       CFLAGS="$CFLAGS $VORBIS_CFLAGS"
+-       LIBS="$LIBS $VORBIS_LIBS $OGG_LIBS"
+-       AC_TRY_LINK([
+-#include <stdio.h>
+-#include <vorbis/codec.h>
+-],     [ return 0; ],
+-       [ echo "*** The test program compiled, but did not run. This usually means"
+-       echo "*** that the run-time linker is not finding Vorbis or finding the wrong"
+-       echo "*** version of Vorbis. If it is not finding Vorbis, 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"],
+-       [ echo "*** The test program failed to compile or link. See the file config.log for the"
+-       echo "*** exact error that occured. This usually means Vorbis was incorrectly installed"
+-       echo "*** or that you have moved Vorbis since it was installed." ])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     VORBIS_CFLAGS=""
+-     VORBIS_LIBS=""
+-     VORBISFILE_LIBS=""
+-     VORBISENC_LIBS=""
+-     ifelse([$2], , :, [$2])
+-  fi
+-  AC_SUBST(VORBIS_CFLAGS)
+-  AC_SUBST(VORBIS_LIBS)
+-  AC_SUBST(VORBISFILE_LIBS)
+-  AC_SUBST(VORBISENC_LIBS)
+-  rm -f conf.vorbistest
+-])
+-
+-# Configure paths for libFLAC
+-# "Inspired" by ogg.m4
+-
+-dnl AM_PATH_LIBFLAC([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+-dnl Test for libFLAC, and define LIBFLAC_CFLAGS and LIBFLAC_LIBS
+-dnl
+-AC_DEFUN([AM_PATH_LIBFLAC],
+-[dnl 
+-dnl Get the cflags and libraries
+-dnl
+-AC_ARG_WITH(libFLAC,[  --with-libFLAC=PFX   Prefix where libFLAC is installed (optional)], libFLAC_prefix="$withval", libFLAC_prefix="")
+-AC_ARG_WITH(libFLAC-libraries,[  --with-libFLAC-libraries=DIR   Directory where libFLAC library is installed (optional)], libFLAC_libraries="$withval", libFLAC_libraries="")
+-AC_ARG_WITH(libFLAC-includes,[  --with-libFLAC-includes=DIR   Directory where libFLAC header files are installed (optional)], libFLAC_includes="$withval", libFLAC_includes="")
+-AC_ARG_ENABLE(libFLACtest, [  --disable-libFLACtest       Do not try to compile and run a test libFLAC program],, enable_libFLACtest=yes)
+-
+-  if test "x$libFLAC_libraries" != "x" ; then
+-    LIBFLAC_LIBS="-L$libFLAC_libraries"
+-  elif test "x$libFLAC_prefix" != "x" ; then
+-    LIBFLAC_LIBS="-L$libFLAC_prefix/lib"
+-  elif test "x$prefix" != "xNONE" ; then
+-    LIBFLAC_LIBS="-L$prefix/lib"
+-  fi
+-
+-  LIBFLAC_LIBS="$LIBFLAC_LIBS -lFLAC -lm"
+-
+-  if test "x$libFLAC_includes" != "x" ; then
+-    LIBFLAC_CFLAGS="-I$libFLAC_includes"
+-  elif test "x$libFLAC_prefix" != "x" ; then
+-    LIBFLAC_CFLAGS="-I$libFLAC_prefix/include"
+-  elif test "$prefix" != "xNONE"; then
+-    LIBFLAC_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  AC_MSG_CHECKING(for libFLAC)
+-  no_libFLAC=""
+-
+-
+-  if test "x$enable_libFLACtest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_CXXFLAGS="$CXXFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $LIBFLAC_CFLAGS"
+-    CXXFLAGS="$CXXFLAGS $LIBFLAC_CFLAGS"
+-    LIBS="$LIBS $LIBFLAC_LIBS"
+-dnl
+-dnl Now check if the installed libFLAC is sufficiently new.
+-dnl
+-      rm -f conf.libFLACtest
+-      AC_TRY_RUN([
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <FLAC/format.h>
+-
+-int main ()
+-{
+-  system("touch conf.libFLACtest");
+-  return 0;
+-}
+-
+-],, no_libFLAC=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-  fi
+-
+-  if test "x$no_libFLAC" = "x" ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$1], , :, [$1])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test -f conf.libFLACtest ; then
+-       :
+-     else
+-       echo "*** Could not run libFLAC test program, checking why..."
+-       CFLAGS="$CFLAGS $LIBFLAC_CFLAGS"
+-       LIBS="$LIBS $LIBFLAC_LIBS"
+-       AC_TRY_LINK([
+-#include <stdio.h>
+-#include <FLAC/format.h>
+-],     [ return 0; ],
+-       [ echo "*** The test program compiled, but did not run. This usually means"
+-       echo "*** that the run-time linker is not finding libFLAC or finding the wrong"
+-       echo "*** version of libFLAC. If it is not finding libFLAC, 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"],
+-       [ echo "*** The test program failed to compile or link. See the file config.log for the"
+-       echo "*** exact error that occured. This usually means libFLAC was incorrectly installed"
+-       echo "*** or that you have moved libFLAC since it was installed. In the latter case, you"
+-       echo "*** may want to edit the libFLAC-config script: $LIBFLAC_CONFIG" ])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     LIBFLAC_CFLAGS=""
+-     LIBFLAC_LIBS=""
+-     ifelse([$2], , :, [$2])
+-  fi
+-  AC_SUBST(LIBFLAC_CFLAGS)
+-  AC_SUBST(LIBFLAC_LIBS)
+-  rm -f conf.libFLACtest
+-])
+-
+-# Configure paths for libOggFLAC
+-# "Inspired" by ogg.m4
+-
+-dnl AM_PATH_LIBOGGFLAC([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+-dnl Test for libOggFLAC, and define LIBOGGFLAC_CFLAGS and LIBOGGFLAC_LIBS
+-dnl
+-AC_DEFUN([AM_PATH_LIBOGGFLAC],
+-[dnl 
+-dnl Get the cflags and libraries
+-dnl
+-AC_ARG_WITH(libOggFLAC,[  --with-libOggFLAC=PFX   Prefix where libOggFLAC is installed (optional)], libOggFLAC_prefix="$withval", libOggFLAC_prefix="")
+-AC_ARG_WITH(libOggFLAC-libraries,[  --with-libOggFLAC-libraries=DIR   Directory where libOggFLAC library is installed (optional)], libOggFLAC_libraries="$withval", libOggFLAC_libraries="")
+-AC_ARG_WITH(libOggFLAC-includes,[  --with-libOggFLAC-includes=DIR   Directory where libOggFLAC header files are installed (optional)], libOggFLAC_includes="$withval", libOggFLAC_includes="")
+-AC_ARG_ENABLE(libOggFLACtest, [  --disable-libOggFLACtest       Do not try to compile and run a test libOggFLAC program],, enable_libOggFLACtest=yes)
+-
+-  if test "x$libOggFLAC_libraries" != "x" ; then
+-    LIBOGGFLAC_LIBS="-L$libOggFLAC_libraries"
+-  elif test "x$libOggFLAC_prefix" != "x" ; then
+-    LIBOGGFLAC_LIBS="-L$libOggFLAC_prefix/lib"
+-  elif test "x$prefix" != "xNONE" ; then
+-    LIBOGGFLAC_LIBS="-L$prefix/lib"
+-  fi
+-
+-  LIBOGGFLAC_LIBS="$LIBOGGFLAC_LIBS -lOggFLAC -lFLAC -lm"
+-
+-  if test "x$libOggFLAC_includes" != "x" ; then
+-    LIBOGGFLAC_CFLAGS="-I$libOggFLAC_includes"
+-  elif test "x$libOggFLAC_prefix" != "x" ; then
+-    LIBOGGFLAC_CFLAGS="-I$libOggFLAC_prefix/include"
+-  elif test "$prefix" != "xNONE"; then
+-    LIBOGGFLAC_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  AC_MSG_CHECKING(for libOggFLAC)
+-  no_libOggFLAC=""
+-
+-
+-  if test "x$enable_libOggFLACtest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_CXXFLAGS="$CXXFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $LIBOGGFLAC_CFLAGS"
+-    CXXFLAGS="$CXXFLAGS $LIBOGGFLAC_CFLAGS"
+-    LIBS="$LIBS $LIBOGGFLAC_LIBS"
+-dnl
+-dnl Now check if the installed libOggFLAC is sufficiently new.
+-dnl
+-      rm -f conf.libOggFLACtest
+-      AC_TRY_RUN([
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <OggFLAC/stream_decoder.h>
+-
+-int main ()
+-{
+-  system("touch conf.libOggFLACtest");
+-  return 0;
+-}
+-
+-],, no_libOggFLAC=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-  fi
+-
+-  if test "x$no_libOggFLAC" = "x" ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$1], , :, [$1])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test -f conf.libOggFLACtest ; then
+-       :
+-     else
+-       echo "*** Could not run libOggFLAC test program, checking why..."
+-       CFLAGS="$CFLAGS $LIBOGGFLAC_CFLAGS"
+-       LIBS="$LIBS $LIBOGGFLAC_LIBS"
+-       AC_TRY_LINK([
+-#include <stdio.h>
+-#include <OggFLAC/stream_decoder.h>
+-],     [ return 0; ],
+-       [ echo "*** The test program compiled, but did not run. This usually means"
+-       echo "*** that the run-time linker is not finding libOggFLAC or finding the wrong"
+-       echo "*** version of libOggFLAC. If it is not finding libOggFLAC, 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"],
+-       [ echo "*** The test program failed to compile or link. See the file config.log for the"
+-       echo "*** exact error that occured. This usually means libOggFLAC was incorrectly installed"
+-       echo "*** or that you have moved libOggFLAC since it was installed. In the latter case, you"
+-       echo "*** may want to edit the libOggFLAC-config script: $LIBOGGFLAC_CONFIG" ])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     LIBOGGFLAC_CFLAGS=""
+-     LIBOGGFLAC_LIBS=""
+-     ifelse([$2], , :, [$2])
+-  fi
+-  AC_SUBST(LIBOGGFLAC_CFLAGS)
+-  AC_SUBST(LIBOGGFLAC_LIBS)
+-  rm -f conf.libOggFLACtest
+-])
+-
+-# Configure paths for GTK+
+-# Owen Taylor     1997-2001
+-
+-dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
+-dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES, 
+-dnl pass to pkg-config
+-dnl
+-AC_DEFUN([AM_PATH_GTK_2_0],
+-[dnl 
+-dnl Get the cflags and libraries from pkg-config
+-dnl
+-AC_ARG_ENABLE(gtktest, [  --disable-gtktest       do not try to compile and run a test GTK+ program],
+-		    , enable_gtktest=yes)
+-
+-  pkg_config_args=gtk+-2.0
+-  for module in . $4
+-  do
+-      case "$module" in
+-         gthread) 
+-             pkg_config_args="$pkg_config_args gthread-2.0"
+-         ;;
+-      esac
+-  done
+-
+-  no_gtk=""
+-
+-  AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+-
+-  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=ifelse([$1], ,2.0.0,$1)
+-  AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version)
+-
+-  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"
+-dnl
+-dnl Now check if the installed GTK+ is sufficiently new. (Also sanity
+-dnl checks the results of pkg-config to some extent)
+-dnl
+-      rm -f conf.gtktest
+-      AC_TRY_RUN([
+-#include <gtk/gtk.h>
+-#include <stdio.h>
+-#include <stdlib.h>
+-
+-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, &micro) != 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;
+-}
+-],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-  fi
+-  if test "x$no_gtk" = x ; then
+-     AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version))
+-     ifelse([$2], , :, [$2])     
+-  else
+-     AC_MSG_RESULT(no)
+-     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"
+-          AC_TRY_LINK([
+-#include <gtk/gtk.h>
+-#include <stdio.h>
+-],      [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
+-        [ 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" ],
+-        [ 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."])
+-          CFLAGS="$ac_save_CFLAGS"
+-          LIBS="$ac_save_LIBS"
+-       fi
+-     fi
+-     GTK_CFLAGS=""
+-     GTK_LIBS=""
+-     ifelse([$3], , :, [$3])
+-  fi
+-  AC_SUBST(GTK_CFLAGS)
+-  AC_SUBST(GTK_LIBS)
+-  rm -f conf.gtktest
+-])
+-
+-# Configure paths for GTK+
+-# Owen Taylor     97-11-3
+-
+-dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
+-dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
+-dnl
+-AC_DEFUN([AM_PATH_GTK],
+-[dnl 
+-dnl Get the cflags and libraries from the gtk-config script
+-dnl
+-AC_ARG_WITH(gtk-prefix,[  --with-gtk-prefix=PFX   Prefix where GTK is installed (optional)],
+-            gtk_config_prefix="$withval", gtk_config_prefix="")
+-AC_ARG_WITH(gtk-exec-prefix,[  --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed (optional)],
+-            gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="")
+-AC_ARG_ENABLE(gtktest, [  --disable-gtktest       Do not try to compile and run a test GTK program],
+-		    , enable_gtktest=yes)
+-
+-  for module in . $4
+-  do
+-      case "$module" in
+-         gthread) 
+-             gtk_config_args="$gtk_config_args gthread"
+-         ;;
+-      esac
+-  done
+-
+-  if test x$gtk_config_exec_prefix != x ; then
+-     gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
+-     if test x${GTK_CONFIG+set} != xset ; then
+-        GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
+-     fi
+-  fi
+-  if test x$gtk_config_prefix != x ; then
+-     gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
+-     if test x${GTK_CONFIG+set} != xset ; then
+-        GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
+-     fi
+-  fi
+-
+-  AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
+-  min_gtk_version=ifelse([$1], ,0.99.7,$1)
+-  AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
+-  no_gtk=""
+-  if test "$GTK_CONFIG" = "no" ; then
+-    no_gtk=yes
+-  else
+-    GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
+-    GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
+-    gtk_config_major_version=`$GTK_CONFIG $gtk_config_args --version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+-    gtk_config_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
+-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+-    gtk_config_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
+-           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"
+-dnl
+-dnl Now check if the installed GTK is sufficiently new. (Also sanity
+-dnl checks the results of gtk-config to some extent
+-dnl
+-      rm -f conf.gtktest
+-      AC_TRY_RUN([
+-#include <gtk/gtk.h>
+-#include <stdio.h>
+-#include <stdlib.h>
+-
+-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, &micro) != 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*** 'gtk-config --version' 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 gtk-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 gtk-config was wrong, set the environment variable GTK_CONFIG\n");
+-      printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n");
+-      printf("*** before re-running configure\n");
+-    } 
+-#if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION)
+-  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);
+-    }
+-#endif /* defined (GTK_MAJOR_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 gtk-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 GTK_CONFIG environment to point to the\n");
+-        printf("*** correct copy of gtk-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;
+-}
+-],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-  fi
+-  if test "x$no_gtk" = x ; then
+-     AC_MSG_RESULT(yes)
+-     ifelse([$2], , :, [$2])     
+-  else
+-     AC_MSG_RESULT(no)
+-     if test "$GTK_CONFIG" = "no" ; then
+-       echo "*** The gtk-config script installed by GTK could not be found"
+-       echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"
+-       echo "*** your path, or set the GTK_CONFIG environment variable to the"
+-       echo "*** full path to gtk-config."
+-     else
+-       if test -f conf.gtktest ; then
+-        :
+-       else
+-          echo "*** Could not run GTK test program, checking why..."
+-          CFLAGS="$CFLAGS $GTK_CFLAGS"
+-          LIBS="$LIBS $GTK_LIBS"
+-          AC_TRY_LINK([
+-#include <gtk/gtk.h>
+-#include <stdio.h>
+-],      [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
+-        [ 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"
+-          echo "***"
+-          echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"
+-          echo "*** came with the system with the command"
+-          echo "***"
+-          echo "***    rpm --erase --nodeps gtk gtk-devel" ],
+-        [ 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 was incorrectly installed"
+-          echo "*** or that you have moved GTK since it was installed. In the latter case, you"
+-          echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])
+-          CFLAGS="$ac_save_CFLAGS"
+-          LIBS="$ac_save_LIBS"
+-       fi
+-     fi
+-     GTK_CFLAGS=""
+-     GTK_LIBS=""
+-     ifelse([$3], , :, [$3])
+-  fi
+-  AC_SUBST(GTK_CFLAGS)
+-  AC_SUBST(GTK_LIBS)
+-  rm -f conf.gtktest
+-])
+-
+diff --git a/autoconf/Makefile.in b/autoconf/Makefile.in
+deleted file mode 100644
+index 865692c..0000000
+--- a/autoconf/Makefile.in
++++ /dev/null
+@@ -1,433 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2003 Masanao Izumo <is at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-
+-EXTRA_DIST = \
+-  alsa.m4 \
+-  ao.m4 \
+-  arts.m4 \
+-  esd.m4 \
+-  gtk.m4 \
+-  gtk-2.0.m4 \
+-  libFLAC.m4 \
+-  libOggFLAC.m4 \
+-  ogg.m4 \
+-  utils.m4 \
+-  vorbis.m4
+-
+-subdir = autoconf
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = Makefile.am Makefile.in config.guess config.sub depcomp \
+-	install-sh missing mkinstalldirs
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  autoconf/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/autoconf/config.guess b/autoconf/config.guess
+deleted file mode 100755
+index 0e80791..0000000
+--- a/autoconf/config.guess
++++ /dev/null
+@@ -1,1394 +0,0 @@
+-#! /bin/sh
+-# Attempt to guess a canonical system name.
+-#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+-#   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+-
+-timestamp='2003-05-22'
+-
+-# This file is free software; you can redistribute it and/or modify it
+-# under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2 of the License, or
+-# (at your option) any later version.
+-#
+-# This program is distributed in the hope that it will be useful, but
+-# WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+-# General Public License for more details.
+-#
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+-#
+-# As a special exception to the GNU General Public License, if you
+-# distribute this file as part of a program that contains a
+-# configuration script generated by Autoconf, you may include it under
+-# the same distribution terms that you use for the rest of that program.
+-
+-# Originally written by Per Bothner <per at bothner.com>.
+-# Please send patches to <config-patches at gnu.org>.  Submit a context
+-# diff and a properly formatted ChangeLog entry.
+-#
+-# This script attempts to guess a canonical system name similar to
+-# config.sub.  If it succeeds, it prints the system name on stdout, and
+-# exits with 0.  Otherwise, it exits with 1.
+-#
+-# The plan is that this can be called by configure scripts if you
+-# don't specify an explicit build system type.
+-
+-me=`echo "$0" | sed -e 's,.*/,,'`
+-
+-usage="\
+-Usage: $0 [OPTION]
+-
+-Output the configuration name of the system \`$me' is run on.
+-
+-Operation modes:
+-  -h, --help         print this help, then exit
+-  -t, --time-stamp   print date of last modification, then exit
+-  -v, --version      print version number, then exit
+-
+-Report bugs and patches to <config-patches at gnu.org>."
+-
+-version="\
+-GNU config.guess ($timestamp)
+-
+-Originally written by Per Bothner.
+-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+-Free Software Foundation, Inc.
+-
+-This is free software; see the source for copying conditions.  There is NO
+-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
+-
+-help="
+-Try \`$me --help' for more information."
+-
+-# Parse command line
+-while test $# -gt 0 ; do
+-  case $1 in
+-    --time-stamp | --time* | -t )
+-       echo "$timestamp" ; exit 0 ;;
+-    --version | -v )
+-       echo "$version" ; exit 0 ;;
+-    --help | --h* | -h )
+-       echo "$usage"; exit 0 ;;
+-    -- )     # Stop option processing
+-       shift; break ;;
+-    - )	# Use stdin as input.
+-       break ;;
+-    -* )
+-       echo "$me: invalid option $1$help" >&2
+-       exit 1 ;;
+-    * )
+-       break ;;
+-  esac
+-done
+-
+-if test $# != 0; then
+-  echo "$me: too many arguments$help" >&2
+-  exit 1
+-fi
+-
+-trap 'exit 1' 1 2 15
+-
+-# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
+-# compiler to aid in system detection is discouraged as it requires
+-# temporary files to be created and, as you can see below, it is a
+-# headache to deal with in a portable fashion.
+-
+-# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
+-# use `HOST_CC' if defined, but it is deprecated.
+-
+-# Portable tmp directory creation inspired by the Autoconf team.
+-
+-set_cc_for_build='
+-trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
+-trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
+-: ${TMPDIR=/tmp} ;
+- { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
+- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
+- { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
+-dummy=$tmp/dummy ;
+-tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
+-case $CC_FOR_BUILD,$HOST_CC,$CC in
+- ,,)    echo "int x;" > $dummy.c ;
+-	for c in cc gcc c89 c99 ; do
+-	  if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
+-	     CC_FOR_BUILD="$c"; break ;
+-	  fi ;
+-	done ;
+-	if test x"$CC_FOR_BUILD" = x ; then
+-	  CC_FOR_BUILD=no_compiler_found ;
+-	fi
+-	;;
+- ,,*)   CC_FOR_BUILD=$CC ;;
+- ,*,*)  CC_FOR_BUILD=$HOST_CC ;;
+-esac ;'
+-
+-# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
+-# (ghazi at noc.rutgers.edu 1994-08-24)
+-if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
+-	PATH=$PATH:/.attbin ; export PATH
+-fi
+-
+-UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
+-UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
+-UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
+-UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
+-
+-# Note: order is significant - the case branches are not exclusive.
+-
+-case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
+-    *:NetBSD:*:*)
+-	# NetBSD (nbsd) targets should (where applicable) match one or
+-	# more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
+-	# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
+-	# switched to ELF, *-*-netbsd* would select the old
+-	# object file format.  This provides both forward
+-	# compatibility and a consistent mechanism for selecting the
+-	# object file format.
+-	#
+-	# Note: NetBSD doesn't particularly care about the vendor
+-	# portion of the name.  We always set it to "unknown".
+-	sysctl="sysctl -n hw.machine_arch"
+-	UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
+-	    /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
+-	case "${UNAME_MACHINE_ARCH}" in
+-	    armeb) machine=armeb-unknown ;;
+-	    arm*) machine=arm-unknown ;;
+-	    sh3el) machine=shl-unknown ;;
+-	    sh3eb) machine=sh-unknown ;;
+-	    *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
+-	esac
+-	# The Operating System including object format, if it has switched
+-	# to ELF recently, or will in the future.
+-	case "${UNAME_MACHINE_ARCH}" in
+-	    arm*|i386|m68k|ns32k|sh3*|sparc|vax)
+-		eval $set_cc_for_build
+-		if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
+-			| grep __ELF__ >/dev/null
+-		then
+-		    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
+-		    # Return netbsd for either.  FIX?
+-		    os=netbsd
+-		else
+-		    os=netbsdelf
+-		fi
+-		;;
+-	    *)
+-	        os=netbsd
+-		;;
+-	esac
+-	# The OS release
+-	# Debian GNU/NetBSD machines have a different userland, and
+-	# thus, need a distinct triplet. However, they do not need
+-	# kernel version information, so it can be replaced with a
+-	# suitable tag, in the style of linux-gnu.
+-	case "${UNAME_VERSION}" in
+-	    Debian*)
+-		release='-gnu'
+-		;;
+-	    *)
+-		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
+-		;;
+-	esac
+-	# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
+-	# contains redundant information, the shorter form:
+-	# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
+-	echo "${machine}-${os}${release}"
+-	exit 0 ;;
+-    amiga:OpenBSD:*:*)
+-	echo m68k-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    arc:OpenBSD:*:*)
+-	echo mipsel-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    hp300:OpenBSD:*:*)
+-	echo m68k-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    mac68k:OpenBSD:*:*)
+-	echo m68k-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    macppc:OpenBSD:*:*)
+-	echo powerpc-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    mvme68k:OpenBSD:*:*)
+-	echo m68k-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    mvme88k:OpenBSD:*:*)
+-	echo m88k-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    mvmeppc:OpenBSD:*:*)
+-	echo powerpc-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    pmax:OpenBSD:*:*)
+-	echo mipsel-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    sgi:OpenBSD:*:*)
+-	echo mipseb-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    sun3:OpenBSD:*:*)
+-	echo m68k-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    wgrisc:OpenBSD:*:*)
+-	echo mipsel-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:OpenBSD:*:*)
+-	echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
+-	exit 0 ;;
+-    alpha:OSF1:*:*)
+-	if test $UNAME_RELEASE = "V4.0"; then
+-		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
+-	fi
+-	# According to Compaq, /usr/sbin/psrinfo has been available on
+-	# OSF/1 and Tru64 systems produced since 1995.  I hope that
+-	# covers most systems running today.  This code pipes the CPU
+-	# types through head -n 1, so we only detect the type of CPU 0.
+-	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
+-	case "$ALPHA_CPU_TYPE" in
+-	    "EV4 (21064)")
+-		UNAME_MACHINE="alpha" ;;
+-	    "EV4.5 (21064)")
+-		UNAME_MACHINE="alpha" ;;
+-	    "LCA4 (21066/21068)")
+-		UNAME_MACHINE="alpha" ;;
+-	    "EV5 (21164)")
+-		UNAME_MACHINE="alphaev5" ;;
+-	    "EV5.6 (21164A)")
+-		UNAME_MACHINE="alphaev56" ;;
+-	    "EV5.6 (21164PC)")
+-		UNAME_MACHINE="alphapca56" ;;
+-	    "EV5.7 (21164PC)")
+-		UNAME_MACHINE="alphapca57" ;;
+-	    "EV6 (21264)")
+-		UNAME_MACHINE="alphaev6" ;;
+-	    "EV6.7 (21264A)")
+-		UNAME_MACHINE="alphaev67" ;;
+-	    "EV6.8CB (21264C)")
+-		UNAME_MACHINE="alphaev68" ;;
+-	    "EV6.8AL (21264B)")
+-		UNAME_MACHINE="alphaev68" ;;
+-	    "EV6.8CX (21264D)")
+-		UNAME_MACHINE="alphaev68" ;;
+-	    "EV6.9A (21264/EV69A)")
+-		UNAME_MACHINE="alphaev69" ;;
+-	    "EV7 (21364)")
+-		UNAME_MACHINE="alphaev7" ;;
+-	    "EV7.9 (21364A)")
+-		UNAME_MACHINE="alphaev79" ;;
+-	esac
+-	# A Vn.n version is a released version.
+-	# A Tn.n version is a released field test version.
+-	# A Xn.n version is an unreleased experimental baselevel.
+-	# 1.2 uses "1.2" for uname -r.
+-	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
+-	exit 0 ;;
+-    Alpha\ *:Windows_NT*:*)
+-	# How do we know it's Interix rather than the generic POSIX subsystem?
+-	# Should we change UNAME_MACHINE based on the output of uname instead
+-	# of the specific Alpha model?
+-	echo alpha-pc-interix
+-	exit 0 ;;
+-    21064:Windows_NT:50:3)
+-	echo alpha-dec-winnt3.5
+-	exit 0 ;;
+-    Amiga*:UNIX_System_V:4.0:*)
+-	echo m68k-unknown-sysv4
+-	exit 0;;
+-    *:[Aa]miga[Oo][Ss]:*:*)
+-	echo ${UNAME_MACHINE}-unknown-amigaos
+-	exit 0 ;;
+-    *:[Mm]orph[Oo][Ss]:*:*)
+-	echo ${UNAME_MACHINE}-unknown-morphos
+-	exit 0 ;;
+-    *:OS/390:*:*)
+-	echo i370-ibm-openedition
+-	exit 0 ;;
+-    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
+-	echo arm-acorn-riscix${UNAME_RELEASE}
+-	exit 0;;
+-    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
+-	echo hppa1.1-hitachi-hiuxmpp
+-	exit 0;;
+-    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
+-	# akee at wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
+-	if test "`(/bin/universe) 2>/dev/null`" = att ; then
+-		echo pyramid-pyramid-sysv3
+-	else
+-		echo pyramid-pyramid-bsd
+-	fi
+-	exit 0 ;;
+-    NILE*:*:*:dcosx)
+-	echo pyramid-pyramid-svr4
+-	exit 0 ;;
+-    DRS?6000:unix:4.0:6*)
+-	echo sparc-icl-nx6
+-	exit 0 ;;
+-    DRS?6000:UNIX_SV:4.2*:7*)
+-	case `/usr/bin/uname -p` in
+-	    sparc) echo sparc-icl-nx7 && exit 0 ;;
+-	esac ;;
+-    sun4H:SunOS:5.*:*)
+-	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+-	exit 0 ;;
+-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
+-	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+-	exit 0 ;;
+-    i86pc:SunOS:5.*:*)
+-	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+-	exit 0 ;;
+-    sun4*:SunOS:6*:*)
+-	# According to config.sub, this is the proper way to canonicalize
+-	# SunOS6.  Hard to guess exactly what SunOS6 will be like, but
+-	# it's likely to be more like Solaris than SunOS4.
+-	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+-	exit 0 ;;
+-    sun4*:SunOS:*:*)
+-	case "`/usr/bin/arch -k`" in
+-	    Series*|S4*)
+-		UNAME_RELEASE=`uname -v`
+-		;;
+-	esac
+-	# Japanese Language versions have a version number like `4.1.3-JL'.
+-	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
+-	exit 0 ;;
+-    sun3*:SunOS:*:*)
+-	echo m68k-sun-sunos${UNAME_RELEASE}
+-	exit 0 ;;
+-    sun*:*:4.2BSD:*)
+-	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
+-	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
+-	case "`/bin/arch`" in
+-	    sun3)
+-		echo m68k-sun-sunos${UNAME_RELEASE}
+-		;;
+-	    sun4)
+-		echo sparc-sun-sunos${UNAME_RELEASE}
+-		;;
+-	esac
+-	exit 0 ;;
+-    aushp:SunOS:*:*)
+-	echo sparc-auspex-sunos${UNAME_RELEASE}
+-	exit 0 ;;
+-    # The situation for MiNT is a little confusing.  The machine name
+-    # can be virtually everything (everything which is not
+-    # "atarist" or "atariste" at least should have a processor
+-    # > m68000).  The system name ranges from "MiNT" over "FreeMiNT"
+-    # to the lowercase version "mint" (or "freemint").  Finally
+-    # the system name "TOS" denotes a system which is actually not
+-    # MiNT.  But MiNT is downward compatible to TOS, so this should
+-    # be no problem.
+-    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
+-        echo m68k-atari-mint${UNAME_RELEASE}
+-	exit 0 ;;
+-    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
+-	echo m68k-atari-mint${UNAME_RELEASE}
+-        exit 0 ;;
+-    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
+-        echo m68k-atari-mint${UNAME_RELEASE}
+-	exit 0 ;;
+-    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
+-        echo m68k-milan-mint${UNAME_RELEASE}
+-        exit 0 ;;
+-    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
+-        echo m68k-hades-mint${UNAME_RELEASE}
+-        exit 0 ;;
+-    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
+-        echo m68k-unknown-mint${UNAME_RELEASE}
+-        exit 0 ;;
+-    powerpc:machten:*:*)
+-	echo powerpc-apple-machten${UNAME_RELEASE}
+-	exit 0 ;;
+-    RISC*:Mach:*:*)
+-	echo mips-dec-mach_bsd4.3
+-	exit 0 ;;
+-    RISC*:ULTRIX:*:*)
+-	echo mips-dec-ultrix${UNAME_RELEASE}
+-	exit 0 ;;
+-    VAX*:ULTRIX*:*:*)
+-	echo vax-dec-ultrix${UNAME_RELEASE}
+-	exit 0 ;;
+-    2020:CLIX:*:* | 2430:CLIX:*:*)
+-	echo clipper-intergraph-clix${UNAME_RELEASE}
+-	exit 0 ;;
+-    mips:*:*:UMIPS | mips:*:*:RISCos)
+-	eval $set_cc_for_build
+-	sed 's/^	//' << EOF >$dummy.c
+-#ifdef __cplusplus
+-#include <stdio.h>  /* for printf() prototype */
+-	int main (int argc, char *argv[]) {
+-#else
+-	int main (argc, argv) int argc; char *argv[]; {
+-#endif
+-	#if defined (host_mips) && defined (MIPSEB)
+-	#if defined (SYSTYPE_SYSV)
+-	  printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
+-	#endif
+-	#if defined (SYSTYPE_SVR4)
+-	  printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
+-	#endif
+-	#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
+-	  printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
+-	#endif
+-	#endif
+-	  exit (-1);
+-	}
+-EOF
+-	$CC_FOR_BUILD -o $dummy $dummy.c \
+-	  && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
+-	  && exit 0
+-	echo mips-mips-riscos${UNAME_RELEASE}
+-	exit 0 ;;
+-    Motorola:PowerMAX_OS:*:*)
+-	echo powerpc-motorola-powermax
+-	exit 0 ;;
+-    Motorola:*:4.3:PL8-*)
+-	echo powerpc-harris-powermax
+-	exit 0 ;;
+-    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
+-	echo powerpc-harris-powermax
+-	exit 0 ;;
+-    Night_Hawk:Power_UNIX:*:*)
+-	echo powerpc-harris-powerunix
+-	exit 0 ;;
+-    m88k:CX/UX:7*:*)
+-	echo m88k-harris-cxux7
+-	exit 0 ;;
+-    m88k:*:4*:R4*)
+-	echo m88k-motorola-sysv4
+-	exit 0 ;;
+-    m88k:*:3*:R3*)
+-	echo m88k-motorola-sysv3
+-	exit 0 ;;
+-    AViiON:dgux:*:*)
+-        # DG/UX returns AViiON for all architectures
+-        UNAME_PROCESSOR=`/usr/bin/uname -p`
+-	if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
+-	then
+-	    if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
+-	       [ ${TARGET_BINARY_INTERFACE}x = x ]
+-	    then
+-		echo m88k-dg-dgux${UNAME_RELEASE}
+-	    else
+-		echo m88k-dg-dguxbcs${UNAME_RELEASE}
+-	    fi
+-	else
+-	    echo i586-dg-dgux${UNAME_RELEASE}
+-	fi
+- 	exit 0 ;;
+-    M88*:DolphinOS:*:*)	# DolphinOS (SVR3)
+-	echo m88k-dolphin-sysv3
+-	exit 0 ;;
+-    M88*:*:R3*:*)
+-	# Delta 88k system running SVR3
+-	echo m88k-motorola-sysv3
+-	exit 0 ;;
+-    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
+-	echo m88k-tektronix-sysv3
+-	exit 0 ;;
+-    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
+-	echo m68k-tektronix-bsd
+-	exit 0 ;;
+-    *:IRIX*:*:*)
+-	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
+-	exit 0 ;;
+-    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
+-	echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
+-	exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
+-    i*86:AIX:*:*)
+-	echo i386-ibm-aix
+-	exit 0 ;;
+-    ia64:AIX:*:*)
+-	if [ -x /usr/bin/oslevel ] ; then
+-		IBM_REV=`/usr/bin/oslevel`
+-	else
+-		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
+-	fi
+-	echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
+-	exit 0 ;;
+-    *:AIX:2:3)
+-	if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
+-		eval $set_cc_for_build
+-		sed 's/^		//' << EOF >$dummy.c
+-		#include <sys/systemcfg.h>
+-
+-		main()
+-			{
+-			if (!__power_pc())
+-				exit(1);
+-			puts("powerpc-ibm-aix3.2.5");
+-			exit(0);
+-			}
+-EOF
+-		$CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0
+-		echo rs6000-ibm-aix3.2.5
+-	elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
+-		echo rs6000-ibm-aix3.2.4
+-	else
+-		echo rs6000-ibm-aix3.2
+-	fi
+-	exit 0 ;;
+-    *:AIX:*:[45])
+-	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
+-	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
+-		IBM_ARCH=rs6000
+-	else
+-		IBM_ARCH=powerpc
+-	fi
+-	if [ -x /usr/bin/oslevel ] ; then
+-		IBM_REV=`/usr/bin/oslevel`
+-	else
+-		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
+-	fi
+-	echo ${IBM_ARCH}-ibm-aix${IBM_REV}
+-	exit 0 ;;
+-    *:AIX:*:*)
+-	echo rs6000-ibm-aix
+-	exit 0 ;;
+-    ibmrt:4.4BSD:*|romp-ibm:BSD:*)
+-	echo romp-ibm-bsd4.4
+-	exit 0 ;;
+-    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and
+-	echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
+-	exit 0 ;;                           # report: romp-ibm BSD 4.3
+-    *:BOSX:*:*)
+-	echo rs6000-bull-bosx
+-	exit 0 ;;
+-    DPX/2?00:B.O.S.:*:*)
+-	echo m68k-bull-sysv3
+-	exit 0 ;;
+-    9000/[34]??:4.3bsd:1.*:*)
+-	echo m68k-hp-bsd
+-	exit 0 ;;
+-    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
+-	echo m68k-hp-bsd4.4
+-	exit 0 ;;
+-    9000/[34678]??:HP-UX:*:*)
+-	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
+-	case "${UNAME_MACHINE}" in
+-	    9000/31? )            HP_ARCH=m68000 ;;
+-	    9000/[34]?? )         HP_ARCH=m68k ;;
+-	    9000/[678][0-9][0-9])
+-		if [ -x /usr/bin/getconf ]; then
+-		    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
+-                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
+-                    case "${sc_cpu_version}" in
+-                      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
+-                      528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
+-                      532)                      # CPU_PA_RISC2_0
+-                        case "${sc_kernel_bits}" in
+-                          32) HP_ARCH="hppa2.0n" ;;
+-                          64) HP_ARCH="hppa2.0w" ;;
+-			  '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
+-                        esac ;;
+-                    esac
+-		fi
+-		if [ "${HP_ARCH}" = "" ]; then
+-		    eval $set_cc_for_build
+-		    sed 's/^              //' << EOF >$dummy.c
+-
+-              #define _HPUX_SOURCE
+-              #include <stdlib.h>
+-              #include <unistd.h>
+-
+-              int main ()
+-              {
+-              #if defined(_SC_KERNEL_BITS)
+-                  long bits = sysconf(_SC_KERNEL_BITS);
+-              #endif
+-                  long cpu  = sysconf (_SC_CPU_VERSION);
+-
+-                  switch (cpu)
+-              	{
+-              	case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
+-              	case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
+-              	case CPU_PA_RISC2_0:
+-              #if defined(_SC_KERNEL_BITS)
+-              	    switch (bits)
+-              		{
+-              		case 64: puts ("hppa2.0w"); break;
+-              		case 32: puts ("hppa2.0n"); break;
+-              		default: puts ("hppa2.0"); break;
+-              		} break;
+-              #else  /* !defined(_SC_KERNEL_BITS) */
+-              	    puts ("hppa2.0"); break;
+-              #endif
+-              	default: puts ("hppa1.0"); break;
+-              	}
+-                  exit (0);
+-              }
+-EOF
+-		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
+-		    test -z "$HP_ARCH" && HP_ARCH=hppa
+-		fi ;;
+-	esac
+-	if [ ${HP_ARCH} = "hppa2.0w" ]
+-	then
+-	    # avoid double evaluation of $set_cc_for_build
+-	    test -n "$CC_FOR_BUILD" || eval $set_cc_for_build
+-	    if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null
+-	    then
+-		HP_ARCH="hppa2.0w"
+-	    else
+-		HP_ARCH="hppa64"
+-	    fi
+-	fi
+-	echo ${HP_ARCH}-hp-hpux${HPUX_REV}
+-	exit 0 ;;
+-    ia64:HP-UX:*:*)
+-	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
+-	echo ia64-hp-hpux${HPUX_REV}
+-	exit 0 ;;
+-    3050*:HI-UX:*:*)
+-	eval $set_cc_for_build
+-	sed 's/^	//' << EOF >$dummy.c
+-	#include <unistd.h>
+-	int
+-	main ()
+-	{
+-	  long cpu = sysconf (_SC_CPU_VERSION);
+-	  /* The order matters, because CPU_IS_HP_MC68K erroneously returns
+-	     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
+-	     results, however.  */
+-	  if (CPU_IS_PA_RISC (cpu))
+-	    {
+-	      switch (cpu)
+-		{
+-		  case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
+-		  case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
+-		  case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
+-		  default: puts ("hppa-hitachi-hiuxwe2"); break;
+-		}
+-	    }
+-	  else if (CPU_IS_HP_MC68K (cpu))
+-	    puts ("m68k-hitachi-hiuxwe2");
+-	  else puts ("unknown-hitachi-hiuxwe2");
+-	  exit (0);
+-	}
+-EOF
+-	$CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0
+-	echo unknown-hitachi-hiuxwe2
+-	exit 0 ;;
+-    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
+-	echo hppa1.1-hp-bsd
+-	exit 0 ;;
+-    9000/8??:4.3bsd:*:*)
+-	echo hppa1.0-hp-bsd
+-	exit 0 ;;
+-    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
+-	echo hppa1.0-hp-mpeix
+-	exit 0 ;;
+-    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
+-	echo hppa1.1-hp-osf
+-	exit 0 ;;
+-    hp8??:OSF1:*:*)
+-	echo hppa1.0-hp-osf
+-	exit 0 ;;
+-    i*86:OSF1:*:*)
+-	if [ -x /usr/sbin/sysversion ] ; then
+-	    echo ${UNAME_MACHINE}-unknown-osf1mk
+-	else
+-	    echo ${UNAME_MACHINE}-unknown-osf1
+-	fi
+-	exit 0 ;;
+-    parisc*:Lites*:*:*)
+-	echo hppa1.1-hp-lites
+-	exit 0 ;;
+-    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
+-	echo c1-convex-bsd
+-        exit 0 ;;
+-    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
+-	if getsysinfo -f scalar_acc
+-	then echo c32-convex-bsd
+-	else echo c2-convex-bsd
+-	fi
+-        exit 0 ;;
+-    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
+-	echo c34-convex-bsd
+-        exit 0 ;;
+-    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
+-	echo c38-convex-bsd
+-        exit 0 ;;
+-    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
+-	echo c4-convex-bsd
+-        exit 0 ;;
+-    CRAY*Y-MP:*:*:*)
+-	echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+-	exit 0 ;;
+-    CRAY*[A-Z]90:*:*:*)
+-	echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
+-	| sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
+-	      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
+-	      -e 's/\.[^.]*$/.X/'
+-	exit 0 ;;
+-    CRAY*TS:*:*:*)
+-	echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+-	exit 0 ;;
+-    CRAY*T3E:*:*:*)
+-	echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+-	exit 0 ;;
+-    CRAY*SV1:*:*:*)
+-	echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+-	exit 0 ;;
+-    *:UNICOS/mp:*:*)
+-	echo nv1-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 
+-	exit 0 ;;
+-    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
+-	FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
+-        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
+-        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
+-        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
+-        exit 0 ;;
+-    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
+-	echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
+-	exit 0 ;;
+-    sparc*:BSD/OS:*:*)
+-	echo sparc-unknown-bsdi${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:BSD/OS:*:*)
+-	echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:FreeBSD:*:*|*:GNU/FreeBSD:*:*)
+-	# Determine whether the default compiler uses glibc.
+-	eval $set_cc_for_build
+-	sed 's/^	//' << EOF >$dummy.c
+-	#include <features.h>
+-	#if __GLIBC__ >= 2
+-	LIBC=gnu
+-	#else
+-	LIBC=
+-	#endif
+-EOF
+-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
+-	echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC}
+-	exit 0 ;;
+-    i*:CYGWIN*:*)
+-	echo ${UNAME_MACHINE}-pc-cygwin
+-	exit 0 ;;
+-    i*:MINGW*:*)
+-	echo ${UNAME_MACHINE}-pc-mingw32
+-	exit 0 ;;
+-    i*:PW*:*)
+-	echo ${UNAME_MACHINE}-pc-pw32
+-	exit 0 ;;
+-    x86:Interix*:3*)
+-	echo i586-pc-interix3
+-	exit 0 ;;
+-    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
+-	echo i${UNAME_MACHINE}-pc-mks
+-	exit 0 ;;
+-    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
+-	# How do we know it's Interix rather than the generic POSIX subsystem?
+-	# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
+-	# UNAME_MACHINE based on the output of uname instead of i386?
+-	echo i586-pc-interix
+-	exit 0 ;;
+-    i*:UWIN*:*)
+-	echo ${UNAME_MACHINE}-pc-uwin
+-	exit 0 ;;
+-    p*:CYGWIN*:*)
+-	echo powerpcle-unknown-cygwin
+-	exit 0 ;;
+-    prep*:SunOS:5.*:*)
+-	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+-	exit 0 ;;
+-    *:GNU:*:*)
+-	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
+-	exit 0 ;;
+-    i*86:Minix:*:*)
+-	echo ${UNAME_MACHINE}-pc-minix
+-	exit 0 ;;
+-    arm*:Linux:*:*)
+-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+-	exit 0 ;;
+-    cris:Linux:*:*)
+-	echo cris-axis-linux-gnu
+-	exit 0 ;;
+-    ia64:Linux:*:*)
+-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+-	exit 0 ;;
+-    m68*:Linux:*:*)
+-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+-	exit 0 ;;
+-    mips:Linux:*:*)
+-	eval $set_cc_for_build
+-	sed 's/^	//' << EOF >$dummy.c
+-	#undef CPU
+-	#undef mips
+-	#undef mipsel
+-	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
+-	CPU=mipsel
+-	#else
+-	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
+-	CPU=mips
+-	#else
+-	CPU=
+-	#endif
+-	#endif
+-EOF
+-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
+-	test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
+-	;;
+-    mips64:Linux:*:*)
+-	eval $set_cc_for_build
+-	sed 's/^	//' << EOF >$dummy.c
+-	#undef CPU
+-	#undef mips64
+-	#undef mips64el
+-	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
+-	CPU=mips64el
+-	#else
+-	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
+-	CPU=mips64
+-	#else
+-	CPU=
+-	#endif
+-	#endif
+-EOF
+-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
+-	test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
+-	;;
+-    ppc:Linux:*:*)
+-	echo powerpc-unknown-linux-gnu
+-	exit 0 ;;
+-    ppc64:Linux:*:*)
+-	echo powerpc64-unknown-linux-gnu
+-	exit 0 ;;
+-    alpha:Linux:*:*)
+-	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
+-	  EV5)   UNAME_MACHINE=alphaev5 ;;
+-	  EV56)  UNAME_MACHINE=alphaev56 ;;
+-	  PCA56) UNAME_MACHINE=alphapca56 ;;
+-	  PCA57) UNAME_MACHINE=alphapca56 ;;
+-	  EV6)   UNAME_MACHINE=alphaev6 ;;
+-	  EV67)  UNAME_MACHINE=alphaev67 ;;
+-	  EV68*) UNAME_MACHINE=alphaev68 ;;
+-        esac
+-	objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
+-	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
+-	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
+-	exit 0 ;;
+-    parisc:Linux:*:* | hppa:Linux:*:*)
+-	# Look for CPU level
+-	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
+-	  PA7*) echo hppa1.1-unknown-linux-gnu ;;
+-	  PA8*) echo hppa2.0-unknown-linux-gnu ;;
+-	  *)    echo hppa-unknown-linux-gnu ;;
+-	esac
+-	exit 0 ;;
+-    parisc64:Linux:*:* | hppa64:Linux:*:*)
+-	echo hppa64-unknown-linux-gnu
+-	exit 0 ;;
+-    s390:Linux:*:* | s390x:Linux:*:*)
+-	echo ${UNAME_MACHINE}-ibm-linux
+-	exit 0 ;;
+-    sh*:Linux:*:*)
+-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+-	exit 0 ;;
+-    sparc:Linux:*:* | sparc64:Linux:*:*)
+-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+-	exit 0 ;;
+-    x86_64:Linux:*:*)
+-	echo x86_64-unknown-linux-gnu
+-	exit 0 ;;
+-    i*86:Linux:*:*)
+-	# The BFD linker knows what the default object file format is, so
+-	# first see if it will tell us. cd to the root directory to prevent
+-	# problems with other programs or directories called `ld' in the path.
+-	# Set LC_ALL=C to ensure ld outputs messages in English.
+-	ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
+-			 | sed -ne '/supported targets:/!d
+-				    s/[ 	][ 	]*/ /g
+-				    s/.*supported targets: *//
+-				    s/ .*//
+-				    p'`
+-        case "$ld_supported_targets" in
+-	  elf32-i386)
+-		TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
+-		;;
+-	  a.out-i386-linux)
+-		echo "${UNAME_MACHINE}-pc-linux-gnuaout"
+-		exit 0 ;;
+-	  coff-i386)
+-		echo "${UNAME_MACHINE}-pc-linux-gnucoff"
+-		exit 0 ;;
+-	  "")
+-		# Either a pre-BFD a.out linker (linux-gnuoldld) or
+-		# one that does not give us useful --help.
+-		echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
+-		exit 0 ;;
+-	esac
+-	# Determine whether the default compiler is a.out or elf
+-	eval $set_cc_for_build
+-	sed 's/^	//' << EOF >$dummy.c
+-	#include <features.h>
+-	#ifdef __ELF__
+-	# ifdef __GLIBC__
+-	#  if __GLIBC__ >= 2
+-	LIBC=gnu
+-	#  else
+-	LIBC=gnulibc1
+-	#  endif
+-	# else
+-	LIBC=gnulibc1
+-	# endif
+-	#else
+-	#ifdef __INTEL_COMPILER
+-	LIBC=gnu
+-	#else
+-	LIBC=gnuaout
+-	#endif
+-	#endif
+-EOF
+-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
+-	test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0
+-	test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0
+-	;;
+-    i*86:DYNIX/ptx:4*:*)
+-	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
+-	# earlier versions are messed up and put the nodename in both
+-	# sysname and nodename.
+-	echo i386-sequent-sysv4
+-	exit 0 ;;
+-    i*86:UNIX_SV:4.2MP:2.*)
+-        # Unixware is an offshoot of SVR4, but it has its own version
+-        # number series starting with 2...
+-        # I am not positive that other SVR4 systems won't match this,
+-	# I just have to hope.  -- rms.
+-        # Use sysv4.2uw... so that sysv4* matches it.
+-	echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
+-	exit 0 ;;
+-    i*86:OS/2:*:*)
+-	# If we were able to find `uname', then EMX Unix compatibility
+-	# is probably installed.
+-	echo ${UNAME_MACHINE}-pc-os2-emx
+-	exit 0 ;;
+-    i*86:XTS-300:*:STOP)
+-	echo ${UNAME_MACHINE}-unknown-stop
+-	exit 0 ;;
+-    i*86:atheos:*:*)
+-	echo ${UNAME_MACHINE}-unknown-atheos
+-	exit 0 ;;
+-    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
+-	echo i386-unknown-lynxos${UNAME_RELEASE}
+-	exit 0 ;;
+-    i*86:*DOS:*:*)
+-	echo ${UNAME_MACHINE}-pc-msdosdjgpp
+-	exit 0 ;;
+-    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
+-	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
+-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
+-		echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
+-	else
+-		echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
+-	fi
+-	exit 0 ;;
+-    i*86:*:5:[78]*)
+-	case `/bin/uname -X | grep "^Machine"` in
+-	    *486*)	     UNAME_MACHINE=i486 ;;
+-	    *Pentium)	     UNAME_MACHINE=i586 ;;
+-	    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
+-	esac
+-	echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
+-	exit 0 ;;
+-    i*86:*:3.2:*)
+-	if test -f /usr/options/cb.name; then
+-		UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
+-		echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
+-	elif /bin/uname -X 2>/dev/null >/dev/null ; then
+-		UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
+-		(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
+-		(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
+-			&& UNAME_MACHINE=i586
+-		(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
+-			&& UNAME_MACHINE=i686
+-		(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
+-			&& UNAME_MACHINE=i686
+-		echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
+-	else
+-		echo ${UNAME_MACHINE}-pc-sysv32
+-	fi
+-	exit 0 ;;
+-    pc:*:*:*)
+-	# Left here for compatibility:
+-        # uname -m prints for DJGPP always 'pc', but it prints nothing about
+-        # the processor, so we play safe by assuming i386.
+-	echo i386-pc-msdosdjgpp
+-        exit 0 ;;
+-    Intel:Mach:3*:*)
+-	echo i386-pc-mach3
+-	exit 0 ;;
+-    paragon:*:*:*)
+-	echo i860-intel-osf1
+-	exit 0 ;;
+-    i860:*:4.*:*) # i860-SVR4
+-	if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
+-	  echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
+-	else # Add other i860-SVR4 vendors below as they are discovered.
+-	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
+-	fi
+-	exit 0 ;;
+-    mini*:CTIX:SYS*5:*)
+-	# "miniframe"
+-	echo m68010-convergent-sysv
+-	exit 0 ;;
+-    mc68k:UNIX:SYSTEM5:3.51m)
+-	echo m68k-convergent-sysv
+-	exit 0 ;;
+-    M680?0:D-NIX:5.3:*)
+-	echo m68k-diab-dnix
+-	exit 0 ;;
+-    M68*:*:R3V[567]*:*)
+-	test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
+-    3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0)
+-	OS_REL=''
+-	test -r /etc/.relid \
+-	&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
+-	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
+-	  && echo i486-ncr-sysv4.3${OS_REL} && exit 0
+-	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
+-	  && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
+-    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
+-        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
+-          && echo i486-ncr-sysv4 && exit 0 ;;
+-    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
+-	echo m68k-unknown-lynxos${UNAME_RELEASE}
+-	exit 0 ;;
+-    mc68030:UNIX_System_V:4.*:*)
+-	echo m68k-atari-sysv4
+-	exit 0 ;;
+-    TSUNAMI:LynxOS:2.*:*)
+-	echo sparc-unknown-lynxos${UNAME_RELEASE}
+-	exit 0 ;;
+-    rs6000:LynxOS:2.*:*)
+-	echo rs6000-unknown-lynxos${UNAME_RELEASE}
+-	exit 0 ;;
+-    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
+-	echo powerpc-unknown-lynxos${UNAME_RELEASE}
+-	exit 0 ;;
+-    SM[BE]S:UNIX_SV:*:*)
+-	echo mips-dde-sysv${UNAME_RELEASE}
+-	exit 0 ;;
+-    RM*:ReliantUNIX-*:*:*)
+-	echo mips-sni-sysv4
+-	exit 0 ;;
+-    RM*:SINIX-*:*:*)
+-	echo mips-sni-sysv4
+-	exit 0 ;;
+-    *:SINIX-*:*:*)
+-	if uname -p 2>/dev/null >/dev/null ; then
+-		UNAME_MACHINE=`(uname -p) 2>/dev/null`
+-		echo ${UNAME_MACHINE}-sni-sysv4
+-	else
+-		echo ns32k-sni-sysv
+-	fi
+-	exit 0 ;;
+-    PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
+-                      # says <Richard.M.Bartel at ccMail.Census.GOV>
+-        echo i586-unisys-sysv4
+-        exit 0 ;;
+-    *:UNIX_System_V:4*:FTX*)
+-	# From Gerald Hewes <hewes at openmarket.com>.
+-	# How about differentiating between stratus architectures? -djm
+-	echo hppa1.1-stratus-sysv4
+-	exit 0 ;;
+-    *:*:*:FTX*)
+-	# From seanf at swdc.stratus.com.
+-	echo i860-stratus-sysv4
+-	exit 0 ;;
+-    *:VOS:*:*)
+-	# From Paul.Green at stratus.com.
+-	echo hppa1.1-stratus-vos
+-	exit 0 ;;
+-    mc68*:A/UX:*:*)
+-	echo m68k-apple-aux${UNAME_RELEASE}
+-	exit 0 ;;
+-    news*:NEWS-OS:6*:*)
+-	echo mips-sony-newsos6
+-	exit 0 ;;
+-    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
+-	if [ -d /usr/nec ]; then
+-	        echo mips-nec-sysv${UNAME_RELEASE}
+-	else
+-	        echo mips-unknown-sysv${UNAME_RELEASE}
+-	fi
+-        exit 0 ;;
+-    BeBox:BeOS:*:*)	# BeOS running on hardware made by Be, PPC only.
+-	echo powerpc-be-beos
+-	exit 0 ;;
+-    BeMac:BeOS:*:*)	# BeOS running on Mac or Mac clone, PPC only.
+-	echo powerpc-apple-beos
+-	exit 0 ;;
+-    BePC:BeOS:*:*)	# BeOS running on Intel PC compatible.
+-	echo i586-pc-beos
+-	exit 0 ;;
+-    SX-4:SUPER-UX:*:*)
+-	echo sx4-nec-superux${UNAME_RELEASE}
+-	exit 0 ;;
+-    SX-5:SUPER-UX:*:*)
+-	echo sx5-nec-superux${UNAME_RELEASE}
+-	exit 0 ;;
+-    SX-6:SUPER-UX:*:*)
+-	echo sx6-nec-superux${UNAME_RELEASE}
+-	exit 0 ;;
+-    Power*:Rhapsody:*:*)
+-	echo powerpc-apple-rhapsody${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:Rhapsody:*:*)
+-	echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:Darwin:*:*)
+-	case `uname -p` in
+-	    *86) UNAME_PROCESSOR=i686 ;;
+-	    powerpc) UNAME_PROCESSOR=powerpc ;;
+-	esac
+-	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:procnto*:*:* | *:QNX:[0123456789]*:*)
+-	UNAME_PROCESSOR=`uname -p`
+-	if test "$UNAME_PROCESSOR" = "x86"; then
+-		UNAME_PROCESSOR=i386
+-		UNAME_MACHINE=pc
+-	fi
+-	echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:QNX:*:4*)
+-	echo i386-pc-qnx
+-	exit 0 ;;
+-    NSR-[DGKLNPTVW]:NONSTOP_KERNEL:*:*)
+-	echo nsr-tandem-nsk${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:NonStop-UX:*:*)
+-	echo mips-compaq-nonstopux
+-	exit 0 ;;
+-    BS2000:POSIX*:*:*)
+-	echo bs2000-siemens-sysv
+-	exit 0 ;;
+-    DS/*:UNIX_System_V:*:*)
+-	echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
+-	exit 0 ;;
+-    *:Plan9:*:*)
+-	# "uname -m" is not consistent, so use $cputype instead. 386
+-	# is converted to i386 for consistency with other x86
+-	# operating systems.
+-	if test "$cputype" = "386"; then
+-	    UNAME_MACHINE=i386
+-	else
+-	    UNAME_MACHINE="$cputype"
+-	fi
+-	echo ${UNAME_MACHINE}-unknown-plan9
+-	exit 0 ;;
+-    *:TOPS-10:*:*)
+-	echo pdp10-unknown-tops10
+-	exit 0 ;;
+-    *:TENEX:*:*)
+-	echo pdp10-unknown-tenex
+-	exit 0 ;;
+-    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
+-	echo pdp10-dec-tops20
+-	exit 0 ;;
+-    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
+-	echo pdp10-xkl-tops20
+-	exit 0 ;;
+-    *:TOPS-20:*:*)
+-	echo pdp10-unknown-tops20
+-	exit 0 ;;
+-    *:ITS:*:*)
+-	echo pdp10-unknown-its
+-	exit 0 ;;
+-esac
+-
+-#echo '(No uname command or uname output not recognized.)' 1>&2
+-#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
+-
+-eval $set_cc_for_build
+-cat >$dummy.c <<EOF
+-#ifdef _SEQUENT_
+-# include <sys/types.h>
+-# include <sys/utsname.h>
+-#endif
+-main ()
+-{
+-#if defined (sony)
+-#if defined (MIPSEB)
+-  /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
+-     I don't know....  */
+-  printf ("mips-sony-bsd\n"); exit (0);
+-#else
+-#include <sys/param.h>
+-  printf ("m68k-sony-newsos%s\n",
+-#ifdef NEWSOS4
+-          "4"
+-#else
+-	  ""
+-#endif
+-         ); exit (0);
+-#endif
+-#endif
+-
+-#if defined (__arm) && defined (__acorn) && defined (__unix)
+-  printf ("arm-acorn-riscix"); exit (0);
+-#endif
+-
+-#if defined (hp300) && !defined (hpux)
+-  printf ("m68k-hp-bsd\n"); exit (0);
+-#endif
+-
+-#if defined (NeXT)
+-#if !defined (__ARCHITECTURE__)
+-#define __ARCHITECTURE__ "m68k"
+-#endif
+-  int version;
+-  version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
+-  if (version < 4)
+-    printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
+-  else
+-    printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
+-  exit (0);
+-#endif
+-
+-#if defined (MULTIMAX) || defined (n16)
+-#if defined (UMAXV)
+-  printf ("ns32k-encore-sysv\n"); exit (0);
+-#else
+-#if defined (CMU)
+-  printf ("ns32k-encore-mach\n"); exit (0);
+-#else
+-  printf ("ns32k-encore-bsd\n"); exit (0);
+-#endif
+-#endif
+-#endif
+-
+-#if defined (__386BSD__)
+-  printf ("i386-pc-bsd\n"); exit (0);
+-#endif
+-
+-#if defined (sequent)
+-#if defined (i386)
+-  printf ("i386-sequent-dynix\n"); exit (0);
+-#endif
+-#if defined (ns32000)
+-  printf ("ns32k-sequent-dynix\n"); exit (0);
+-#endif
+-#endif
+-
+-#if defined (_SEQUENT_)
+-    struct utsname un;
+-
+-    uname(&un);
+-
+-    if (strncmp(un.version, "V2", 2) == 0) {
+-	printf ("i386-sequent-ptx2\n"); exit (0);
+-    }
+-    if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
+-	printf ("i386-sequent-ptx1\n"); exit (0);
+-    }
+-    printf ("i386-sequent-ptx\n"); exit (0);
+-
+-#endif
+-
+-#if defined (vax)
+-# if !defined (ultrix)
+-#  include <sys/param.h>
+-#  if defined (BSD)
+-#   if BSD == 43
+-      printf ("vax-dec-bsd4.3\n"); exit (0);
+-#   else
+-#    if BSD == 199006
+-      printf ("vax-dec-bsd4.3reno\n"); exit (0);
+-#    else
+-      printf ("vax-dec-bsd\n"); exit (0);
+-#    endif
+-#   endif
+-#  else
+-    printf ("vax-dec-bsd\n"); exit (0);
+-#  endif
+-# else
+-    printf ("vax-dec-ultrix\n"); exit (0);
+-# endif
+-#endif
+-
+-#if defined (alliant) && defined (i860)
+-  printf ("i860-alliant-bsd\n"); exit (0);
+-#endif
+-
+-  exit (1);
+-}
+-EOF
+-
+-$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0
+-
+-# Apollos put the system type in the environment.
+-
+-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
+-
+-# Convex versions that predate uname can use getsysinfo(1)
+-
+-if [ -x /usr/convex/getsysinfo ]
+-then
+-    case `getsysinfo -f cpu_type` in
+-    c1*)
+-	echo c1-convex-bsd
+-	exit 0 ;;
+-    c2*)
+-	if getsysinfo -f scalar_acc
+-	then echo c32-convex-bsd
+-	else echo c2-convex-bsd
+-	fi
+-	exit 0 ;;
+-    c34*)
+-	echo c34-convex-bsd
+-	exit 0 ;;
+-    c38*)
+-	echo c38-convex-bsd
+-	exit 0 ;;
+-    c4*)
+-	echo c4-convex-bsd
+-	exit 0 ;;
+-    esac
+-fi
+-
+-cat >&2 <<EOF
+-$0: unable to guess system type
+-
+-This script, last modified $timestamp, has failed to recognize
+-the operating system you are using. It is advised that you
+-download the most up to date version of the config scripts from
+-
+-    ftp://ftp.gnu.org/pub/gnu/config/
+-
+-If the version you run ($0) is already up to date, please
+-send the following data and any information you think might be
+-pertinent to <config-patches at gnu.org> in order to provide the needed
+-information to handle your system.
+-
+-config.guess timestamp = $timestamp
+-
+-uname -m = `(uname -m) 2>/dev/null || echo unknown`
+-uname -r = `(uname -r) 2>/dev/null || echo unknown`
+-uname -s = `(uname -s) 2>/dev/null || echo unknown`
+-uname -v = `(uname -v) 2>/dev/null || echo unknown`
+-
+-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
+-/bin/uname -X     = `(/bin/uname -X) 2>/dev/null`
+-
+-hostinfo               = `(hostinfo) 2>/dev/null`
+-/bin/universe          = `(/bin/universe) 2>/dev/null`
+-/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`
+-/bin/arch              = `(/bin/arch) 2>/dev/null`
+-/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`
+-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
+-
+-UNAME_MACHINE = ${UNAME_MACHINE}
+-UNAME_RELEASE = ${UNAME_RELEASE}
+-UNAME_SYSTEM  = ${UNAME_SYSTEM}
+-UNAME_VERSION = ${UNAME_VERSION}
+-EOF
+-
+-exit 1
+-
+-# Local variables:
+-# eval: (add-hook 'write-file-hooks 'time-stamp)
+-# time-stamp-start: "timestamp='"
+-# time-stamp-format: "%:y-%02m-%02d"
+-# time-stamp-end: "'"
+-# End:
+diff --git a/autoconf/config.sub b/autoconf/config.sub
+deleted file mode 100755
+index fe4f1ed..0000000
+--- a/autoconf/config.sub
++++ /dev/null
+@@ -1,1492 +0,0 @@
+-#! /bin/sh
+-# Configuration validation subroutine script.
+-#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+-#   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+-
+-timestamp='2003-05-09'
+-
+-# This file is (in principle) common to ALL GNU software.
+-# The presence of a machine in this file suggests that SOME GNU software
+-# can handle that machine.  It does not imply ALL GNU software can.
+-#
+-# This file is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2 of the License, or
+-# (at your option) any later version.
+-#
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-#
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330,
+-# Boston, MA 02111-1307, USA.
+-
+-# As a special exception to the GNU General Public License, if you
+-# distribute this file as part of a program that contains a
+-# configuration script generated by Autoconf, you may include it under
+-# the same distribution terms that you use for the rest of that program.
+-
+-# Please send patches to <config-patches at gnu.org>.  Submit a context
+-# diff and a properly formatted ChangeLog entry.
+-#
+-# Configuration subroutine to validate and canonicalize a configuration type.
+-# Supply the specified configuration type as an argument.
+-# If it is invalid, we print an error message on stderr and exit with code 1.
+-# Otherwise, we print the canonical config type on stdout and succeed.
+-
+-# This file is supposed to be the same for all GNU packages
+-# and recognize all the CPU types, system types and aliases
+-# that are meaningful with *any* GNU software.
+-# Each package is responsible for reporting which valid configurations
+-# it does not support.  The user should be able to distinguish
+-# a failure to support a valid configuration from a meaningless
+-# configuration.
+-
+-# The goal of this file is to map all the various variations of a given
+-# machine specification into a single specification in the form:
+-#	CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
+-# or in some cases, the newer four-part form:
+-#	CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
+-# It is wrong to echo any other type of specification.
+-
+-me=`echo "$0" | sed -e 's,.*/,,'`
+-
+-usage="\
+-Usage: $0 [OPTION] CPU-MFR-OPSYS
+-       $0 [OPTION] ALIAS
+-
+-Canonicalize a configuration name.
+-
+-Operation modes:
+-  -h, --help         print this help, then exit
+-  -t, --time-stamp   print date of last modification, then exit
+-  -v, --version      print version number, then exit
+-
+-Report bugs and patches to <config-patches at gnu.org>."
+-
+-version="\
+-GNU config.sub ($timestamp)
+-
+-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+-Free Software Foundation, Inc.
+-
+-This is free software; see the source for copying conditions.  There is NO
+-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
+-
+-help="
+-Try \`$me --help' for more information."
+-
+-# Parse command line
+-while test $# -gt 0 ; do
+-  case $1 in
+-    --time-stamp | --time* | -t )
+-       echo "$timestamp" ; exit 0 ;;
+-    --version | -v )
+-       echo "$version" ; exit 0 ;;
+-    --help | --h* | -h )
+-       echo "$usage"; exit 0 ;;
+-    -- )     # Stop option processing
+-       shift; break ;;
+-    - )	# Use stdin as input.
+-       break ;;
+-    -* )
+-       echo "$me: invalid option $1$help"
+-       exit 1 ;;
+-
+-    *local*)
+-       # First pass through any local machine types.
+-       echo $1
+-       exit 0;;
+-
+-    * )
+-       break ;;
+-  esac
+-done
+-
+-case $# in
+- 0) echo "$me: missing argument$help" >&2
+-    exit 1;;
+- 1) ;;
+- *) echo "$me: too many arguments$help" >&2
+-    exit 1;;
+-esac
+-
+-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
+-# Here we must recognize all the valid KERNEL-OS combinations.
+-maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
+-case $maybe_os in
+-  nto-qnx* | linux-gnu* | freebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
+-    os=-$maybe_os
+-    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
+-    ;;
+-  *)
+-    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
+-    if [ $basic_machine != $1 ]
+-    then os=`echo $1 | sed 's/.*-/-/'`
+-    else os=; fi
+-    ;;
+-esac
+-
+-### Let's recognize common machines as not being operating systems so
+-### that things like config.sub decstation-3100 work.  We also
+-### recognize some manufacturers as not being operating systems, so we
+-### can provide default operating systems below.
+-case $os in
+-	-sun*os*)
+-		# Prevent following clause from handling this invalid input.
+-		;;
+-	-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
+-	-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
+-	-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
+-	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
+-	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
+-	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
+-	-apple | -axis)
+-		os=
+-		basic_machine=$1
+-		;;
+-	-sim | -cisco | -oki | -wec | -winbond)
+-		os=
+-		basic_machine=$1
+-		;;
+-	-scout)
+-		;;
+-	-wrs)
+-		os=-vxworks
+-		basic_machine=$1
+-		;;
+-	-chorusos*)
+-		os=-chorusos
+-		basic_machine=$1
+-		;;
+- 	-chorusrdb)
+- 		os=-chorusrdb
+-		basic_machine=$1
+- 		;;
+-	-hiux*)
+-		os=-hiuxwe2
+-		;;
+-	-sco5)
+-		os=-sco3.2v5
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-sco4)
+-		os=-sco3.2v4
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-sco3.2.[4-9]*)
+-		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-sco3.2v[4-9]*)
+-		# Don't forget version if it is 3.2v4 or newer.
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-sco*)
+-		os=-sco3.2v2
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-udk*)
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-isc)
+-		os=-isc2.2
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-clix*)
+-		basic_machine=clipper-intergraph
+-		;;
+-	-isc*)
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+-		;;
+-	-lynx*)
+-		os=-lynxos
+-		;;
+-	-ptx*)
+-		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
+-		;;
+-	-windowsnt*)
+-		os=`echo $os | sed -e 's/windowsnt/winnt/'`
+-		;;
+-	-psos*)
+-		os=-psos
+-		;;
+-	-mint | -mint[0-9]*)
+-		basic_machine=m68k-atari
+-		os=-mint
+-		;;
+-esac
+-
+-# Decode aliases for certain CPU-COMPANY combinations.
+-case $basic_machine in
+-	# Recognize the basic CPU types without company name.
+-	# Some are omitted here because they have special meanings below.
+-	1750a | 580 \
+-	| a29k \
+-	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
+-	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
+-	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
+-	| clipper \
+-	| d10v | d30v | dlx | dsp16xx \
+-	| fr30 | frv \
+-	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
+-	| i370 | i860 | i960 | ia64 \
+-	| ip2k \
+-	| m32r | m68000 | m68k | m88k | mcore \
+-	| mips | mipsbe | mipseb | mipsel | mipsle \
+-	| mips16 \
+-	| mips64 | mips64el \
+-	| mips64vr | mips64vrel \
+-	| mips64orion | mips64orionel \
+-	| mips64vr4100 | mips64vr4100el \
+-	| mips64vr4300 | mips64vr4300el \
+-	| mips64vr5000 | mips64vr5000el \
+-	| mipsisa32 | mipsisa32el \
+-	| mipsisa32r2 | mipsisa32r2el \
+-	| mipsisa64 | mipsisa64el \
+-	| mipsisa64sb1 | mipsisa64sb1el \
+-	| mipsisa64sr71k | mipsisa64sr71kel \
+-	| mipstx39 | mipstx39el \
+-	| mn10200 | mn10300 \
+-	| msp430 \
+-	| ns16k | ns32k \
+-	| openrisc | or32 \
+-	| pdp10 | pdp11 | pj | pjl \
+-	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
+-	| pyramid \
+-	| sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
+-	| sh64 | sh64le \
+-	| sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \
+-	| strongarm \
+-	| tahoe | thumb | tic80 | tron \
+-	| v850 | v850e \
+-	| we32k \
+-	| x86 | xscale | xstormy16 | xtensa \
+-	| z8k)
+-		basic_machine=$basic_machine-unknown
+-		;;
+-	m6811 | m68hc11 | m6812 | m68hc12)
+-		# Motorola 68HC11/12.
+-		basic_machine=$basic_machine-unknown
+-		os=-none
+-		;;
+-	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
+-		;;
+-
+-	# We use `pc' rather than `unknown'
+-	# because (1) that's what they normally are, and
+-	# (2) the word "unknown" tends to confuse beginning users.
+-	i*86 | x86_64)
+-	  basic_machine=$basic_machine-pc
+-	  ;;
+-	# Object if more than one company name word.
+-	*-*-*)
+-		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
+-		exit 1
+-		;;
+-	# Recognize the basic CPU types with company name.
+-	580-* \
+-	| a29k-* \
+-	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+-	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+-	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+-	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
+-	| avr-* \
+-	| bs2000-* \
+-	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
+-	| clipper-* | cydra-* \
+-	| d10v-* | d30v-* | dlx-* \
+-	| elxsi-* \
+-	| f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
+-	| h8300-* | h8500-* \
+-	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
+-	| i*86-* | i860-* | i960-* | ia64-* \
+-	| ip2k-* \
+-	| m32r-* \
+-	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
+-	| m88110-* | m88k-* | mcore-* \
+-	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
+-	| mips16-* \
+-	| mips64-* | mips64el-* \
+-	| mips64vr-* | mips64vrel-* \
+-	| mips64orion-* | mips64orionel-* \
+-	| mips64vr4100-* | mips64vr4100el-* \
+-	| mips64vr4300-* | mips64vr4300el-* \
+-	| mips64vr5000-* | mips64vr5000el-* \
+-	| mipsisa32-* | mipsisa32el-* \
+-	| mipsisa32r2-* | mipsisa32r2el-* \
+-	| mipsisa64-* | mipsisa64el-* \
+-	| mipsisa64sb1-* | mipsisa64sb1el-* \
+-	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
+-	| mipstx39-* | mipstx39el-* \
+-	| msp430-* \
+-	| none-* | np1-* | nv1-* | ns16k-* | ns32k-* \
+-	| orion-* \
+-	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
+-	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
+-	| pyramid-* \
+-	| romp-* | rs6000-* \
+-	| sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \
+-	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
+-	| sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
+-	| sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
+-	| tahoe-* | thumb-* \
+-	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
+-	| tron-* \
+-	| v850-* | v850e-* | vax-* \
+-	| we32k-* \
+-	| x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
+-	| xtensa-* \
+-	| ymp-* \
+-	| z8k-*)
+-		;;
+-	# Recognize the various machine names and aliases which stand
+-	# for a CPU type and a company and sometimes even an OS.
+-	386bsd)
+-		basic_machine=i386-unknown
+-		os=-bsd
+-		;;
+-	3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
+-		basic_machine=m68000-att
+-		;;
+-	3b*)
+-		basic_machine=we32k-att
+-		;;
+-	a29khif)
+-		basic_machine=a29k-amd
+-		os=-udi
+-		;;
+-	adobe68k)
+-		basic_machine=m68010-adobe
+-		os=-scout
+-		;;
+-	alliant | fx80)
+-		basic_machine=fx80-alliant
+-		;;
+-	altos | altos3068)
+-		basic_machine=m68k-altos
+-		;;
+-	am29k)
+-		basic_machine=a29k-none
+-		os=-bsd
+-		;;
+-	amd64)
+-		basic_machine=x86_64-pc
+-		;;
+-	amdahl)
+-		basic_machine=580-amdahl
+-		os=-sysv
+-		;;
+-	amiga | amiga-*)
+-		basic_machine=m68k-unknown
+-		;;
+-	amigaos | amigados)
+-		basic_machine=m68k-unknown
+-		os=-amigaos
+-		;;
+-	amigaunix | amix)
+-		basic_machine=m68k-unknown
+-		os=-sysv4
+-		;;
+-	apollo68)
+-		basic_machine=m68k-apollo
+-		os=-sysv
+-		;;
+-	apollo68bsd)
+-		basic_machine=m68k-apollo
+-		os=-bsd
+-		;;
+-	aux)
+-		basic_machine=m68k-apple
+-		os=-aux
+-		;;
+-	balance)
+-		basic_machine=ns32k-sequent
+-		os=-dynix
+-		;;
+-	c90)
+-		basic_machine=c90-cray
+-		os=-unicos
+-		;;
+-	convex-c1)
+-		basic_machine=c1-convex
+-		os=-bsd
+-		;;
+-	convex-c2)
+-		basic_machine=c2-convex
+-		os=-bsd
+-		;;
+-	convex-c32)
+-		basic_machine=c32-convex
+-		os=-bsd
+-		;;
+-	convex-c34)
+-		basic_machine=c34-convex
+-		os=-bsd
+-		;;
+-	convex-c38)
+-		basic_machine=c38-convex
+-		os=-bsd
+-		;;
+-	cray | j90)
+-		basic_machine=j90-cray
+-		os=-unicos
+-		;;
+-	crds | unos)
+-		basic_machine=m68k-crds
+-		;;
+-	cris | cris-* | etrax*)
+-		basic_machine=cris-axis
+-		;;
+-	da30 | da30-*)
+-		basic_machine=m68k-da30
+-		;;
+-	decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
+-		basic_machine=mips-dec
+-		;;
+-	decsystem10* | dec10*)
+-		basic_machine=pdp10-dec
+-		os=-tops10
+-		;;
+-	decsystem20* | dec20*)
+-		basic_machine=pdp10-dec
+-		os=-tops20
+-		;;
+-	delta | 3300 | motorola-3300 | motorola-delta \
+-	      | 3300-motorola | delta-motorola)
+-		basic_machine=m68k-motorola
+-		;;
+-	delta88)
+-		basic_machine=m88k-motorola
+-		os=-sysv3
+-		;;
+-	dpx20 | dpx20-*)
+-		basic_machine=rs6000-bull
+-		os=-bosx
+-		;;
+-	dpx2* | dpx2*-bull)
+-		basic_machine=m68k-bull
+-		os=-sysv3
+-		;;
+-	ebmon29k)
+-		basic_machine=a29k-amd
+-		os=-ebmon
+-		;;
+-	elxsi)
+-		basic_machine=elxsi-elxsi
+-		os=-bsd
+-		;;
+-	encore | umax | mmax)
+-		basic_machine=ns32k-encore
+-		;;
+-	es1800 | OSE68k | ose68k | ose | OSE)
+-		basic_machine=m68k-ericsson
+-		os=-ose
+-		;;
+-	fx2800)
+-		basic_machine=i860-alliant
+-		;;
+-	genix)
+-		basic_machine=ns32k-ns
+-		;;
+-	gmicro)
+-		basic_machine=tron-gmicro
+-		os=-sysv
+-		;;
+-	go32)
+-		basic_machine=i386-pc
+-		os=-go32
+-		;;
+-	h3050r* | hiux*)
+-		basic_machine=hppa1.1-hitachi
+-		os=-hiuxwe2
+-		;;
+-	h8300hms)
+-		basic_machine=h8300-hitachi
+-		os=-hms
+-		;;
+-	h8300xray)
+-		basic_machine=h8300-hitachi
+-		os=-xray
+-		;;
+-	h8500hms)
+-		basic_machine=h8500-hitachi
+-		os=-hms
+-		;;
+-	harris)
+-		basic_machine=m88k-harris
+-		os=-sysv3
+-		;;
+-	hp300-*)
+-		basic_machine=m68k-hp
+-		;;
+-	hp300bsd)
+-		basic_machine=m68k-hp
+-		os=-bsd
+-		;;
+-	hp300hpux)
+-		basic_machine=m68k-hp
+-		os=-hpux
+-		;;
+-	hp3k9[0-9][0-9] | hp9[0-9][0-9])
+-		basic_machine=hppa1.0-hp
+-		;;
+-	hp9k2[0-9][0-9] | hp9k31[0-9])
+-		basic_machine=m68000-hp
+-		;;
+-	hp9k3[2-9][0-9])
+-		basic_machine=m68k-hp
+-		;;
+-	hp9k6[0-9][0-9] | hp6[0-9][0-9])
+-		basic_machine=hppa1.0-hp
+-		;;
+-	hp9k7[0-79][0-9] | hp7[0-79][0-9])
+-		basic_machine=hppa1.1-hp
+-		;;
+-	hp9k78[0-9] | hp78[0-9])
+-		# FIXME: really hppa2.0-hp
+-		basic_machine=hppa1.1-hp
+-		;;
+-	hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
+-		# FIXME: really hppa2.0-hp
+-		basic_machine=hppa1.1-hp
+-		;;
+-	hp9k8[0-9][13679] | hp8[0-9][13679])
+-		basic_machine=hppa1.1-hp
+-		;;
+-	hp9k8[0-9][0-9] | hp8[0-9][0-9])
+-		basic_machine=hppa1.0-hp
+-		;;
+-	hppa-next)
+-		os=-nextstep3
+-		;;
+-	hppaosf)
+-		basic_machine=hppa1.1-hp
+-		os=-osf
+-		;;
+-	hppro)
+-		basic_machine=hppa1.1-hp
+-		os=-proelf
+-		;;
+-	i370-ibm* | ibm*)
+-		basic_machine=i370-ibm
+-		;;
+-# I'm not sure what "Sysv32" means.  Should this be sysv3.2?
+-	i*86v32)
+-		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+-		os=-sysv32
+-		;;
+-	i*86v4*)
+-		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+-		os=-sysv4
+-		;;
+-	i*86v)
+-		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+-		os=-sysv
+-		;;
+-	i*86sol2)
+-		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+-		os=-solaris2
+-		;;
+-	i386mach)
+-		basic_machine=i386-mach
+-		os=-mach
+-		;;
+-	i386-vsta | vsta)
+-		basic_machine=i386-unknown
+-		os=-vsta
+-		;;
+-	iris | iris4d)
+-		basic_machine=mips-sgi
+-		case $os in
+-		    -irix*)
+-			;;
+-		    *)
+-			os=-irix4
+-			;;
+-		esac
+-		;;
+-	isi68 | isi)
+-		basic_machine=m68k-isi
+-		os=-sysv
+-		;;
+-	m88k-omron*)
+-		basic_machine=m88k-omron
+-		;;
+-	magnum | m3230)
+-		basic_machine=mips-mips
+-		os=-sysv
+-		;;
+-	merlin)
+-		basic_machine=ns32k-utek
+-		os=-sysv
+-		;;
+-	mingw32)
+-		basic_machine=i386-pc
+-		os=-mingw32
+-		;;
+-	miniframe)
+-		basic_machine=m68000-convergent
+-		;;
+-	*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
+-		basic_machine=m68k-atari
+-		os=-mint
+-		;;
+-	mips3*-*)
+-		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
+-		;;
+-	mips3*)
+-		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
+-		;;
+-	mmix*)
+-		basic_machine=mmix-knuth
+-		os=-mmixware
+-		;;
+-	monitor)
+-		basic_machine=m68k-rom68k
+-		os=-coff
+-		;;
+-	morphos)
+-		basic_machine=powerpc-unknown
+-		os=-morphos
+-		;;
+-	msdos)
+-		basic_machine=i386-pc
+-		os=-msdos
+-		;;
+-	mvs)
+-		basic_machine=i370-ibm
+-		os=-mvs
+-		;;
+-	ncr3000)
+-		basic_machine=i486-ncr
+-		os=-sysv4
+-		;;
+-	netbsd386)
+-		basic_machine=i386-unknown
+-		os=-netbsd
+-		;;
+-	netwinder)
+-		basic_machine=armv4l-rebel
+-		os=-linux
+-		;;
+-	news | news700 | news800 | news900)
+-		basic_machine=m68k-sony
+-		os=-newsos
+-		;;
+-	news1000)
+-		basic_machine=m68030-sony
+-		os=-newsos
+-		;;
+-	news-3600 | risc-news)
+-		basic_machine=mips-sony
+-		os=-newsos
+-		;;
+-	necv70)
+-		basic_machine=v70-nec
+-		os=-sysv
+-		;;
+-	next | m*-next )
+-		basic_machine=m68k-next
+-		case $os in
+-		    -nextstep* )
+-			;;
+-		    -ns2*)
+-		      os=-nextstep2
+-			;;
+-		    *)
+-		      os=-nextstep3
+-			;;
+-		esac
+-		;;
+-	nh3000)
+-		basic_machine=m68k-harris
+-		os=-cxux
+-		;;
+-	nh[45]000)
+-		basic_machine=m88k-harris
+-		os=-cxux
+-		;;
+-	nindy960)
+-		basic_machine=i960-intel
+-		os=-nindy
+-		;;
+-	mon960)
+-		basic_machine=i960-intel
+-		os=-mon960
+-		;;
+-	nonstopux)
+-		basic_machine=mips-compaq
+-		os=-nonstopux
+-		;;
+-	np1)
+-		basic_machine=np1-gould
+-		;;
+-	nv1)
+-		basic_machine=nv1-cray
+-		os=-unicosmp
+-		;;
+-	nsr-tandem)
+-		basic_machine=nsr-tandem
+-		;;
+-	op50n-* | op60c-*)
+-		basic_machine=hppa1.1-oki
+-		os=-proelf
+-		;;
+-	or32 | or32-*)
+-		basic_machine=or32-unknown
+-		os=-coff
+-		;;
+-	OSE68000 | ose68000)
+-		basic_machine=m68000-ericsson
+-		os=-ose
+-		;;
+-	os68k)
+-		basic_machine=m68k-none
+-		os=-os68k
+-		;;
+-	pa-hitachi)
+-		basic_machine=hppa1.1-hitachi
+-		os=-hiuxwe2
+-		;;
+-	paragon)
+-		basic_machine=i860-intel
+-		os=-osf
+-		;;
+-	pbd)
+-		basic_machine=sparc-tti
+-		;;
+-	pbb)
+-		basic_machine=m68k-tti
+-		;;
+-	pc532 | pc532-*)
+-		basic_machine=ns32k-pc532
+-		;;
+-	pentium | p5 | k5 | k6 | nexgen | viac3)
+-		basic_machine=i586-pc
+-		;;
+-	pentiumpro | p6 | 6x86 | athlon | athlon_*)
+-		basic_machine=i686-pc
+-		;;
+-	pentiumii | pentium2)
+-		basic_machine=i686-pc
+-		;;
+-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
+-		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
+-		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	pentiumii-* | pentium2-*)
+-		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	pn)
+-		basic_machine=pn-gould
+-		;;
+-	power)	basic_machine=power-ibm
+-		;;
+-	ppc)	basic_machine=powerpc-unknown
+-		;;
+-	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	ppcle | powerpclittle | ppc-le | powerpc-little)
+-		basic_machine=powerpcle-unknown
+-		;;
+-	ppcle-* | powerpclittle-*)
+-		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	ppc64)	basic_machine=powerpc64-unknown
+-		;;
+-	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	ppc64le | powerpc64little | ppc64-le | powerpc64-little)
+-		basic_machine=powerpc64le-unknown
+-		;;
+-	ppc64le-* | powerpc64little-*)
+-		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
+-		;;
+-	ps2)
+-		basic_machine=i386-ibm
+-		;;
+-	pw32)
+-		basic_machine=i586-unknown
+-		os=-pw32
+-		;;
+-	rom68k)
+-		basic_machine=m68k-rom68k
+-		os=-coff
+-		;;
+-	rm[46]00)
+-		basic_machine=mips-siemens
+-		;;
+-	rtpc | rtpc-*)
+-		basic_machine=romp-ibm
+-		;;
+-	s390 | s390-*)
+-		basic_machine=s390-ibm
+-		;;
+-	s390x | s390x-*)
+-		basic_machine=s390x-ibm
+-		;;
+-	sa29200)
+-		basic_machine=a29k-amd
+-		os=-udi
+-		;;
+-	sb1)
+-		basic_machine=mipsisa64sb1-unknown
+-		;;
+-	sb1el)
+-		basic_machine=mipsisa64sb1el-unknown
+-		;;
+-	sequent)
+-		basic_machine=i386-sequent
+-		;;
+-	sh)
+-		basic_machine=sh-hitachi
+-		os=-hms
+-		;;
+-	sparclite-wrs | simso-wrs)
+-		basic_machine=sparclite-wrs
+-		os=-vxworks
+-		;;
+-	sps7)
+-		basic_machine=m68k-bull
+-		os=-sysv2
+-		;;
+-	spur)
+-		basic_machine=spur-unknown
+-		;;
+-	st2000)
+-		basic_machine=m68k-tandem
+-		;;
+-	stratus)
+-		basic_machine=i860-stratus
+-		os=-sysv4
+-		;;
+-	sun2)
+-		basic_machine=m68000-sun
+-		;;
+-	sun2os3)
+-		basic_machine=m68000-sun
+-		os=-sunos3
+-		;;
+-	sun2os4)
+-		basic_machine=m68000-sun
+-		os=-sunos4
+-		;;
+-	sun3os3)
+-		basic_machine=m68k-sun
+-		os=-sunos3
+-		;;
+-	sun3os4)
+-		basic_machine=m68k-sun
+-		os=-sunos4
+-		;;
+-	sun4os3)
+-		basic_machine=sparc-sun
+-		os=-sunos3
+-		;;
+-	sun4os4)
+-		basic_machine=sparc-sun
+-		os=-sunos4
+-		;;
+-	sun4sol2)
+-		basic_machine=sparc-sun
+-		os=-solaris2
+-		;;
+-	sun3 | sun3-*)
+-		basic_machine=m68k-sun
+-		;;
+-	sun4)
+-		basic_machine=sparc-sun
+-		;;
+-	sun386 | sun386i | roadrunner)
+-		basic_machine=i386-sun
+-		;;
+-	sv1)
+-		basic_machine=sv1-cray
+-		os=-unicos
+-		;;
+-	symmetry)
+-		basic_machine=i386-sequent
+-		os=-dynix
+-		;;
+-	t3e)
+-		basic_machine=alphaev5-cray
+-		os=-unicos
+-		;;
+-	t90)
+-		basic_machine=t90-cray
+-		os=-unicos
+-		;;
+-        tic4x | c4x*)
+-		basic_machine=tic4x-unknown
+-		os=-coff
+-		;;
+-	tic54x | c54x*)
+-		basic_machine=tic54x-unknown
+-		os=-coff
+-		;;
+-	tic55x | c55x*)
+-		basic_machine=tic55x-unknown
+-		os=-coff
+-		;;
+-	tic6x | c6x*)
+-		basic_machine=tic6x-unknown
+-		os=-coff
+-		;;
+-	tx39)
+-		basic_machine=mipstx39-unknown
+-		;;
+-	tx39el)
+-		basic_machine=mipstx39el-unknown
+-		;;
+-	toad1)
+-		basic_machine=pdp10-xkl
+-		os=-tops20
+-		;;
+-	tower | tower-32)
+-		basic_machine=m68k-ncr
+-		;;
+-	udi29k)
+-		basic_machine=a29k-amd
+-		os=-udi
+-		;;
+-	ultra3)
+-		basic_machine=a29k-nyu
+-		os=-sym1
+-		;;
+-	v810 | necv810)
+-		basic_machine=v810-nec
+-		os=-none
+-		;;
+-	vaxv)
+-		basic_machine=vax-dec
+-		os=-sysv
+-		;;
+-	vms)
+-		basic_machine=vax-dec
+-		os=-vms
+-		;;
+-	vpp*|vx|vx-*)
+-		basic_machine=f301-fujitsu
+-		;;
+-	vxworks960)
+-		basic_machine=i960-wrs
+-		os=-vxworks
+-		;;
+-	vxworks68)
+-		basic_machine=m68k-wrs
+-		os=-vxworks
+-		;;
+-	vxworks29k)
+-		basic_machine=a29k-wrs
+-		os=-vxworks
+-		;;
+-	w65*)
+-		basic_machine=w65-wdc
+-		os=-none
+-		;;
+-	w89k-*)
+-		basic_machine=hppa1.1-winbond
+-		os=-proelf
+-		;;
+-	xps | xps100)
+-		basic_machine=xps100-honeywell
+-		;;
+-	ymp)
+-		basic_machine=ymp-cray
+-		os=-unicos
+-		;;
+-	z8k-*-coff)
+-		basic_machine=z8k-unknown
+-		os=-sim
+-		;;
+-	none)
+-		basic_machine=none-none
+-		os=-none
+-		;;
+-
+-# Here we handle the default manufacturer of certain CPU types.  It is in
+-# some cases the only manufacturer, in others, it is the most popular.
+-	w89k)
+-		basic_machine=hppa1.1-winbond
+-		;;
+-	op50n)
+-		basic_machine=hppa1.1-oki
+-		;;
+-	op60c)
+-		basic_machine=hppa1.1-oki
+-		;;
+-	romp)
+-		basic_machine=romp-ibm
+-		;;
+-	rs6000)
+-		basic_machine=rs6000-ibm
+-		;;
+-	vax)
+-		basic_machine=vax-dec
+-		;;
+-	pdp10)
+-		# there are many clones, so DEC is not a safe bet
+-		basic_machine=pdp10-unknown
+-		;;
+-	pdp11)
+-		basic_machine=pdp11-dec
+-		;;
+-	we32k)
+-		basic_machine=we32k-att
+-		;;
+-	sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
+-		basic_machine=sh-unknown
+-		;;
+-	sh64)
+-		basic_machine=sh64-unknown
+-		;;
+-	sparc | sparcv9 | sparcv9b)
+-		basic_machine=sparc-sun
+-		;;
+-	cydra)
+-		basic_machine=cydra-cydrome
+-		;;
+-	orion)
+-		basic_machine=orion-highlevel
+-		;;
+-	orion105)
+-		basic_machine=clipper-highlevel
+-		;;
+-	mac | mpw | mac-mpw)
+-		basic_machine=m68k-apple
+-		;;
+-	pmac | pmac-mpw)
+-		basic_machine=powerpc-apple
+-		;;
+-	*-unknown)
+-		# Make sure to match an already-canonicalized machine name.
+-		;;
+-	*)
+-		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
+-		exit 1
+-		;;
+-esac
+-
+-# Here we canonicalize certain aliases for manufacturers.
+-case $basic_machine in
+-	*-digital*)
+-		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
+-		;;
+-	*-commodore*)
+-		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
+-		;;
+-	*)
+-		;;
+-esac
+-
+-# Decode manufacturer-specific aliases for certain operating systems.
+-
+-if [ x"$os" != x"" ]
+-then
+-case $os in
+-        # First match some system type aliases
+-        # that might get confused with valid system types.
+-	# -solaris* is a basic system type, with this one exception.
+-	-solaris1 | -solaris1.*)
+-		os=`echo $os | sed -e 's|solaris1|sunos4|'`
+-		;;
+-	-solaris)
+-		os=-solaris2
+-		;;
+-	-svr4*)
+-		os=-sysv4
+-		;;
+-	-unixware*)
+-		os=-sysv4.2uw
+-		;;
+-	-gnu/linux*)
+-		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
+-		;;
+-	# First accept the basic system types.
+-	# The portable systems comes first.
+-	# Each alternative MUST END IN A *, to match a version number.
+-	# -sysv* is not here because it comes later, after sysvr4.
+-	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
+-	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
+-	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
+-	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
+-	      | -aos* \
+-	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
+-	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
+-	      | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
+-	      | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
+-	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
+-	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
+-	      | -chorusos* | -chorusrdb* \
+-	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
+-	      | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
+-	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
+-	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
+-	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
+-	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
+-	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
+-	      | -powermax* | -dnix*)
+-	# Remember, each alternative MUST END IN *, to match a version number.
+-		;;
+-	-qnx*)
+-		case $basic_machine in
+-		    x86-* | i*86-*)
+-			;;
+-		    *)
+-			os=-nto$os
+-			;;
+-		esac
+-		;;
+-	-nto-qnx*)
+-		;;
+-	-nto*)
+-		os=`echo $os | sed -e 's|nto|nto-qnx|'`
+-		;;
+-	-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
+-	      | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
+-	      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
+-		;;
+-	-mac*)
+-		os=`echo $os | sed -e 's|mac|macos|'`
+-		;;
+-	-linux*)
+-		os=`echo $os | sed -e 's|linux|linux-gnu|'`
+-		;;
+-	-sunos5*)
+-		os=`echo $os | sed -e 's|sunos5|solaris2|'`
+-		;;
+-	-sunos6*)
+-		os=`echo $os | sed -e 's|sunos6|solaris3|'`
+-		;;
+-	-opened*)
+-		os=-openedition
+-		;;
+-	-wince*)
+-		os=-wince
+-		;;
+-	-osfrose*)
+-		os=-osfrose
+-		;;
+-	-osf*)
+-		os=-osf
+-		;;
+-	-utek*)
+-		os=-bsd
+-		;;
+-	-dynix*)
+-		os=-bsd
+-		;;
+-	-acis*)
+-		os=-aos
+-		;;
+-	-atheos*)
+-		os=-atheos
+-		;;
+-	-386bsd)
+-		os=-bsd
+-		;;
+-	-ctix* | -uts*)
+-		os=-sysv
+-		;;
+-	-nova*)
+-		os=-rtmk-nova
+-		;;
+-	-ns2 )
+-		os=-nextstep2
+-		;;
+-	-nsk*)
+-		os=-nsk
+-		;;
+-	# Preserve the version number of sinix5.
+-	-sinix5.*)
+-		os=`echo $os | sed -e 's|sinix|sysv|'`
+-		;;
+-	-sinix*)
+-		os=-sysv4
+-		;;
+-	-triton*)
+-		os=-sysv3
+-		;;
+-	-oss*)
+-		os=-sysv3
+-		;;
+-	-svr4)
+-		os=-sysv4
+-		;;
+-	-svr3)
+-		os=-sysv3
+-		;;
+-	-sysvr4)
+-		os=-sysv4
+-		;;
+-	# This must come after -sysvr4.
+-	-sysv*)
+-		;;
+-	-ose*)
+-		os=-ose
+-		;;
+-	-es1800*)
+-		os=-ose
+-		;;
+-	-xenix)
+-		os=-xenix
+-		;;
+-	-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
+-		os=-mint
+-		;;
+-	-aros*)
+-		os=-aros
+-		;;
+-	-kaos*)
+-		os=-kaos
+-		;;
+-	-none)
+-		;;
+-	*)
+-		# Get rid of the `-' at the beginning of $os.
+-		os=`echo $os | sed 's/[^-]*-//'`
+-		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
+-		exit 1
+-		;;
+-esac
+-else
+-
+-# Here we handle the default operating systems that come with various machines.
+-# The value should be what the vendor currently ships out the door with their
+-# machine or put another way, the most popular os provided with the machine.
+-
+-# Note that if you're going to try to match "-MANUFACTURER" here (say,
+-# "-sun"), then you have to tell the case statement up towards the top
+-# that MANUFACTURER isn't an operating system.  Otherwise, code above
+-# will signal an error saying that MANUFACTURER isn't an operating
+-# system, and we'll never get to this point.
+-
+-case $basic_machine in
+-	*-acorn)
+-		os=-riscix1.2
+-		;;
+-	arm*-rebel)
+-		os=-linux
+-		;;
+-	arm*-semi)
+-		os=-aout
+-		;;
+-	# This must come before the *-dec entry.
+-	pdp10-*)
+-		os=-tops20
+-		;;
+-	pdp11-*)
+-		os=-none
+-		;;
+-	*-dec | vax-*)
+-		os=-ultrix4.2
+-		;;
+-	m68*-apollo)
+-		os=-domain
+-		;;
+-	i386-sun)
+-		os=-sunos4.0.2
+-		;;
+-	m68000-sun)
+-		os=-sunos3
+-		# This also exists in the configure program, but was not the
+-		# default.
+-		# os=-sunos4
+-		;;
+-	m68*-cisco)
+-		os=-aout
+-		;;
+-	mips*-cisco)
+-		os=-elf
+-		;;
+-	mips*-*)
+-		os=-elf
+-		;;
+-	or32-*)
+-		os=-coff
+-		;;
+-	*-tti)	# must be before sparc entry or we get the wrong os.
+-		os=-sysv3
+-		;;
+-	sparc-* | *-sun)
+-		os=-sunos4.1.1
+-		;;
+-	*-be)
+-		os=-beos
+-		;;
+-	*-ibm)
+-		os=-aix
+-		;;
+-	*-wec)
+-		os=-proelf
+-		;;
+-	*-winbond)
+-		os=-proelf
+-		;;
+-	*-oki)
+-		os=-proelf
+-		;;
+-	*-hp)
+-		os=-hpux
+-		;;
+-	*-hitachi)
+-		os=-hiux
+-		;;
+-	i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
+-		os=-sysv
+-		;;
+-	*-cbm)
+-		os=-amigaos
+-		;;
+-	*-dg)
+-		os=-dgux
+-		;;
+-	*-dolphin)
+-		os=-sysv3
+-		;;
+-	m68k-ccur)
+-		os=-rtu
+-		;;
+-	m88k-omron*)
+-		os=-luna
+-		;;
+-	*-next )
+-		os=-nextstep
+-		;;
+-	*-sequent)
+-		os=-ptx
+-		;;
+-	*-crds)
+-		os=-unos
+-		;;
+-	*-ns)
+-		os=-genix
+-		;;
+-	i370-*)
+-		os=-mvs
+-		;;
+-	*-next)
+-		os=-nextstep3
+-		;;
+-	*-gould)
+-		os=-sysv
+-		;;
+-	*-highlevel)
+-		os=-bsd
+-		;;
+-	*-encore)
+-		os=-bsd
+-		;;
+-	*-sgi)
+-		os=-irix
+-		;;
+-	*-siemens)
+-		os=-sysv4
+-		;;
+-	*-masscomp)
+-		os=-rtu
+-		;;
+-	f30[01]-fujitsu | f700-fujitsu)
+-		os=-uxpv
+-		;;
+-	*-rom68k)
+-		os=-coff
+-		;;
+-	*-*bug)
+-		os=-coff
+-		;;
+-	*-apple)
+-		os=-macos
+-		;;
+-	*-atari*)
+-		os=-mint
+-		;;
+-	*)
+-		os=-none
+-		;;
+-esac
+-fi
+-
+-# Here we handle the case where we know the os, and the CPU type, but not the
+-# manufacturer.  We pick the logical manufacturer.
+-vendor=unknown
+-case $basic_machine in
+-	*-unknown)
+-		case $os in
+-			-riscix*)
+-				vendor=acorn
+-				;;
+-			-sunos*)
+-				vendor=sun
+-				;;
+-			-aix*)
+-				vendor=ibm
+-				;;
+-			-beos*)
+-				vendor=be
+-				;;
+-			-hpux*)
+-				vendor=hp
+-				;;
+-			-mpeix*)
+-				vendor=hp
+-				;;
+-			-hiux*)
+-				vendor=hitachi
+-				;;
+-			-unos*)
+-				vendor=crds
+-				;;
+-			-dgux*)
+-				vendor=dg
+-				;;
+-			-luna*)
+-				vendor=omron
+-				;;
+-			-genix*)
+-				vendor=ns
+-				;;
+-			-mvs* | -opened*)
+-				vendor=ibm
+-				;;
+-			-ptx*)
+-				vendor=sequent
+-				;;
+-			-vxsim* | -vxworks* | -windiss*)
+-				vendor=wrs
+-				;;
+-			-aux*)
+-				vendor=apple
+-				;;
+-			-hms*)
+-				vendor=hitachi
+-				;;
+-			-mpw* | -macos*)
+-				vendor=apple
+-				;;
+-			-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
+-				vendor=atari
+-				;;
+-			-vos*)
+-				vendor=stratus
+-				;;
+-		esac
+-		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
+-		;;
+-esac
+-
+-echo $basic_machine$os
+-exit 0
+-
+-# Local variables:
+-# eval: (add-hook 'write-file-hooks 'time-stamp)
+-# time-stamp-start: "timestamp='"
+-# time-stamp-format: "%:y-%02m-%02d"
+-# time-stamp-end: "'"
+-# End:
+diff --git a/autoconf/depcomp b/autoconf/depcomp
+deleted file mode 100755
+index 3480ce4..0000000
+--- a/autoconf/depcomp
++++ /dev/null
+@@ -1,436 +0,0 @@
+-#! /bin/sh
+-
+-# depcomp - compile a program generating dependencies as side-effects
+-# Copyright 1999, 2000 Free Software Foundation, Inc.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# As a special exception to the GNU General Public License, if you
+-# distribute this file as part of a program that contains a
+-# configuration script generated by Autoconf, you may include it under
+-# the same distribution terms that you use for the rest of that program.
+-
+-# Originally written by Alexandre Oliva <oliva at dcc.unicamp.br>.
+-
+-if test -z "$depmode" || test -z "$source" || test -z "$object"; then
+-  echo "depcomp: Variables source, object and depmode must be set" 1>&2
+-  exit 1
+-fi
+-# `libtool' can also be set to `yes' or `no'.
+-
+-if test -z "$depfile"; then
+-   base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`
+-   dir=`echo "$object" | sed 's,/.*$,/,'`
+-   if test "$dir" = "$object"; then
+-      dir=
+-   fi
+-   # FIXME: should be _deps on DOS.
+-   depfile="$dir.deps/$base"
+-fi
+-
+-tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
+-
+-rm -f "$tmpdepfile"
+-
+-# Some modes work just like other modes, but use different flags.  We
+-# parameterize here, but still list the modes in the big case below,
+-# to make depend.m4 easier to write.  Note that we *cannot* use a case
+-# here, because this file can only contain one case statement.
+-if test "$depmode" = hp; then
+-  # HP compiler uses -M and no extra arg.
+-  gccflag=-M
+-  depmode=gcc
+-fi
+-
+-if test "$depmode" = dashXmstdout; then
+-   # This is just like dashmstdout with a different argument.
+-   dashmflag=-xM
+-   depmode=dashmstdout
+-fi
+-
+-case "$depmode" in
+-gcc3)
+-## gcc 3 implements dependency tracking that does exactly what
+-## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like
+-## it if -MD -MP comes after the -MF stuff.  Hmm.
+-  "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
+-  stat=$?
+-  if test $stat -eq 0; then :
+-  else
+-    rm -f "$tmpdepfile"
+-    exit $stat
+-  fi
+-  mv "$tmpdepfile" "$depfile"
+-  ;;
+-
+-gcc)
+-## There are various ways to get dependency output from gcc.  Here's
+-## why we pick this rather obscure method:
+-## - Don't want to use -MD because we'd like the dependencies to end
+-##   up in a subdir.  Having to rename by hand is ugly.
+-##   (We might end up doing this anyway to support other compilers.)
+-## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
+-##   -MM, not -M (despite what the docs say).
+-## - Using -M directly means running the compiler twice (even worse
+-##   than renaming).
+-  if test -z "$gccflag"; then
+-    gccflag=-MD,
+-  fi
+-  "$@" -Wp,"$gccflag$tmpdepfile"
+-  stat=$?
+-  if test $stat -eq 0; then :
+-  else
+-    rm -f "$tmpdepfile"
+-    exit $stat
+-  fi
+-  rm -f "$depfile"
+-  echo "$object : \\" > "$depfile"
+-  alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+-## The second -e expression handles DOS-style file names with drive letters.
+-  sed -e 's/^[^:]*: / /' \
+-      -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
+-## This next piece of magic avoids the `deleted header file' problem.
+-## The problem is that when a header file which appears in a .P file
+-## is deleted, the dependency causes make to die (because there is
+-## typically no way to rebuild the header).  We avoid this by adding
+-## dummy dependencies for each header file.  Too bad gcc doesn't do
+-## this for us directly.
+-  tr ' ' '
+-' < "$tmpdepfile" |
+-## Some versions of gcc put a space before the `:'.  On the theory
+-## that the space means something, we add a space to the output as
+-## well.
+-## Some versions of the HPUX 10.20 sed can't process this invocation
+-## correctly.  Breaking it into two sed invocations is a workaround.
+-    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
+-  rm -f "$tmpdepfile"
+-  ;;
+-
+-hp)
+-  # This case exists only to let depend.m4 do its work.  It works by
+-  # looking at the text of this script.  This case will never be run,
+-  # since it is checked for above.
+-  exit 1
+-  ;;
+-
+-sgi)
+-  if test "$libtool" = yes; then
+-    "$@" "-Wp,-MDupdate,$tmpdepfile"
+-  else
+-    "$@" -MDupdate "$tmpdepfile"
+-  fi
+-  stat=$?
+-  if test $stat -eq 0; then :
+-  else
+-    rm -f "$tmpdepfile"
+-    exit $stat
+-  fi
+-  rm -f "$depfile"
+-
+-  if test -f "$tmpdepfile"; then  # yes, the sourcefile depend on other files
+-    echo "$object : \\" > "$depfile"
+-
+-    # Clip off the initial element (the dependent).  Don't try to be
+-    # clever and replace this with sed code, as IRIX sed won't handle
+-    # lines with more than a fixed number of characters (4096 in
+-    # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;
+-    # the IRIX cc adds comments like `#:fec' to the end of the
+-    # dependency line.
+-    tr ' ' '
+-' < "$tmpdepfile" \
+-    | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
+-    tr '
+-' ' ' >> $depfile
+-    echo >> $depfile
+-
+-    # The second pass generates a dummy entry for each header file.
+-    tr ' ' '
+-' < "$tmpdepfile" \
+-   | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
+-   >> $depfile
+-  else
+-    # The sourcefile does not contain any dependencies, so just
+-    # store a dummy comment line, to avoid errors with the Makefile
+-    # "include basename.Plo" scheme.
+-    echo "#dummy" > "$depfile"
+-  fi
+-  rm -f "$tmpdepfile"
+-  ;;
+-
+-aix)
+-  # The C for AIX Compiler uses -M and outputs the dependencies
+-  # in a .u file.  This file always lives in the current directory.
+-  # Also, the AIX compiler puts `$object:' at the start of each line;
+-  # $object doesn't have directory information.
+-  stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'`
+-  tmpdepfile="$stripped.u"
+-  outname="$stripped.o"
+-  if test "$libtool" = yes; then
+-    "$@" -Wc,-M
+-  else
+-    "$@" -M
+-  fi
+-
+-  stat=$?
+-  if test $stat -eq 0; then :
+-  else
+-    rm -f "$tmpdepfile"
+-    exit $stat
+-  fi
+-
+-  if test -f "$tmpdepfile"; then
+-    # Each line is of the form `foo.o: dependent.h'.
+-    # Do two passes, one to just change these to
+-    # `$object: dependent.h' and one to simply `dependent.h:'.
+-    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
+-    sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
+-  else
+-    # The sourcefile does not contain any dependencies, so just
+-    # store a dummy comment line, to avoid errors with the Makefile
+-    # "include basename.Plo" scheme.
+-    echo "#dummy" > "$depfile"
+-  fi
+-  rm -f "$tmpdepfile"
+-  ;;
+-
+-tru64)
+-   # The Tru64 compiler uses -MD to generate dependencies as a side
+-   # effect.  `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
+-   # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put 
+-   # dependencies in `foo.d' instead, so we check for that too.
+-   # Subdirectories are respected.
+-
+-   base=`echo "$object" | sed -e 's/\.o$//' -e 's/\.lo$//'`
+-   tmpdepfile1="$base.o.d"
+-   tmpdepfile2="$base.d"
+-   if test "$libtool" = yes; then
+-      "$@" -Wc,-MD
+-   else
+-      "$@" -MD
+-   fi
+-
+-   stat=$?
+-   if test $stat -eq 0; then :
+-   else
+-      rm -f "$tmpdepfile1" "$tmpdepfile2"
+-      exit $stat
+-   fi
+-
+-   if test -f "$tmpdepfile1"; then
+-      tmpdepfile="$tmpdepfile1"
+-   else
+-      tmpdepfile="$tmpdepfile2"
+-   fi
+-   if test -f "$tmpdepfile"; then
+-      sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
+-      # That's a space and a tab in the [].
+-      sed -e 's,^.*\.[a-z]*:[ 	]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
+-   else
+-      echo "#dummy" > "$depfile"
+-   fi
+-   rm -f "$tmpdepfile"
+-   ;;
+-
+-#nosideeffect)
+-  # This comment above is used by automake to tell side-effect
+-  # dependency tracking mechanisms from slower ones.
+-
+-dashmstdout)
+-  # Important note: in order to support this mode, a compiler *must*
+-  # always write the proprocessed file to stdout, regardless of -o,
+-  # because we must use -o when running libtool.
+-  test -z "$dashmflag" && dashmflag=-M
+-  ( IFS=" "
+-    case " $* " in
+-    *" --mode=compile "*) # this is libtool, let us make it quiet
+-      for arg
+-      do # cycle over the arguments
+-        case "$arg" in
+-	"--mode=compile")
+-	  # insert --quiet before "--mode=compile"
+-	  set fnord "$@" --quiet
+-	  shift # fnord
+-	  ;;
+-	esac
+-	set fnord "$@" "$arg"
+-	shift # fnord
+-	shift # "$arg"
+-      done
+-      ;;
+-    esac
+-    "$@" $dashmflag | sed 's:^[^:]*\:[ 	]*:'"$object"'\: :' > "$tmpdepfile"
+-  ) &
+-  proc=$!
+-  "$@"
+-  stat=$?
+-  wait "$proc"
+-  if test "$stat" != 0; then exit $stat; fi
+-  rm -f "$depfile"
+-  cat < "$tmpdepfile" > "$depfile"
+-  tr ' ' '
+-' < "$tmpdepfile" | \
+-## Some versions of the HPUX 10.20 sed can't process this invocation
+-## correctly.  Breaking it into two sed invocations is a workaround.
+-    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
+-  rm -f "$tmpdepfile"
+-  ;;
+-
+-dashXmstdout)
+-  # This case only exists to satisfy depend.m4.  It is never actually
+-  # run, as this mode is specially recognized in the preamble.
+-  exit 1
+-  ;;
+-
+-makedepend)
+-  # X makedepend
+-  (
+-    shift
+-    cleared=no
+-    for arg in "$@"; do
+-      case $cleared in no)
+-        set ""; shift
+-	cleared=yes
+-      esac
+-      case "$arg" in
+-        -D*|-I*)
+-	  set fnord "$@" "$arg"; shift;;
+-	-*)
+-	  ;;
+-	*)
+-	  set fnord "$@" "$arg"; shift;;
+-      esac
+-    done
+-    obj_suffix="`echo $object | sed 's/^.*\././'`"
+-    touch "$tmpdepfile"
+-    ${MAKEDEPEND-makedepend} 2>/dev/null -o"$obj_suffix" -f"$tmpdepfile" "$@"
+-  ) &
+-  proc=$!
+-  "$@"
+-  stat=$?
+-  wait "$proc"
+-  if test "$stat" != 0; then exit $stat; fi
+-  rm -f "$depfile"
+-  cat < "$tmpdepfile" > "$depfile"
+-  sed '1,2d' "$tmpdepfile" | tr ' ' '
+-' | \
+-## Some versions of the HPUX 10.20 sed can't process this invocation
+-## correctly.  Breaking it into two sed invocations is a workaround.
+-    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
+-  rm -f "$tmpdepfile" "$tmpdepfile".bak
+-  ;;
+-
+-cpp)
+-  # Important note: in order to support this mode, a compiler *must*
+-  # always write the proprocessed file to stdout, regardless of -o,
+-  # because we must use -o when running libtool.
+-  ( IFS=" "
+-    case " $* " in
+-    *" --mode=compile "*)
+-      for arg
+-      do # cycle over the arguments
+-        case $arg in
+-	"--mode=compile")
+-	  # insert --quiet before "--mode=compile"
+-	  set fnord "$@" --quiet
+-	  shift # fnord
+-	  ;;
+-	esac
+-	set fnord "$@" "$arg"
+-	shift # fnord
+-	shift # "$arg"
+-      done
+-      ;;
+-    esac
+-    "$@" -E |
+-    sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
+-    sed '$ s: \\$::' > "$tmpdepfile"
+-  ) &
+-  proc=$!
+-  "$@"
+-  stat=$?
+-  wait "$proc"
+-  if test "$stat" != 0; then exit $stat; fi
+-  rm -f "$depfile"
+-  echo "$object : \\" > "$depfile"
+-  cat < "$tmpdepfile" >> "$depfile"
+-  sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
+-  rm -f "$tmpdepfile"
+-  ;;
+-
+-msvisualcpp)
+-  # Important note: in order to support this mode, a compiler *must*
+-  # always write the proprocessed file to stdout, regardless of -o,
+-  # because we must use -o when running libtool.
+-  ( IFS=" "
+-    case " $* " in
+-    *" --mode=compile "*)
+-      for arg
+-      do # cycle over the arguments
+-        case $arg in
+-	"--mode=compile")
+-	  # insert --quiet before "--mode=compile"
+-	  set fnord "$@" --quiet
+-	  shift # fnord
+-	  ;;
+-	esac
+-	set fnord "$@" "$arg"
+-	shift # fnord
+-	shift # "$arg"
+-      done
+-      ;;
+-    esac
+-    for arg
+-    do
+-      case "$arg" in
+-      "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
+-	set fnord "$@"
+-	shift
+-	shift
+-	;;
+-      *)
+-	set fnord "$@" "$arg"
+-	shift
+-	shift
+-	;;
+-      esac
+-    done
+-    "$@" -E |
+-    sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
+-  ) &
+-  proc=$!
+-  "$@"
+-  stat=$?
+-  wait "$proc"
+-  if test "$stat" != 0; then exit $stat; fi
+-  rm -f "$depfile"
+-  echo "$object : \\" > "$depfile"
+-  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
+-  echo "	" >> "$depfile"
+-  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
+-  rm -f "$tmpdepfile"
+-  ;;
+-
+-none)
+-  exec "$@"
+-  ;;
+-
+-*)
+-  echo "Unknown depmode $depmode" 1>&2
+-  exit 1
+-  ;;
+-esac
+-
+-exit 0
+diff --git a/autoconf/install-sh b/autoconf/install-sh
+deleted file mode 100755
+index 398a88e..0000000
+--- a/autoconf/install-sh
++++ /dev/null
+@@ -1,251 +0,0 @@
+-#!/bin/sh
+-#
+-# install - install a program, script, or datafile
+-# This comes from X11R5 (mit/util/scripts/install.sh).
+-#
+-# Copyright 1991 by the Massachusetts Institute of Technology
+-#
+-# Permission to use, copy, modify, distribute, and sell this software and its
+-# documentation for any purpose is hereby granted without fee, provided that
+-# the above copyright notice appear in all copies and that both that
+-# copyright notice and this permission notice appear in supporting
+-# documentation, and that the name of M.I.T. not be used in advertising or
+-# publicity pertaining to distribution of the software without specific,
+-# written prior permission.  M.I.T. makes no representations about the
+-# suitability of this software for any purpose.  It is provided "as is"
+-# without express or implied warranty.
+-#
+-# Calling this script install-sh is preferred over install.sh, to prevent
+-# `make' implicit rules from creating a file called install from it
+-# when there is no Makefile.
+-#
+-# This script is compatible with the BSD install script, but was written
+-# from scratch.  It can only install one file at a time, a restriction
+-# shared with many OS's install programs.
+-
+-
+-# set DOITPROG to echo to test this script
+-
+-# Don't use :- since 4.3BSD and earlier shells don't like it.
+-doit="${DOITPROG-}"
+-
+-
+-# put in absolute paths if you don't have them in your path; or use env. vars.
+-
+-mvprog="${MVPROG-mv}"
+-cpprog="${CPPROG-cp}"
+-chmodprog="${CHMODPROG-chmod}"
+-chownprog="${CHOWNPROG-chown}"
+-chgrpprog="${CHGRPPROG-chgrp}"
+-stripprog="${STRIPPROG-strip}"
+-rmprog="${RMPROG-rm}"
+-mkdirprog="${MKDIRPROG-mkdir}"
+-
+-transformbasename=""
+-transform_arg=""
+-instcmd="$mvprog"
+-chmodcmd="$chmodprog 0755"
+-chowncmd=""
+-chgrpcmd=""
+-stripcmd=""
+-rmcmd="$rmprog -f"
+-mvcmd="$mvprog"
+-src=""
+-dst=""
+-dir_arg=""
+-
+-while [ x"$1" != x ]; do
+-    case $1 in
+-	-c) instcmd="$cpprog"
+-	    shift
+-	    continue;;
+-
+-	-d) dir_arg=true
+-	    shift
+-	    continue;;
+-
+-	-m) chmodcmd="$chmodprog $2"
+-	    shift
+-	    shift
+-	    continue;;
+-
+-	-o) chowncmd="$chownprog $2"
+-	    shift
+-	    shift
+-	    continue;;
+-
+-	-g) chgrpcmd="$chgrpprog $2"
+-	    shift
+-	    shift
+-	    continue;;
+-
+-	-s) stripcmd="$stripprog"
+-	    shift
+-	    continue;;
+-
+-	-t=*) transformarg=`echo $1 | sed 's/-t=//'`
+-	    shift
+-	    continue;;
+-
+-	-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
+-	    shift
+-	    continue;;
+-
+-	*)  if [ x"$src" = x ]
+-	    then
+-		src=$1
+-	    else
+-		# this colon is to work around a 386BSD /bin/sh bug
+-		:
+-		dst=$1
+-	    fi
+-	    shift
+-	    continue;;
+-    esac
+-done
+-
+-if [ x"$src" = x ]
+-then
+-	echo "install:	no input file specified"
+-	exit 1
+-else
+-	:
+-fi
+-
+-if [ x"$dir_arg" != x ]; then
+-	dst=$src
+-	src=""
+-	
+-	if [ -d $dst ]; then
+-		instcmd=:
+-		chmodcmd=""
+-	else
+-		instcmd=$mkdirprog
+-	fi
+-else
+-
+-# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
+-# might cause directories to be created, which would be especially bad 
+-# if $src (and thus $dsttmp) contains '*'.
+-
+-	if [ -f $src -o -d $src ]
+-	then
+-		:
+-	else
+-		echo "install:  $src does not exist"
+-		exit 1
+-	fi
+-	
+-	if [ x"$dst" = x ]
+-	then
+-		echo "install:	no destination specified"
+-		exit 1
+-	else
+-		:
+-	fi
+-
+-# If destination is a directory, append the input filename; if your system
+-# does not like double slashes in filenames, you may need to add some logic
+-
+-	if [ -d $dst ]
+-	then
+-		dst="$dst"/`basename $src`
+-	else
+-		:
+-	fi
+-fi
+-
+-## this sed command emulates the dirname command
+-dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
+-
+-# Make sure that the destination directory exists.
+-#  this part is taken from Noah Friedman's mkinstalldirs script
+-
+-# Skip lots of stat calls in the usual case.
+-if [ ! -d "$dstdir" ]; then
+-defaultIFS='
+-	'
+-IFS="${IFS-${defaultIFS}}"
+-
+-oIFS="${IFS}"
+-# Some sh's can't handle IFS=/ for some reason.
+-IFS='%'
+-set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
+-IFS="${oIFS}"
+-
+-pathcomp=''
+-
+-while [ $# -ne 0 ] ; do
+-	pathcomp="${pathcomp}${1}"
+-	shift
+-
+-	if [ ! -d "${pathcomp}" ] ;
+-        then
+-		$mkdirprog "${pathcomp}"
+-	else
+-		:
+-	fi
+-
+-	pathcomp="${pathcomp}/"
+-done
+-fi
+-
+-if [ x"$dir_arg" != x ]
+-then
+-	$doit $instcmd $dst &&
+-
+-	if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else : ; fi &&
+-	if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else : ; fi &&
+-	if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else : ; fi &&
+-	if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else : ; fi
+-else
+-
+-# If we're going to rename the final executable, determine the name now.
+-
+-	if [ x"$transformarg" = x ] 
+-	then
+-		dstfile=`basename $dst`
+-	else
+-		dstfile=`basename $dst $transformbasename | 
+-			sed $transformarg`$transformbasename
+-	fi
+-
+-# don't allow the sed command to completely eliminate the filename
+-
+-	if [ x"$dstfile" = x ] 
+-	then
+-		dstfile=`basename $dst`
+-	else
+-		:
+-	fi
+-
+-# Make a temp file name in the proper directory.
+-
+-	dsttmp=$dstdir/#inst.$$#
+-
+-# Move or copy the file name to the temp name
+-
+-	$doit $instcmd $src $dsttmp &&
+-
+-	trap "rm -f ${dsttmp}" 0 &&
+-
+-# and set any options; do chmod last to preserve setuid bits
+-
+-# If any of these fail, we abort the whole thing.  If we want to
+-# ignore errors from any of these, just make sure not to ignore
+-# errors from the above "$doit $instcmd $src $dsttmp" command.
+-
+-	if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else :;fi &&
+-	if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else :;fi &&
+-	if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else :;fi &&
+-	if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else :;fi &&
+-
+-# Now rename the file to the real destination.
+-
+-	$doit $rmcmd -f $dstdir/$dstfile &&
+-	$doit $mvcmd $dsttmp $dstdir/$dstfile 
+-
+-fi &&
+-
+-
+-exit 0
+diff --git a/autoconf/missing b/autoconf/missing
+deleted file mode 100755
+index dd58370..0000000
+--- a/autoconf/missing
++++ /dev/null
+@@ -1,336 +0,0 @@
+-#! /bin/sh
+-# Common stub for a few missing GNU programs while installing.
+-# Copyright 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
+-# Originally by Fran,cois Pinard <pinard at iro.umontreal.ca>, 1996.
+-
+-# This program is free software; you can redistribute it and/or modify
+-# it under the terms of the GNU General Public License as published by
+-# the Free Software Foundation; either version 2, or (at your option)
+-# any later version.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-# GNU General Public License for more details.
+-
+-# You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+-# 02111-1307, USA.
+-
+-# As a special exception to the GNU General Public License, if you
+-# distribute this file as part of a program that contains a
+-# configuration script generated by Autoconf, you may include it under
+-# the same distribution terms that you use for the rest of that program.
+-
+-if test $# -eq 0; then
+-  echo 1>&2 "Try \`$0 --help' for more information"
+-  exit 1
+-fi
+-
+-run=:
+-
+-# In the cases where this matters, `missing' is being run in the
+-# srcdir already.
+-if test -f configure.ac; then
+-  configure_ac=configure.ac
+-else
+-  configure_ac=configure.in
+-fi
+-
+-case "$1" in
+---run)
+-  # Try to run requested program, and just exit if it succeeds.
+-  run=
+-  shift
+-  "$@" && exit 0
+-  ;;
+-esac
+-
+-# If it does not exist, or fails to run (possibly an outdated version),
+-# try to emulate it.
+-case "$1" in
+-
+-  -h|--h|--he|--hel|--help)
+-    echo "\
+-$0 [OPTION]... PROGRAM [ARGUMENT]...
+-
+-Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
+-error status if there is no known handling for PROGRAM.
+-
+-Options:
+-  -h, --help      display this help and exit
+-  -v, --version   output version information and exit
+-  --run           try to run the given command, and emulate it if it fails
+-
+-Supported PROGRAM values:
+-  aclocal      touch file \`aclocal.m4'
+-  autoconf     touch file \`configure'
+-  autoheader   touch file \`config.h.in'
+-  automake     touch all \`Makefile.in' files
+-  bison        create \`y.tab.[ch]', if possible, from existing .[ch]
+-  flex         create \`lex.yy.c', if possible, from existing .c
+-  help2man     touch the output file
+-  lex          create \`lex.yy.c', if possible, from existing .c
+-  makeinfo     touch the output file
+-  tar          try tar, gnutar, gtar, then tar without non-portable flags
+-  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]"
+-    ;;
+-
+-  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
+-    echo "missing 0.4 - GNU automake"
+-    ;;
+-
+-  -*)
+-    echo 1>&2 "$0: Unknown \`$1' option"
+-    echo 1>&2 "Try \`$0 --help' for more information"
+-    exit 1
+-    ;;
+-
+-  aclocal*)
+-    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+-       # We have it, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified \`acinclude.m4' or \`${configure_ac}'.  You might want
+-         to install the \`Automake' and \`Perl' packages.  Grab them from
+-         any GNU archive site."
+-    touch aclocal.m4
+-    ;;
+-
+-  autoconf)
+-    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+-       # We have it, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified \`${configure_ac}'.  You might want to install the
+-         \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU
+-         archive site."
+-    touch configure
+-    ;;
+-
+-  autoheader)
+-    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+-       # We have it, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified \`acconfig.h' or \`${configure_ac}'.  You might want
+-         to install the \`Autoconf' and \`GNU m4' packages.  Grab them
+-         from any GNU archive site."
+-    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
+-    test -z "$files" && files="config.h"
+-    touch_files=
+-    for f in $files; do
+-      case "$f" in
+-      *:*) touch_files="$touch_files "`echo "$f" |
+-				       sed -e 's/^[^:]*://' -e 's/:.*//'`;;
+-      *) touch_files="$touch_files $f.in";;
+-      esac
+-    done
+-    touch $touch_files
+-    ;;
+-
+-  automake*)
+-    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+-       # We have it, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
+-         You might want to install the \`Automake' and \`Perl' packages.
+-         Grab them from any GNU archive site."
+-    find . -type f -name Makefile.am -print |
+-	   sed 's/\.am$/.in/' |
+-	   while read f; do touch "$f"; done
+-    ;;
+-
+-  autom4te)
+-    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+-       # We have it, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is needed, and you do not seem to have it handy on your
+-         system.  You might have modified some files without having the
+-         proper tools for further handling them.
+-         You can get \`$1Help2man' as part of \`Autoconf' from any GNU
+-         archive site."
+-
+-    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
+-    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
+-    if test -f "$file"; then
+-	touch $file
+-    else
+-	test -z "$file" || exec >$file
+-	echo "#! /bin/sh"
+-	echo "# Created by GNU Automake missing as a replacement of"
+-	echo "#  $ $@"
+-	echo "exit 0"
+-	chmod +x $file
+-	exit 1
+-    fi
+-    ;;
+-
+-  bison|yacc)
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified a \`.y' file.  You may need the \`Bison' package
+-         in order for those modifications to take effect.  You can get
+-         \`Bison' from any GNU archive site."
+-    rm -f y.tab.c y.tab.h
+-    if [ $# -ne 1 ]; then
+-        eval LASTARG="\${$#}"
+-	case "$LASTARG" in
+-	*.y)
+-	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
+-	    if [ -f "$SRCFILE" ]; then
+-	         cp "$SRCFILE" y.tab.c
+-	    fi
+-	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
+-	    if [ -f "$SRCFILE" ]; then
+-	         cp "$SRCFILE" y.tab.h
+-	    fi
+-	  ;;
+-	esac
+-    fi
+-    if [ ! -f y.tab.h ]; then
+-	echo >y.tab.h
+-    fi
+-    if [ ! -f y.tab.c ]; then
+-	echo 'main() { return 0; }' >y.tab.c
+-    fi
+-    ;;
+-
+-  lex|flex)
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified a \`.l' file.  You may need the \`Flex' package
+-         in order for those modifications to take effect.  You can get
+-         \`Flex' from any GNU archive site."
+-    rm -f lex.yy.c
+-    if [ $# -ne 1 ]; then
+-        eval LASTARG="\${$#}"
+-	case "$LASTARG" in
+-	*.l)
+-	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
+-	    if [ -f "$SRCFILE" ]; then
+-	         cp "$SRCFILE" lex.yy.c
+-	    fi
+-	  ;;
+-	esac
+-    fi
+-    if [ ! -f lex.yy.c ]; then
+-	echo 'main() { return 0; }' >lex.yy.c
+-    fi
+-    ;;
+-
+-  help2man)
+-    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+-       # We have it, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-	 you modified a dependency of a manual page.  You may need the
+-	 \`Help2man' package in order for those modifications to take
+-	 effect.  You can get \`Help2man' from any GNU archive site."
+-
+-    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
+-    if test -z "$file"; then
+-	file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
+-    fi
+-    if [ -f "$file" ]; then
+-	touch $file
+-    else
+-	test -z "$file" || exec >$file
+-	echo ".ab help2man is required to generate this page"
+-	exit 1
+-    fi
+-    ;;
+-
+-  makeinfo)
+-    if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then
+-       # We have makeinfo, but it failed.
+-       exit 1
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: \`$1' is missing on your system.  You should only need it if
+-         you modified a \`.texi' or \`.texinfo' file, or any other file
+-         indirectly affecting the aspect of the manual.  The spurious
+-         call might also be the consequence of using a buggy \`make' (AIX,
+-         DU, IRIX).  You might want to install the \`Texinfo' package or
+-         the \`GNU make' package.  Grab either from any GNU archive site."
+-    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
+-    if test -z "$file"; then
+-      file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
+-      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
+-    fi
+-    touch $file
+-    ;;
+-
+-  tar)
+-    shift
+-    if test -n "$run"; then
+-      echo 1>&2 "ERROR: \`tar' requires --run"
+-      exit 1
+-    fi
+-
+-    # We have already tried tar in the generic part.
+-    # Look for gnutar/gtar before invocation to avoid ugly error
+-    # messages.
+-    if (gnutar --version > /dev/null 2>&1); then
+-       gnutar ${1+"$@"} && exit 0
+-    fi
+-    if (gtar --version > /dev/null 2>&1); then
+-       gtar ${1+"$@"} && exit 0
+-    fi
+-    firstarg="$1"
+-    if shift; then
+-	case "$firstarg" in
+-	*o*)
+-	    firstarg=`echo "$firstarg" | sed s/o//`
+-	    tar "$firstarg" ${1+"$@"} && exit 0
+-	    ;;
+-	esac
+-	case "$firstarg" in
+-	*h*)
+-	    firstarg=`echo "$firstarg" | sed s/h//`
+-	    tar "$firstarg" ${1+"$@"} && exit 0
+-	    ;;
+-	esac
+-    fi
+-
+-    echo 1>&2 "\
+-WARNING: I can't seem to be able to run \`tar' with the given arguments.
+-         You may want to install GNU tar or Free paxutils, or check the
+-         command line arguments."
+-    exit 1
+-    ;;
+-
+-  *)
+-    echo 1>&2 "\
+-WARNING: \`$1' is needed, and you do not seem to have it handy on your
+-         system.  You might have modified some files without having the
+-         proper tools for further handling them.  Check the \`README' file,
+-         it often tells you about the needed prerequirements for installing
+-         this package.  You may also peek at any GNU archive site, in case
+-         some other package would contain this missing \`$1' program."
+-    exit 1
+-    ;;
+-esac
+-
+-exit 0
+diff --git a/autoconf/mkinstalldirs b/autoconf/mkinstalldirs
+deleted file mode 100755
+index f9c37af..0000000
+--- a/autoconf/mkinstalldirs
++++ /dev/null
+@@ -1,101 +0,0 @@
+-#! /bin/sh
+-# mkinstalldirs --- make directory hierarchy
+-# Author: Noah Friedman <friedman at prep.ai.mit.edu>
+-# Created: 1993-05-16
+-# Public domain
+-
+-# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $
+-
+-errstatus=0
+-dirmode=""
+-
+-usage="\
+-Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
+-
+-# process command line arguments
+-while test $# -gt 0 ; do
+-   case "${1}" in
+-     -h | --help | --h* )			# -h for help
+-	echo "${usage}" 1>&2; exit 0 ;;
+-     -m )					# -m PERM arg
+-	shift
+-	test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
+-	dirmode="${1}"
+-	shift ;;
+-     -- ) shift; break ;;			# stop option processing
+-     -* ) echo "${usage}" 1>&2; exit 1 ;;	# unknown option
+-     * )  break ;;				# first non-opt arg
+-   esac
+-done
+-
+-for file
+-do
+-  if test -d "$file"; then
+-    shift
+-  else
+-    break
+-  fi
+-done
+-
+-case $# in
+-0) exit 0 ;;
+-esac
+-
+-case $dirmode in
+-'')
+-  if mkdir -p -- . 2>/dev/null; then
+-    echo "mkdir -p -- $*"
+-    exec mkdir -p -- "$@"
+-  fi ;;
+-*)
+-  if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
+-    echo "mkdir -m $dirmode -p -- $*"
+-    exec mkdir -m "$dirmode" -p -- "$@"
+-  fi ;;
+-esac
+-
+-for file
+-do
+-   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
+-   shift
+-
+-   pathcomp=
+-   for d
+-   do
+-     pathcomp="$pathcomp$d"
+-     case "$pathcomp" in
+-       -* ) pathcomp=./$pathcomp ;;
+-     esac
+-
+-     if test ! -d "$pathcomp"; then
+-	echo "mkdir $pathcomp"
+-
+-	mkdir "$pathcomp" || lasterr=$?
+-
+-	if test ! -d "$pathcomp"; then
+-	  errstatus=$lasterr
+-	else
+-	  if test ! -z "$dirmode"; then
+-	     echo "chmod $dirmode $pathcomp"
+-
+-	     lasterr=""
+-	     chmod "$dirmode" "$pathcomp" || lasterr=$?
+-
+-	     if test ! -z "$lasterr"; then
+-	       errstatus=$lasterr
+-	     fi
+-	  fi
+-	fi
+-     fi
+-
+-     pathcomp="$pathcomp/"
+-   done
+-done
+-
+-exit $errstatus
+-
+-# Local Variables:
+-# mode: shell-script
+-# sh-indentation: 3
+-# End:
+-# mkinstalldirs ends here
+diff --git a/config.h.in b/config.h.in
+deleted file mode 100644
+index 00b4d77..0000000
+--- a/config.h.in
++++ /dev/null
+@@ -1,524 +0,0 @@
+-/* config.h.in.  Generated from configure.in by autoheader.  */
+-
+-/* Define to 1 if you are in debug mode */
+-#undef DEBUG
+-
+-/* place to install patches */
+-#undef DEFAULT_PATH
+-
+-/* Define resampler. */
+-#undef DEFAULT_RESAMPLATION
+-
+-/* Define to 1 if you have to add "_" to every identifiers. */
+-#undef DLSYM_NEEDS_UNDERSCORE
+-
+-/* Define to 1 if you enable Sherry WRD */
+-#undef ENABLE_SHERRY
+-
+-/* Define to 1 if you have the `alarm' function. */
+-#undef HAVE_ALARM
+-
+-/* Define to 1 if you have the <alsa/asoundlib.h> header file. */
+-#undef HAVE_ALSA_ASOUNDLIB_H
+-
+-/* Define to 1 if you have the <arpa/inet.h> header file. */
+-#undef HAVE_ARPA_INET_H
+-
+-/* Define if you have ARTS sound server */
+-#undef HAVE_ARTS
+-
+-/* Define to 1 if you have the <curses.h> header file. */
+-#undef HAVE_CURSES_H
+-
+-/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
+-   */
+-#undef HAVE_DIRENT_H
+-
+-/* Define to 1 if you have the <dlfcn.h> header file. */
+-#undef HAVE_DLFCN_H
+-
+-/* Define to 1 if you have the `dlopen' function. */
+-#undef HAVE_DLOPEN
+-
+-/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
+-#undef HAVE_DOPRNT
+-
+-/* Define to 1 if you have the `dup2' function. */
+-#undef HAVE_DUP2
+-
+-/* Define to 1 if you have the <errno.h> header file. */
+-#undef HAVE_ERRNO_H
+-
+-/* Define to 1 if you have the <fcntl.h> header file. */
+-#undef HAVE_FCNTL_H
+-
+-/* Define to 1 if you have the `floor' function. */
+-#undef HAVE_FLOOR
+-
+-/* Define to 1 if you have the `fork' function. */
+-#undef HAVE_FORK
+-
+-/* Define to 1 if you have the `getcwd' function. */
+-#undef HAVE_GETCWD
+-
+-/* Define to 1 if you have the `gethostbyname' function. */
+-#undef HAVE_GETHOSTBYNAME
+-
+-/* Define to 1 if you have the `getopt' function. */
+-#undef HAVE_GETOPT
+-
+-/* Define to 1 if you have the <getopt.h> header file. */
+-#undef HAVE_GETOPT_H
+-
+-/* Define to 1 if you have `getopt_long' function */
+-#undef HAVE_GETOPT_LONG
+-
+-/* Define to 1 if you have the `getpagesize' function. */
+-#undef HAVE_GETPAGESIZE
+-
+-/* Define to 1 if you have the `getpid' function. */
+-#undef HAVE_GETPID
+-
+-/* Define to 1 if you have the `gettimeofday' function. */
+-#undef HAVE_GETTIMEOFDAY
+-
+-/* Define to 1 if you have the `getwd' function. */
+-#undef HAVE_GETWD
+-
+-/* Define to 1 if you have the <glob.h> header file. */
+-#undef HAVE_GLOB_H
+-
+-/* Define to 1 if you have GTK+ 2.x */
+-#undef HAVE_GTK_2
+-
+-/* Define to 1 if you have the <inttypes.h> header file. */
+-#undef HAVE_INTTYPES_H
+-
+-/* Define to 1 if you have the `isatty' function. */
+-#undef HAVE_ISATTY
+-
+-/* Define to 1 if you have the `asound' library (-lasound). */
+-#undef HAVE_LIBASOUND
+-
+-/* Define to 1 if you have the `ICE' library (-lICE). */
+-#undef HAVE_LIBICE
+-
+-/* Define to 1 if you have the `m' library (-lm). */
+-#undef HAVE_LIBM
+-
+-/* Define to 1 if you have the `nsl' library (-lnsl). */
+-#undef HAVE_LIBNSL
+-
+-/* Define to 1 if you have the `ossaudio' library (-lossaudio). */
+-#undef HAVE_LIBOSSAUDIO
+-
+-/* Define to 1 if you have the `socket' library (-lsocket). */
+-#undef HAVE_LIBSOCKET
+-
+-/* Define to 1 if you have the `X11' library (-lX11). */
+-#undef HAVE_LIBX11
+-
+-/* Define to 1 if you have the `xpg4' library (-lxpg4). */
+-#undef HAVE_LIBXPG4
+-
+-/* Define to 1 if you have the `Xpm' library (-lXpm). */
+-#undef HAVE_LIBXPM
+-
+-/* Define to 1 if you have the <limits.h> header file. */
+-#undef HAVE_LIMITS_H
+-
+-/* Define to 1 if you have the <machine/endian.h> header file. */
+-#undef HAVE_MACHINE_ENDIAN_H
+-
+-/* Define to 1 if you have the <malloc.h> header file. */
+-#undef HAVE_MALLOC_H
+-
+-/* Define to 1 if you have the `memchr' function. */
+-#undef HAVE_MEMCHR
+-
+-/* Define to 1 if you have the `memmove' function. */
+-#undef HAVE_MEMMOVE
+-
+-/* Define to 1 if you have the <memory.h> header file. */
+-#undef HAVE_MEMORY_H
+-
+-/* Define to 1 if you have the `memset' function. */
+-#undef HAVE_MEMSET
+-
+-/* Define to 1 if you have the `mkstemp' function. */
+-#undef HAVE_MKSTEMP
+-
+-/* Define to 1 if you have a working `mmap' system call. */
+-#undef HAVE_MMAP
+-
+-/* Define to 1 if you have the `modf' function. */
+-#undef HAVE_MODF
+-
+-/* Define to 1 if you have the `munmap' function. */
+-#undef HAVE_MUNMAP
+-
+-/* Define to 1 if you have the <ncurses/curses.h> header file. */
+-#undef HAVE_NCURSES_CURSES_H
+-
+-/* Define to 1 if you have the <ncurses.h> header file. */
+-#undef HAVE_NCURSES_H
+-
+-/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
+-#undef HAVE_NDIR_H
+-
+-/* Define to 1 if you have the <netdb.h> header file. */
+-#undef HAVE_NETDB_H
+-
+-/* Define to 1 if you have the <netinet/in.h> header file. */
+-#undef HAVE_NETINET_IN_H
+-
+-/* Define to 1 if you have <mmsystem.h> file */
+-#undef HAVE_NEW_MMSYSTEM
+-
+-/* Define to 1 if you have the <nlist.h> header file. */
+-#undef HAVE_NLIST_H
+-
+-/* Define to 1 if you have `open_memstream' function */
+-#undef HAVE_OPEN_MEMSTREAM
+-
+-/* Define to 1 if you have the `popen' function. */
+-#undef HAVE_POPEN
+-
+-/* Define to 1 if you have the `pow' function. */
+-#undef HAVE_POW
+-
+-/* Define to 1 if you have the `select' function. */
+-#undef HAVE_SELECT
+-
+-/* Define to 1 if you have the `signal' function. */
+-#undef HAVE_SIGNAL
+-
+-/* Define to 1 if you have the <slang.h> header file. */
+-#undef HAVE_SLANG_H
+-
+-/* Define to 1 if you have the <slang/slang.h> header file. */
+-#undef HAVE_SLANG_SLANG_H
+-
+-/* Define to 1 if you have the `sleep' function. */
+-#undef HAVE_SLEEP
+-
+-/* Define to 1 if you have the `snd_seq_port_info_set_timestamping' function.
+-   */
+-#undef HAVE_SND_SEQ_PORT_INFO_SET_TIMESTAMPING
+-
+-/* Define to 1 if you have the `snprintf' function. */
+-#undef HAVE_SNPRINTF
+-
+-/* Define to 1 if you have the `socket' function. */
+-#undef HAVE_SOCKET
+-
+-/* Define to 1 if you have the <soundcard.h> header file. */
+-#undef HAVE_SOUNDCARD_H
+-
+-/* Define to 1 if you have the `sqrt' function. */
+-#undef HAVE_SQRT
+-
+-/* Define to 1 if you have the <stddef.h> header file. */
+-#undef HAVE_STDDEF_H
+-
+-/* Define to 1 if you have the <stdint.h> header file. */
+-#undef HAVE_STDINT_H
+-
+-/* Define to 1 if you have the <stdlib.h> header file. */
+-#undef HAVE_STDLIB_H
+-
+-/* Define to 1 if you have the `strcasecmp' function. */
+-#undef HAVE_STRCASECMP
+-
+-/* Define to 1 if you have the `strchr' function. */
+-#undef HAVE_STRCHR
+-
+-/* Define to 1 if you have the `strdup' function. */
+-#undef HAVE_STRDUP
+-
+-/* Define to 1 if you have the `strerror' function. */
+-#undef HAVE_STRERROR
+-
+-/* Define to 1 if cpp supports the ANSI # stringizing operator. */
+-#undef HAVE_STRINGIZE
+-
+-/* Define to 1 if you have the <strings.h> header file. */
+-#undef HAVE_STRINGS_H
+-
+-/* Define to 1 if you have the <string.h> header file. */
+-#undef HAVE_STRING_H
+-
+-/* Define to 1 if you have the `strlcat' function. */
+-#undef HAVE_STRLCAT
+-
+-/* Define to 1 if you have the `strlcpy' function. */
+-#undef HAVE_STRLCPY
+-
+-/* Define to 1 if you have the `strncasecmp' function. */
+-#undef HAVE_STRNCASECMP
+-
+-/* Define to 1 if you have the <stropts.h> header file. */
+-#undef HAVE_STROPTS_H
+-
+-/* Define to 1 if you have the `strrchr' function. */
+-#undef HAVE_STRRCHR
+-
+-/* Define to 1 if you have the `strstr' function. */
+-#undef HAVE_STRSTR
+-
+-/* Define to 1 if you have the `strtol' function. */
+-#undef HAVE_STRTOL
+-
+-/* Define to 1 if you have the <sys/asoundlib.h> header file. */
+-#undef HAVE_SYS_ASOUNDLIB_H
+-
+-/* Define to 1 if you have the <sys/audioio.h> header file. */
+-#undef HAVE_SYS_AUDIOIO_H
+-
+-/* Define to 1 if you have the <sys/awe_voice.h> header file. */
+-#undef HAVE_SYS_AWE_VOICE_H
+-
+-/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
+-   */
+-#undef HAVE_SYS_DIR_H
+-
+-/* Define to 1 if you have the <sys/ioctl.h> header file. */
+-#undef HAVE_SYS_IOCTL_H
+-
+-/* Define to 1 if you have the <sys/ipc.h> header file. */
+-#undef HAVE_SYS_IPC_H
+-
+-/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
+-   */
+-#undef HAVE_SYS_NDIR_H
+-
+-/* Define to 1 if you have the <sys/param.h> header file. */
+-#undef HAVE_SYS_PARAM_H
+-
+-/* Define to 1 if you have the <sys/shm.h> header file. */
+-#undef HAVE_SYS_SHM_H
+-
+-/* Define to 1 if you have the <sys/socket.h> header file. */
+-#undef HAVE_SYS_SOCKET_H
+-
+-/* Define to 1 if you have the <sys/soundcard.h> header file. */
+-#undef HAVE_SYS_SOUNDCARD_H
+-
+-/* Define to 1 if you have the <sys/stat.h> header file. */
+-#undef HAVE_SYS_STAT_H
+-
+-/* Define to 1 if you have the <sys/sysctl.h> header file. */
+-#undef HAVE_SYS_SYSCTL_H
+-
+-/* Define to 1 if you have the <sys/time.h> header file. */
+-#undef HAVE_SYS_TIME_H
+-
+-/* Define to 1 if you have the <sys/types.h> header file. */
+-#undef HAVE_SYS_TYPES_H
+-
+-/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
+-#undef HAVE_SYS_WAIT_H
+-
+-/* Define to 1 if you have the <termios.h> header file. */
+-#undef HAVE_TERMIOS_H
+-
+-/* Define to 1 if you use semun keyword */
+-#undef HAVE_UNION_SEMUN
+-
+-/* Define to 1 if you have the <unistd.h> header file. */
+-#undef HAVE_UNISTD_H
+-
+-/* Define to 1 if you have the `usleep' function. */
+-#undef HAVE_USLEEP
+-
+-/* Define to 1 if you have the `vfork' function. */
+-#undef HAVE_VFORK
+-
+-/* Define to 1 if you have the <vfork.h> header file. */
+-#undef HAVE_VFORK_H
+-
+-/* Define to 1 if you have the `vprintf' function. */
+-#undef HAVE_VPRINTF
+-
+-/* Define to 1 if you have the `vsnprintf' function. */
+-#undef HAVE_VSNPRINTF
+-
+-/* Define to 1 if `fork' works. */
+-#undef HAVE_WORKING_FORK
+-
+-/* Define to 1 if `vfork' works. */
+-#undef HAVE_WORKING_VFORK
+-
+-/* Define to 1 if you have the <X11/extensions/XShm.h> header file. */
+-#undef HAVE_X11_EXTENSIONS_XSHM_H
+-
+-/* Define to 1 if you have the <X11/Xlib.h> header file. */
+-#undef HAVE_X11_XLIB_H
+-
+-/* Define to 1 if you have the <X11/Xmu/ExtAgent.h> header file. */
+-#undef HAVE_X11_XMU_EXTAGENT_H
+-
+-/* Define to 1 if you have the <X11/Xaw3d/Tip.h> header file. */
+-#undef HAVE_XAW3D_TIP
+-
+-/* Define to 1 if you have the `XmuRegisterExternalAgent' function. */
+-#undef HAVE_XMUREGISTEREXTERNALAGENT
+-
+-/* Define to 1 if you have the `XShmCreatePixmap' function. */
+-#undef HAVE_XSHMCREATEPIXMAP
+-
+-/* Define to 1 if you are NOT in debug mode */
+-#undef NDEBUG
+-
+-/* Define to 1 if you use libneXtaw. */
+-#undef NEXTAW
+-
+-/* Define to 1 if you do not have <string.h>. */
+-#undef NO_STRING_H
+-
+-/* Define to 1 if you cannot use volatile keyword */
+-#undef NO_VOLATILE
+-
+-/* Define to 1 if you need offix support */
+-#undef OFFIX
+-
+-/* oss device name */
+-#undef OSS_DEVICE
+-
+-/* Name of package */
+-#undef PACKAGE
+-
+-/* Define to the address where bug reports for this package should be sent. */
+-#undef PACKAGE_BUGREPORT
+-
+-/* Define to the full name of this package. */
+-#undef PACKAGE_NAME
+-
+-/* Define to the full name and version of this package. */
+-#undef PACKAGE_STRING
+-
+-/* Define to the one symbol short name of this package. */
+-#undef PACKAGE_TARNAME
+-
+-/* Define to the version of this package. */
+-#undef PACKAGE_VERSION
+-
+-/* a compatibility matter. ignore it. */
+-#undef PKGDATADIR
+-
+-/* place to install modules */
+-#undef PKGLIBDIR
+-
+-/* Define to 1 if the C compiler supports function prototypes. */
+-#undef PROTOTYPES
+-
+-/* Define as the return type of signal handlers (`int' or `void'). */
+-#undef RETSIGTYPE
+-
+-/* Define to 1 if the `setvbuf' function takes the buffering type as its
+-   second argument and the buffer pointer as the third, as on System V before
+-   release 3. */
+-#undef SETVBUF_REVERSED
+-
+-/* shared library extention */
+-#undef SHARED_LIB_EXT
+-
+-/* Define to 1 if you have the ANSI C header files. */
+-#undef STDC_HEADERS
+-
+-/* Define to 1 if you need network support */
+-#undef SUPPORT_SOCKET
+-
+-/* Define to 1 if you need spectrogram vewer. */
+-#undef SUPPORT_SOUNDSPEC
+-
+-/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
+-#undef TIME_WITH_SYS_TIME
+-
+-/* the output specification */
+-#undef TIMIDITY_OUTPUT_ID
+-
+-/* for windows gui */
+-#undef TIMID_VERSION
+-
+-/* Define to 1 if your <sys/time.h> declares `struct tm'. */
+-#undef TM_IN_SYS_TIME
+-
+-/* Define to 1 if you use altivec */
+-#undef USE_ALTIVEC
+-
+-/* Define to 1 if you use PDcurses */
+-#undef USE_PDCURSES
+-
+-/* A 'va_copy' style function */
+-#undef VA_COPY
+-
+-/* 'va_lists' cannot be copies as values */
+-#undef VA_COPY_AS_ARRAY
+-
+-/* Version number of package */
+-#undef VERSION
+-
+-/* Define to 1 if you cpmpile windos driver. */
+-#undef WINDRV
+-
+-/* Define to 1 if your processor stores words with the most significant byte
+-   first (like Motorola and SPARC, unlike Intel and VAX). */
+-#undef WORDS_BIGENDIAN
+-
+-/* Define to 1 if you need wrd support for X. */
+-#undef WRDT_X
+-
+-/* Define to 1 if you have libXaw3d. */
+-#undef XAW3D
+-
+-/* Define to 1 if you use libXawPlus. */
+-#undef XAWPLUS
+-
+-/* Define to 1 if you want xdnd support. */
+-#undef XDND
+-
+-/* Define to 1 if the X Window System is missing or not being used. */
+-#undef X_DISPLAY_MISSING
+-
+-/* Define to 1 if type `char' is unsigned and you are not using gcc.  */
+-#ifndef __CHAR_UNSIGNED__
+-# undef __CHAR_UNSIGNED__
+-#endif
+-
+-/* Define like PROTOTYPES; this can be used by system headers. */
+-#undef __PROTOTYPES
+-
+-/* Define to empty if `const' does not conform to ANSI C. */
+-#undef const
+-
+-/* Define to `__inline__' or `__inline' if that's what the C compiler
+-   calls it, or to nothing if 'inline' is not supported under any name.  */
+-#ifndef __cplusplus
+-#undef inline
+-#endif
+-
+-/* Define to `long' if <sys/types.h> does not define. */
+-#undef off_t
+-
+-/* for VC */
+-#undef pclose
+-
+-/* Define to `int' if <sys/types.h> does not define. */
+-#undef pid_t
+-
+-/* for VC */
+-#undef popen
+-
+-/* Define to `unsigned' if <sys/types.h> does not define. */
+-#undef size_t
+-
+-/* for VC */
+-#undef snprintf
+-
+-/* Define as `fork' if `vfork' does not work. */
+-#undef vfork
+-
+-/* Define to empty if the keyword `volatile' does not work. Warning: valid
+-   code using `volatile' can become incorrect without. Disable with care. */
+-#undef volatile
+diff --git a/configs/Makefile.in b/configs/Makefile.in
+deleted file mode 100644
+index 1a7a381..0000000
+--- a/configs/Makefile.in
++++ /dev/null
+@@ -1,425 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2003 Masanao Izumo <is at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-
+-EXTRA_DIST = \
+-  msc6-project.zip \
+-  msc6-sjis.txt \
+-  msc7-project.zip \
+-  msc7-sjis.txt
+-
+-subdir = configs
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  configs/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/configure b/configure
+deleted file mode 100755
+index 59f3c3d..0000000
+--- a/configure
++++ /dev/null
+@@ -1,22707 +0,0 @@
+-#! /bin/sh
+-# Guess values for system-dependent variables and create Makefiles.
+-# Generated by GNU Autoconf 2.59 for TiMidity++ 2.13.2.
+-#
+-# Report bugs to <root at mput.dip.jp>.
+-#
+-# 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='TiMidity++'
+-PACKAGE_TARNAME='TiMidity++'
+-PACKAGE_VERSION='2.13.2'
+-PACKAGE_STRING='TiMidity++ 2.13.2'
+-PACKAGE_BUGREPORT='root at mput.dip.jp'
+-
+-ac_unique_file="timidity/timidity.c"
+-# Factoring default headers for most tests.
+-ac_includes_default="\
+-#include <stdio.h>
+-#if HAVE_SYS_TYPES_H
+-# include <sys/types.h>
+-#endif
+-#if HAVE_SYS_STAT_H
+-# include <sys/stat.h>
+-#endif
+-#if STDC_HEADERS
+-# include <stdlib.h>
+-# include <stddef.h>
+-#else
+-# if HAVE_STDLIB_H
+-#  include <stdlib.h>
+-# endif
+-#endif
+-#if HAVE_STRING_H
+-# if !STDC_HEADERS && HAVE_MEMORY_H
+-#  include <memory.h>
+-# endif
+-# include <string.h>
+-#endif
+-#if HAVE_STRINGS_H
+-# include <strings.h>
+-#endif
+-#if HAVE_INTTYPES_H
+-# include <inttypes.h>
+-#else
+-# if HAVE_STDINT_H
+-#  include <stdint.h>
+-# endif
+-#endif
+-#if HAVE_UNISTD_H
+-# include <unistd.h>
+-#endif"
+-
+-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT XAW_INSTALL_RESOURCE_FILES_TRUE XAW_INSTALL_RESOURCE_FILES_FALSE xawresdir EMACS lispdir CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP RANLIB ac_ct_R
 ANLIB LN_S X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS LIBOBJS NEEDGETOPT_TRUE NEEDGETOPT_FALSE ALSA_CFLAGS ALSA_LIBS ARTSCCONFIG ARTSLIBS ARTSINCL ESD_CONFIG ESD_CFLAGS ESD_LIBS AO_CFLAGS AO_LIBS VORBIS_CFLAGS VORBIS_LIBS VORBISFILE_LIBS VORBISENC_LIBS OGG_CFLAGS OGG_LIBS LIBFLAC_CFLAGS LIBFLAC_LIBS LIBOGGFLAC_CFLAGS LIBOGGFLAC_LIBS NEEDDLOPEN_TRUE NEEDDLOPEN_FALSE ENABLE_XDND_TRUE ENABLE_XDND_FALSE ENABLE_NCURSES_TRUE ENABLE_NCURSES_FALSE n_so_libs ENABLE_SLANG_TRUE ENABLE_SLANG_FALSE s_so_libs ENABLE_MOTIF_TRUE ENABLE_MOTIF_FALSE m_so_libs ENABLE_TCLTK_TRUE ENABLE_TCLTK_FALSE k_so_libs ENABLE_DYNAMIC_TCLTK_TRUE ENABLE_DYNAMIC_TCLTK_FALSE ENABLE_EMACS_TRUE ENABLE_EMACS_FALSE e_so_libs ENABLE_VT100_TRUE ENABLE_VT100_FALSE T_so_libs ENABLE_XAW_TRUE ENABLE_XAW_FALSE a_so_libs ENABLE_DYNAMIC_XAW_TRUE ENABLE_DYNAMIC_XAW_FALSE ENABLE_XSKIN_TRUE ENABLE_XSKIN_FALSE i_so_libs ENABLE_GTK_TRUE ENABLE_GTK_FALSE PKG_CONFIG GTK_CONFIG GTK_CFLAGS GTK_LIBS g_so_libs ENABLE_SERVER_TRUE ENABLE_
 SERVER_FALSE r_so_libs ENABLE_ALSASEQ_TRUE ENABLE_ALSASEQ_FALSE A_so_libs ENABLE_WINSYN_TRUE ENABLE_WINSYN_FALSE W_so_libs ENABLE_PORTMIDISYN_TRUE ENABLE_PORTMIDISYN_FALSE P_so_libs ENABLE_NPSYN_TRUE ENABLE_NPSYN_FALSE ENABLE_W32G_SYN_TRUE ENABLE_W32G_SYN_FALSE ENABLE_W32GUI_TRUE ENABLE_W32GUI_FALSE w_so_libs ENABLE_PLUGIN_TRUE ENABLE_PLUGIN_FALSE p_so_libs ENABLE_NETWORK_TRUE ENABLE_NETWORK_FALSE ENABLE_SOUND_SPEC_TRUE ENABLE_SOUND_SPEC_FALSE ENABLE_WRD_TRUE ENABLE_WRD_FALSE W32G_GUI_TRUE W32G_GUI_FALSE WINDRV_TRUE WINDRV_FALSE MSYS_TRUE MSYS_FALSE VCPP_TRUE VCPP_FALSE POCC_TRUE POCC_FALSE BORLANDC_TRUE BORLANDC_FALSE WATCOM_C_TRUE WATCOM_C_FALSE DMC_TRUE DMC_FALSE MINGWGCC_TRUE MINGWGCC_FALSE W32READDIR_TRUE W32READDIR_FALSE BORLANDC_START BORLANDC_LDFLAGS timidity_LDFLAGS WATCOM_LDFLAGS DMC_LDFLAGS VCPP_LDFLAGS POCC_LDFLAGS SYSEXTRAS EXTRALIBS NETSRCS ELFILES SHLD SHCFLAGS dynamic_targets so WISH tcltk_dep INTERFACE_SRCS pkgdatadir pkglibdir LTLIBOBJS'
+-ac_subst_files=''
+-
+-# Initialize some variables set by options.
+-ac_init_help=
+-ac_init_version=false
+-# The variables have the same names as the options, with
+-# dashes changed to underlines.
+-cache_file=/dev/null
+-exec_prefix=NONE
+-no_create=
+-no_recursion=
+-prefix=NONE
+-program_prefix=NONE
+-program_suffix=NONE
+-program_transform_name=s,x,x,
+-silent=
+-site=
+-srcdir=
+-verbose=
+-x_includes=NONE
+-x_libraries=NONE
+-
+-# Installation directory options.
+-# These are left unexpanded so users can "make install exec_prefix=/foo"
+-# and all the variables that are supposed to be based on exec_prefix
+-# by default will actually change.
+-# Use braces instead of parens because sh, perl, etc. also accept them.
+-bindir='${exec_prefix}/bin'
+-sbindir='${exec_prefix}/sbin'
+-libexecdir='${exec_prefix}/libexec'
+-datadir='${prefix}/share'
+-sysconfdir='${prefix}/etc'
+-sharedstatedir='${prefix}/com'
+-localstatedir='${prefix}/var'
+-libdir='${exec_prefix}/lib'
+-includedir='${prefix}/include'
+-oldincludedir='/usr/include'
+-infodir='${prefix}/info'
+-mandir='${prefix}/man'
+-
+-ac_prev=
+-for ac_option
+-do
+-  # If the previous option needs an argument, assign it.
+-  if test -n "$ac_prev"; then
+-    eval "$ac_prev=\$ac_option"
+-    ac_prev=
+-    continue
+-  fi
+-
+-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
+-
+-  # Accept the important Cygnus configure options, so we can diagnose typos.
+-
+-  case $ac_option in
+-
+-  -bindir | --bindir | --bindi | --bind | --bin | --bi)
+-    ac_prev=bindir ;;
+-  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+-    bindir=$ac_optarg ;;
+-
+-  -build | --build | --buil | --bui | --bu)
+-    ac_prev=build_alias ;;
+-  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+-    build_alias=$ac_optarg ;;
+-
+-  -cache-file | --cache-file | --cache-fil | --cache-fi \
+-  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+-    ac_prev=cache_file ;;
+-  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+-  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+-    cache_file=$ac_optarg ;;
+-
+-  --config-cache | -C)
+-    cache_file=config.cache ;;
+-
+-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
+-    ac_prev=datadir ;;
+-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+-  | --da=*)
+-    datadir=$ac_optarg ;;
+-
+-  -disable-* | --disable-*)
+-    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+-    # Reject names that are not valid shell variable names.
+-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
+-   { (exit 1); exit 1; }; }
+-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
+-    eval "enable_$ac_feature=no" ;;
+-
+-  -enable-* | --enable-*)
+-    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+-    # Reject names that are not valid shell variable names.
+-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
+-   { (exit 1); exit 1; }; }
+-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "enable_$ac_feature='$ac_optarg'" ;;
+-
+-  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+-  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+-  | --exec | --exe | --ex)
+-    ac_prev=exec_prefix ;;
+-  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+-  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+-  | --exec=* | --exe=* | --ex=*)
+-    exec_prefix=$ac_optarg ;;
+-
+-  -gas | --gas | --ga | --g)
+-    # Obsolete; use --with-gas.
+-    with_gas=yes ;;
+-
+-  -help | --help | --hel | --he | -h)
+-    ac_init_help=long ;;
+-  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+-    ac_init_help=recursive ;;
+-  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+-    ac_init_help=short ;;
+-
+-  -host | --host | --hos | --ho)
+-    ac_prev=host_alias ;;
+-  -host=* | --host=* | --hos=* | --ho=*)
+-    host_alias=$ac_optarg ;;
+-
+-  -includedir | --includedir | --includedi | --included | --include \
+-  | --includ | --inclu | --incl | --inc)
+-    ac_prev=includedir ;;
+-  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+-  | --includ=* | --inclu=* | --incl=* | --inc=*)
+-    includedir=$ac_optarg ;;
+-
+-  -infodir | --infodir | --infodi | --infod | --info | --inf)
+-    ac_prev=infodir ;;
+-  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+-    infodir=$ac_optarg ;;
+-
+-  -libdir | --libdir | --libdi | --libd)
+-    ac_prev=libdir ;;
+-  -libdir=* | --libdir=* | --libdi=* | --libd=*)
+-    libdir=$ac_optarg ;;
+-
+-  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+-  | --libexe | --libex | --libe)
+-    ac_prev=libexecdir ;;
+-  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+-  | --libexe=* | --libex=* | --libe=*)
+-    libexecdir=$ac_optarg ;;
+-
+-  -localstatedir | --localstatedir | --localstatedi | --localstated \
+-  | --localstate | --localstat | --localsta | --localst \
+-  | --locals | --local | --loca | --loc | --lo)
+-    ac_prev=localstatedir ;;
+-  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
+-    localstatedir=$ac_optarg ;;
+-
+-  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+-    ac_prev=mandir ;;
+-  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+-    mandir=$ac_optarg ;;
+-
+-  -nfp | --nfp | --nf)
+-    # Obsolete; use --without-fp.
+-    with_fp=no ;;
+-
+-  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+-  | --no-cr | --no-c | -n)
+-    no_create=yes ;;
+-
+-  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+-  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+-    no_recursion=yes ;;
+-
+-  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+-  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+-  | --oldin | --oldi | --old | --ol | --o)
+-    ac_prev=oldincludedir ;;
+-  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+-  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+-  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+-    oldincludedir=$ac_optarg ;;
+-
+-  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+-    ac_prev=prefix ;;
+-  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+-    prefix=$ac_optarg ;;
+-
+-  -program-prefix | --program-prefix | --program-prefi | --program-pref \
+-  | --program-pre | --program-pr | --program-p)
+-    ac_prev=program_prefix ;;
+-  -program-prefix=* | --program-prefix=* | --program-prefi=* \
+-  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+-    program_prefix=$ac_optarg ;;
+-
+-  -program-suffix | --program-suffix | --program-suffi | --program-suff \
+-  | --program-suf | --program-su | --program-s)
+-    ac_prev=program_suffix ;;
+-  -program-suffix=* | --program-suffix=* | --program-suffi=* \
+-  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+-    program_suffix=$ac_optarg ;;
+-
+-  -program-transform-name | --program-transform-name \
+-  | --program-transform-nam | --program-transform-na \
+-  | --program-transform-n | --program-transform- \
+-  | --program-transform | --program-transfor \
+-  | --program-transfo | --program-transf \
+-  | --program-trans | --program-tran \
+-  | --progr-tra | --program-tr | --program-t)
+-    ac_prev=program_transform_name ;;
+-  -program-transform-name=* | --program-transform-name=* \
+-  | --program-transform-nam=* | --program-transform-na=* \
+-  | --program-transform-n=* | --program-transform-=* \
+-  | --program-transform=* | --program-transfor=* \
+-  | --program-transfo=* | --program-transf=* \
+-  | --program-trans=* | --program-tran=* \
+-  | --progr-tra=* | --program-tr=* | --program-t=*)
+-    program_transform_name=$ac_optarg ;;
+-
+-  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+-  | -silent | --silent | --silen | --sile | --sil)
+-    silent=yes ;;
+-
+-  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+-    ac_prev=sbindir ;;
+-  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+-  | --sbi=* | --sb=*)
+-    sbindir=$ac_optarg ;;
+-
+-  -sharedstatedir | --sharedstatedir | --sharedstatedi \
+-  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+-  | --sharedst | --shareds | --shared | --share | --shar \
+-  | --sha | --sh)
+-    ac_prev=sharedstatedir ;;
+-  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+-  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+-  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+-  | --sha=* | --sh=*)
+-    sharedstatedir=$ac_optarg ;;
+-
+-  -site | --site | --sit)
+-    ac_prev=site ;;
+-  -site=* | --site=* | --sit=*)
+-    site=$ac_optarg ;;
+-
+-  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+-    ac_prev=srcdir ;;
+-  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+-    srcdir=$ac_optarg ;;
+-
+-  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+-  | --syscon | --sysco | --sysc | --sys | --sy)
+-    ac_prev=sysconfdir ;;
+-  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+-  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+-    sysconfdir=$ac_optarg ;;
+-
+-  -target | --target | --targe | --targ | --tar | --ta | --t)
+-    ac_prev=target_alias ;;
+-  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+-    target_alias=$ac_optarg ;;
+-
+-  -v | -verbose | --verbose | --verbos | --verbo | --verb)
+-    verbose=yes ;;
+-
+-  -version | --version | --versio | --versi | --vers | -V)
+-    ac_init_version=: ;;
+-
+-  -with-* | --with-*)
+-    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+-    # Reject names that are not valid shell variable names.
+-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+-      { echo "$as_me: error: invalid package name: $ac_package" >&2
+-   { (exit 1); exit 1; }; }
+-    ac_package=`echo $ac_package| sed 's/-/_/g'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "with_$ac_package='$ac_optarg'" ;;
+-
+-  -without-* | --without-*)
+-    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+-    # Reject names that are not valid shell variable names.
+-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+-      { echo "$as_me: error: invalid package name: $ac_package" >&2
+-   { (exit 1); exit 1; }; }
+-    ac_package=`echo $ac_package | sed 's/-/_/g'`
+-    eval "with_$ac_package=no" ;;
+-
+-  --x)
+-    # Obsolete; use --with-x.
+-    with_x=yes ;;
+-
+-  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+-  | --x-incl | --x-inc | --x-in | --x-i)
+-    ac_prev=x_includes ;;
+-  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+-  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+-    x_includes=$ac_optarg ;;
+-
+-  -x-libraries | --x-libraries | --x-librarie | --x-librari \
+-  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+-    ac_prev=x_libraries ;;
+-  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+-  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+-    x_libraries=$ac_optarg ;;
+-
+-  -*) { echo "$as_me: error: unrecognized option: $ac_option
+-Try \`$0 --help' for more information." >&2
+-   { (exit 1); exit 1; }; }
+-    ;;
+-
+-  *=*)
+-    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+-    # Reject names that are not valid shell variable names.
+-    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
+-      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
+-   { (exit 1); exit 1; }; }
+-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
+-    eval "$ac_envvar='$ac_optarg'"
+-    export $ac_envvar ;;
+-
+-  *)
+-    # FIXME: should be removed in autoconf 3.0.
+-    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+-    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+-      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+-    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
+-    ;;
+-
+-  esac
+-done
+-
+-if test -n "$ac_prev"; then
+-  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+-  { echo "$as_me: error: missing argument to $ac_option" >&2
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-# Be sure to have absolute paths.
+-for ac_var in exec_prefix prefix
+-do
+-  eval ac_val=$`echo $ac_var`
+-  case $ac_val in
+-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
+-  esac
+-done
+-
+-# Be sure to have absolute paths.
+-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
+-	      localstatedir libdir includedir oldincludedir infodir mandir
+-do
+-  eval ac_val=$`echo $ac_var`
+-  case $ac_val in
+-    [\\/$]* | ?:[\\/]* ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
+-  esac
+-done
+-
+-# There might be people who depend on the old broken behavior: `$host'
+-# used to hold the argument of --host etc.
+-# FIXME: To remove some day.
+-build=$build_alias
+-host=$host_alias
+-target=$target_alias
+-
+-# FIXME: To remove some day.
+-if test "x$host_alias" != x; then
+-  if test "x$build_alias" = x; then
+-    cross_compiling=maybe
+-    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
+-    If a cross compiler is detected then cross compile mode will be used." >&2
+-  elif test "x$build_alias" != "x$host_alias"; then
+-    cross_compiling=yes
+-  fi
+-fi
+-
+-ac_tool_prefix=
+-test -n "$host_alias" && ac_tool_prefix=$host_alias-
+-
+-test "$silent" = yes && exec 6>/dev/null
+-
+-
+-# Find the source files, if location was not specified.
+-if test -z "$srcdir"; then
+-  ac_srcdir_defaulted=yes
+-  # Try the directory containing this script, then its parent.
+-  ac_confdir=`(dirname "$0") 2>/dev/null ||
+-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$0" : 'X\(//\)[^/]' \| \
+-	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$0" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  srcdir=$ac_confdir
+-  if test ! -r $srcdir/$ac_unique_file; then
+-    srcdir=..
+-  fi
+-else
+-  ac_srcdir_defaulted=no
+-fi
+-if test ! -r $srcdir/$ac_unique_file; then
+-  if test "$ac_srcdir_defaulted" = yes; then
+-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
+-   { (exit 1); exit 1; }; }
+-  else
+-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
+-   { (exit 1); exit 1; }; }
+-  fi
+-fi
+-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
+-  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
+-   { (exit 1); exit 1; }; }
+-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
+-ac_env_build_alias_set=${build_alias+set}
+-ac_env_build_alias_value=$build_alias
+-ac_cv_env_build_alias_set=${build_alias+set}
+-ac_cv_env_build_alias_value=$build_alias
+-ac_env_host_alias_set=${host_alias+set}
+-ac_env_host_alias_value=$host_alias
+-ac_cv_env_host_alias_set=${host_alias+set}
+-ac_cv_env_host_alias_value=$host_alias
+-ac_env_target_alias_set=${target_alias+set}
+-ac_env_target_alias_value=$target_alias
+-ac_cv_env_target_alias_set=${target_alias+set}
+-ac_cv_env_target_alias_value=$target_alias
+-ac_env_CC_set=${CC+set}
+-ac_env_CC_value=$CC
+-ac_cv_env_CC_set=${CC+set}
+-ac_cv_env_CC_value=$CC
+-ac_env_CFLAGS_set=${CFLAGS+set}
+-ac_env_CFLAGS_value=$CFLAGS
+-ac_cv_env_CFLAGS_set=${CFLAGS+set}
+-ac_cv_env_CFLAGS_value=$CFLAGS
+-ac_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_env_LDFLAGS_value=$LDFLAGS
+-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_cv_env_LDFLAGS_value=$LDFLAGS
+-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_env_CPPFLAGS_value=$CPPFLAGS
+-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
+-ac_env_CPP_set=${CPP+set}
+-ac_env_CPP_value=$CPP
+-ac_cv_env_CPP_set=${CPP+set}
+-ac_cv_env_CPP_value=$CPP
+-
+-#
+-# Report the --help message.
+-#
+-if test "$ac_init_help" = "long"; then
+-  # Omit some internal or obsolete options to make the list less imposing.
+-  # This message is too long to be a string in the A/UX 3.1 sh.
+-  cat <<_ACEOF
+-\`configure' configures TiMidity++ 2.13.2 to adapt to many kinds of systems.
+-
+-Usage: $0 [OPTION]... [VAR=VALUE]...
+-
+-To assign environment variables (e.g., CC, CFLAGS...), specify them as
+-VAR=VALUE.  See below for descriptions of some of the useful variables.
+-
+-Defaults for the options are specified in brackets.
+-
+-Configuration:
+-  -h, --help              display this help and exit
+-      --help=short        display options specific to this package
+-      --help=recursive    display the short help of all the included packages
+-  -V, --version           display version information and exit
+-  -q, --quiet, --silent   do not print \`checking...' messages
+-      --cache-file=FILE   cache test results in FILE [disabled]
+-  -C, --config-cache      alias for \`--cache-file=config.cache'
+-  -n, --no-create         do not create output files
+-      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
+-
+-_ACEOF
+-
+-  cat <<_ACEOF
+-Installation directories:
+-  --prefix=PREFIX         install architecture-independent files in PREFIX
+-			  [$ac_default_prefix]
+-  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
+-			  [PREFIX]
+-
+-By default, \`make install' will install all the files in
+-\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
+-an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+-for instance \`--prefix=\$HOME'.
+-
+-For better control, use the options below.
+-
+-Fine tuning of the installation directories:
+-  --bindir=DIR           user executables [EPREFIX/bin]
+-  --sbindir=DIR          system admin executables [EPREFIX/sbin]
+-  --libexecdir=DIR       program executables [EPREFIX/libexec]
+-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
+-  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
+-  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
+-  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
+-  --libdir=DIR           object code libraries [EPREFIX/lib]
+-  --includedir=DIR       C header files [PREFIX/include]
+-  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
+-  --infodir=DIR          info documentation [PREFIX/info]
+-  --mandir=DIR           man documentation [PREFIX/man]
+-_ACEOF
+-
+-  cat <<\_ACEOF
+-
+-Program names:
+-  --program-prefix=PREFIX            prepend PREFIX to installed program names
+-  --program-suffix=SUFFIX            append SUFFIX to installed program names
+-  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
+-
+-X features:
+-  --x-includes=DIR    X include files are in DIR
+-  --x-libraries=DIR   X library files are in DIR
+-
+-System types:
+-  --build=BUILD     configure for building on BUILD [guessed]
+-  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
+-  --target=TARGET   configure for building compilers for TARGET [HOST]
+-_ACEOF
+-fi
+-
+-if test -n "$ac_init_help"; then
+-  case $ac_init_help in
+-     short | recursive ) echo "Configuration of TiMidity++ 2.13.2:";;
+-   esac
+-  cat <<\_ACEOF
+-
+-Optional Features:
+-  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
+-  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
+-  --enable-maintainer-mode enable make rules and dependencies not useful
+-                          (and sometimes confusing) to the casual installer
+-  --enable-debug          Build a debugging version.
+-  --disable-dependency-tracking Speeds up one-time builds
+-  --enable-dependency-tracking  Do not reject slow dependency extractors
+-  --enable-audio=mode_list Enable audio (Specify comma separated mode list):
+-                              default:   Automatically select audio device.
+-                              oss:       OSS /dev/dsp
+-                              sun:       SunOS /dev/audio
+-                              hpux:      HPUX /dev/audio
+-                              irix:      IRIX audio library
+-                              mme:       OSF/1 MME
+-                              sb_dsp:    BSD/OS 2.0 /dev/sb_dsp
+-                              w32:       Windows MMS
+-                              darwin:    Darwin CoreAudio
+-                              alsa:      ALSA pcm device
+-                              alib:      HPUX network audio (Alib)
+-                              nas:       NAS - Network Audio System
+-                              arts:      aRts
+-                              esd:       EsounD - Enlightened Sound Daemon
+-                              portaudio: PortAudio
+-                              npipe:     Named Pipe(windows)
+-                              jack:      JACK
+-                              ao:        Libao
+-                              vorbis:    Ogg Vorbis
+-                              flac:      FLAC / OggFLAC
+-                              speex:     Ogg Speex
+-                              gogo:      MP3 GOGO (Only Windows is supported)
+-  --disable-alsatest      Do not try to compile and run a test Alsa program
+-  --disable-esdtest       Do not try to compile and run a test ESD program
+-  --disable-aotest       Do not try to compile and run a test ao program
+-  --disable-oggtest       Do not try to compile and run a test Ogg program
+-  --disable-vorbistest       Do not try to compile and run a test Vorbis program
+-  --disable-libFLACtest       Do not try to compile and run a test libFLAC program
+-  --disable-libOggFLACtest       Do not try to compile and run a test libOggFLAC program
+-  --enable-interface=interface_list
+-                          Comma separated interface list
+-  --enable-dynamic        Enable dynamic link interface   (default is no)
+-  --enable-dynamic=dynamic_list
+-                          Comma separated dynamic interface list
+-  --enable-xdnd           Enable xdnd support             (default is no)
+-  --enable-ncurses        Enable ncurses interface        (default is no)
+-  --enable-slang          Enable slang interface          (default is no)
+-  --enable-motif          Enable motif interface          (default is no)
+-  --enable-tcltk          Enable tcltk interface          (default is no)
+-  --enable-emacs          Enable emacs interface          (default is no)
+-  --enable-vt100          Enable VT100 interface          (default is no)
+-  --enable-xaw            Enable athena interface         (default is no)
+-  --enable-xskin          Enable X skin interface         (default is no)
+-  --enable-gtk            Enable GTK+ interface           (default is no)
+-  --disable-gtktest       do not try to compile and run a test GTK+ program
+-  --disable-gtktest       Do not try to compile and run a test GTK program
+-  --enable-server         Enable server interface         (default is no)
+-  --enable-alsaseq        Enable ALSA sequencer server interface
+-                                                          (default is no)
+-  --enable-winsyn        Enable Windows Synthesizer interface
+-                                                          (default is no)
+-  --enable-portmidisyn        Enable PortMIDI Synthesizer interface
+-                                                          (default is no)
+-  --enable-npsyn        Enable Windows Named Pipe Synthesizer interface
+-                                                          (default is no)
+-  --enable-winsyng        Enable Windows GUI Synthesizer interface
+-                                                          (default is no)
+-  --enable-w32gui         Enable Windows GUI interface    (default is no)
+-  --enable-ump            UMP configuration               (default is no)
+-  --enable-windrv         Windows Driver interface(requires winsyn)
+-  --enable-offix          Enable offix support            (default is no)
+-  --enable-network        Enable network support          (default is no)
+-  --enable-spectrogram    Enable Sound Spectrogram Viewer (default is no)
+-  --enable-spline=method  Specify spline method.
+-                                  one of no,linear,cubic,lagrange,newton,gauss
+-                                                          (default is linear)
+-  --enable-wrd            Enable WRD interface for X      (default is no)
+-
+-Optional Packages:
+-  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
+-  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
+-  --with-includes=DIR     Specify include directories (colon separated)
+-  --with-libraries=DIR    Specify library directories (colon separated)
+-  --with-default-path=DIR Where timidity.cfg is  (PREFIX/share/timidity)
+-  --with-module-dir=DIR   Where to install interfaces (PREFIX/lib/timidity)
+-  --with-xaw-resource-prefix=DIR What prefix to install XAW's resource files to
+-     (optinal)
+-  --with-lispdir          Override the default lisp directory
+-  --with-elf              create ELF shared object instead of AOUT
+-  --with-x                use the X Window System
+-  --with-xawlib=lib      Try to link to these xaw widget libraries by the
+-                            order specified by the comma separated value list:
+-                             xaw: X11's libXaw
+-                             xaw3d: Xaw3d
+-                             neXtaw: neXtaw
+-                             XawPlus: XawPlus
+-                             default is --with-xawlib=xaw3d,xaw
+-  --with-tcl-includes=DIR Tcl include file path
+-  --with-tcl-libs=DIR     Tcl library file path
+-  --with-tk-includes=DIR  Tk include file path
+-  --with-tk-libs=DIR      Tk library file path
+-  --with-offix-includes=DIR Offix include file path
+-  --with-offix-libs=DIR   Offix include file path
+-  --with-nas-library=library NAS absolute library path(Don't use -laudio)
+-  --with-nas-includes=DIR NAS include files are in dir
+-  --with-default-output=<mode>  Specify default output mode (optional):
+-                                (default|alsa|alib|arts|nas|
+-                                esd|wav|au|aiff|list|vorbis|flac|speex|
+-                                gogo|portaudio|npipe|jack|ao)
+-  --with-alsa-prefix=PFX  Prefix where Alsa library is installed(optional)
+-  --with-alsa-inc-prefix=PFX  Prefix where include libraries are (optional)
+-  --with-esd-prefix=PFX   Prefix where ESD is installed (optional)
+-  --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)
+-  --with-ao=PFX   Prefix where libao is installed (optional)
+-  --with-ao-libraries=DIR   Directory where libao library is installed (optional)
+-  --with-ao-includes=DIR   Directory where libao header files are installed (optional)
+-  --with-ogg=PFX   Prefix where libogg is installed (optional)
+-  --with-ogg-libraries=DIR   Directory where libogg library is installed (optional)
+-  --with-ogg-includes=DIR   Directory where libogg header files are installed (optional)
+-  --with-vorbis=PFX   Prefix where libvorbis is installed (optional)
+-  --with-vorbis-libraries=DIR   Directory where libvorbis library is installed (optional)
+-  --with-vorbis-includes=DIR   Directory where libvorbis header files are installed (optional)
+-  --with-libFLAC=PFX   Prefix where libFLAC is installed (optional)
+-  --with-libFLAC-libraries=DIR   Directory where libFLAC library is installed (optional)
+-  --with-libFLAC-includes=DIR   Directory where libFLAC header files are installed (optional)
+-  --with-libOggFLAC=PFX   Prefix where libOggFLAC is installed (optional)
+-  --with-libOggFLAC-libraries=DIR   Directory where libOggFLAC library is installed (optional)
+-  --with-libOggFLAC-includes=DIR   Directory where libOggFLAC header files are installed (optional)
+-  --with-gtk-prefix=PFX   Prefix where GTK is installed (optional)
+-  --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed (optional)
+-
+-Some influential environment variables:
+-  CC          C compiler command
+-  CFLAGS      C compiler flags
+-  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
+-              nonstandard directory <lib dir>
+-  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
+-              headers in a nonstandard directory <include dir>
+-  CPP         C preprocessor
+-
+-Use these variables to override the choices made by `configure' or to help
+-it to find libraries and programs with nonstandard names/locations.
+-
+-Report bugs to <root at mput.dip.jp>.
+-_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
+-TiMidity++ configure 2.13.2
+-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.
+-_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 TiMidity++ $as_me 2.13.2, 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_aux_dir=
+-for ac_dir in autoconf $srcdir/autoconf; do
+-  if test -f $ac_dir/install-sh; then
+-    ac_aux_dir=$ac_dir
+-    ac_install_sh="$ac_aux_dir/install-sh -c"
+-    break
+-  elif test -f $ac_dir/install.sh; then
+-    ac_aux_dir=$ac_dir
+-    ac_install_sh="$ac_aux_dir/install.sh -c"
+-    break
+-  elif test -f $ac_dir/shtool; then
+-    ac_aux_dir=$ac_dir
+-    ac_install_sh="$ac_aux_dir/shtool install -c"
+-    break
+-  fi
+-done
+-if test -z "$ac_aux_dir"; then
+-  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in autoconf $srcdir/autoconf" >&5
+-echo "$as_me: error: cannot find install-sh or install.sh in autoconf $srcdir/autoconf" >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+-ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
+-
+-# Make sure we can run config.sub.
+-$ac_config_sub sun4 >/dev/null 2>&1 ||
+-  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
+-echo "$as_me: error: cannot run $ac_config_sub" >&2;}
+-   { (exit 1); exit 1; }; }
+-
+-echo "$as_me:$LINENO: checking build system type" >&5
+-echo $ECHO_N "checking build system type... $ECHO_C" >&6
+-if test "${ac_cv_build+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_build_alias=$build_alias
+-test -z "$ac_cv_build_alias" &&
+-  ac_cv_build_alias=`$ac_config_guess`
+-test -z "$ac_cv_build_alias" &&
+-  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
+-echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
+-   { (exit 1); exit 1; }; }
+-ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
+-   { (exit 1); exit 1; }; }
+-
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_build" >&5
+-echo "${ECHO_T}$ac_cv_build" >&6
+-build=$ac_cv_build
+-build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+-build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+-build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking host system type" >&5
+-echo $ECHO_N "checking host system type... $ECHO_C" >&6
+-if test "${ac_cv_host+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_host_alias=$host_alias
+-test -z "$ac_cv_host_alias" &&
+-  ac_cv_host_alias=$ac_cv_build_alias
+-ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
+-   { (exit 1); exit 1; }; }
+-
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_host" >&5
+-echo "${ECHO_T}$ac_cv_host" >&6
+-host=$ac_cv_host
+-host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+-host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+-host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking target system type" >&5
+-echo $ECHO_N "checking target system type... $ECHO_C" >&6
+-if test "${ac_cv_target+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_target_alias=$target_alias
+-test "x$ac_cv_target_alias" = "x" &&
+-  ac_cv_target_alias=$ac_cv_host_alias
+-ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
+-   { (exit 1); exit 1; }; }
+-
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_target" >&5
+-echo "${ECHO_T}$ac_cv_target" >&6
+-target=$ac_cv_target
+-target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+-target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+-target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-# The aliases save the names the user supplied, while $host etc.
+-# will get canonicalized.
+-test -n "$target_alias" &&
+-  test "$program_prefix$program_suffix$program_transform_name" = \
+-    NONENONEs,x,x, &&
+-  program_prefix=${target_alias}-
+-am__api_version="1.7"
+-# Find a good install program.  We prefer a C program (faster),
+-# so one script is as good as another.  But avoid the broken or
+-# incompatible versions:
+-# SysV /etc/install, /usr/sbin/install
+-# SunOS /usr/etc/install
+-# IRIX /sbin/install
+-# AIX /bin/install
+-# AmigaOS /C/install, which installs bootblocks on floppy discs
+-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+-# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+-# OS/2's system install, which has a completely different semantic
+-# ./install, which can be erroneously created by make from ./install.sh.
+-echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
+-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
+-if test -z "$INSTALL"; then
+-if test "${ac_cv_path_install+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  # Account for people who put trailing slashes in PATH elements.
+-case $as_dir/ in
+-  ./ | .// | /cC/* | \
+-  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+-  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
+-  /usr/ucb/* ) ;;
+-  *)
+-    # OSF1 and SCO ODT 3.0 have their own names for install.
+-    # Don't use installbsd from OSF since it installs stuff as root
+-    # by default.
+-    for ac_prog in ginstall scoinst install; do
+-      for ac_exec_ext in '' $ac_executable_extensions; do
+-	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+-	  if test $ac_prog = install &&
+-	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+-	    # AIX install.  It has an incompatible calling convention.
+-	    :
+-	  elif test $ac_prog = install &&
+-	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+-	    # program-specific install script used by HP pwplus--don't use.
+-	    :
+-	  else
+-	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+-	    break 3
+-	  fi
+-	fi
+-      done
+-    done
+-    ;;
+-esac
+-done
+-
+-
+-fi
+-  if test "${ac_cv_path_install+set}" = set; then
+-    INSTALL=$ac_cv_path_install
+-  else
+-    # As a last resort, use the slow shell script.  We don't cache a
+-    # path for INSTALL within a source directory, because that will
+-    # break other packages using the cache if that directory is
+-    # removed, or if the path is relative.
+-    INSTALL=$ac_install_sh
+-  fi
+-fi
+-echo "$as_me:$LINENO: result: $INSTALL" >&5
+-echo "${ECHO_T}$INSTALL" >&6
+-
+-# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+-# It thinks the first close brace ends the variable substitution.
+-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+-
+-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+-
+-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+-
+-echo "$as_me:$LINENO: checking whether build environment is sane" >&5
+-echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
+-# Just in case
+-sleep 1
+-echo timestamp > conftest.file
+-# Do `set' in a subshell so we don't clobber the current shell's
+-# arguments.  Must try -L first in case configure is actually a
+-# symlink; some systems play weird games with the mod time of symlinks
+-# (eg FreeBSD returns the mod time of the symlink's containing
+-# directory).
+-if (
+-   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
+-   if test "$*" = "X"; then
+-      # -L didn't work.
+-      set X `ls -t $srcdir/configure conftest.file`
+-   fi
+-   rm -f conftest.file
+-   if test "$*" != "X $srcdir/configure conftest.file" \
+-      && test "$*" != "X conftest.file $srcdir/configure"; then
+-
+-      # If neither matched, then we have a broken ls.  This can happen
+-      # if, for instance, CONFIG_SHELL is bash and it inherits a
+-      # broken ls alias from the environment.  This has actually
+-      # happened.  Such a system could not be considered "sane".
+-      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
+-alias in your environment" >&5
+-echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
+-alias in your environment" >&2;}
+-   { (exit 1); exit 1; }; }
+-   fi
+-
+-   test "$2" = conftest.file
+-   )
+-then
+-   # Ok.
+-   :
+-else
+-   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
+-Check your system clock" >&5
+-echo "$as_me: error: newly created file is older than distributed files!
+-Check your system clock" >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-test "$program_prefix" != NONE &&
+-  program_transform_name="s,^,$program_prefix,;$program_transform_name"
+-# Use a double $ so make ignores it.
+-test "$program_suffix" != NONE &&
+-  program_transform_name="s,\$,$program_suffix,;$program_transform_name"
+-# Double any \ or $.  echo might interpret backslashes.
+-# By default was `s,x,x', remove it if useless.
+-cat <<\_ACEOF >conftest.sed
+-s/[\\$]/&&/g;s/;s,x,x,$//
+-_ACEOF
+-program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
+-rm conftest.sed
+-
+-
+-# expand $ac_aux_dir to an absolute path
+-am_aux_dir=`cd $ac_aux_dir && pwd`
+-
+-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
+-# Use eval to expand $SHELL
+-if eval "$MISSING --run true"; then
+-  am_missing_run="$MISSING --run "
+-else
+-  am_missing_run=
+-  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
+-echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
+-fi
+-
+-for ac_prog in gawk mawk nawk awk
+-do
+-  # Extract the first word of "$ac_prog", so it can be a program name with args.
+-set dummy $ac_prog; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_AWK+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$AWK"; then
+-  ac_cv_prog_AWK="$AWK" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_AWK="$ac_prog"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-AWK=$ac_cv_prog_AWK
+-if test -n "$AWK"; then
+-  echo "$as_me:$LINENO: result: $AWK" >&5
+-echo "${ECHO_T}$AWK" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  test -n "$AWK" && break
+-done
+-
+-echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
+-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
+-set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
+-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.make <<\_ACEOF
+-all:
+-	@echo 'ac_maketemp="$(MAKE)"'
+-_ACEOF
+-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
+-if test -n "$ac_maketemp"; then
+-  eval ac_cv_prog_make_${ac_make}_set=yes
+-else
+-  eval ac_cv_prog_make_${ac_make}_set=no
+-fi
+-rm -f conftest.make
+-fi
+-if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-  SET_MAKE=
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-  SET_MAKE="MAKE=${MAKE-make}"
+-fi
+-
+-rm -rf .tst 2>/dev/null
+-mkdir .tst 2>/dev/null
+-if test -d .tst; then
+-  am__leading_dot=.
+-else
+-  am__leading_dot=_
+-fi
+-rmdir .tst 2>/dev/null
+-
+- # test to see if srcdir already configured
+-if test "`cd $srcdir && pwd`" != "`pwd`" &&
+-   test -f $srcdir/config.status; then
+-  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
+-echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-# test whether we have cygpath
+-if test -z "$CYGPATH_W"; then
+-  if (cygpath --version) >/dev/null 2>/dev/null; then
+-    CYGPATH_W='cygpath -w'
+-  else
+-    CYGPATH_W=echo
+-  fi
+-fi
+-
+-
+-# Define the identity of the package.
+- PACKAGE='TiMidity++'
+- VERSION='2.13.2'
+-
+-
+-cat >>confdefs.h <<_ACEOF
+-#define PACKAGE "$PACKAGE"
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<_ACEOF
+-#define VERSION "$VERSION"
+-_ACEOF
+-
+-# Some tools Automake needs.
+-
+-ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
+-
+-
+-AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
+-
+-
+-AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
+-
+-
+-AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
+-
+-
+-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
+-
+-
+-AMTAR=${AMTAR-"${am_missing_run}tar"}
+-
+-install_sh=${install_sh-"$am_aux_dir/install-sh"}
+-
+-# Installed binaries are usually stripped using `strip' when the user
+-# run `make install-strip'.  However `strip' might not be the right
+-# tool to use in cross-compilation environments, therefore Automake
+-# will honor the `STRIP' environment variable to overrule this program.
+-if test "$cross_compiling" != no; then
+-  if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
+-set dummy ${ac_tool_prefix}strip; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_STRIP+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$STRIP"; then
+-  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-STRIP=$ac_cv_prog_STRIP
+-if test -n "$STRIP"; then
+-  echo "$as_me:$LINENO: result: $STRIP" >&5
+-echo "${ECHO_T}$STRIP" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-fi
+-if test -z "$ac_cv_prog_STRIP"; then
+-  ac_ct_STRIP=$STRIP
+-  # Extract the first word of "strip", so it can be a program name with args.
+-set dummy strip; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$ac_ct_STRIP"; then
+-  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_ac_ct_STRIP="strip"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
+-fi
+-fi
+-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
+-if test -n "$ac_ct_STRIP"; then
+-  echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
+-echo "${ECHO_T}$ac_ct_STRIP" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  STRIP=$ac_ct_STRIP
+-else
+-  STRIP="$ac_cv_prog_STRIP"
+-fi
+-
+-fi
+-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
+-
+-# We need awk for the "check" target.  The system "awk" is bad on
+-# some platforms.
+-
+-
+-
+-
+-                    ac_config_headers="$ac_config_headers config.h interface.h"
+-
+-echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
+-echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
+-    # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
+-if test "${enable_maintainer_mode+set}" = set; then
+-  enableval="$enable_maintainer_mode"
+-  USE_MAINTAINER_MODE=$enableval
+-else
+-  USE_MAINTAINER_MODE=no
+-fi;
+-  echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
+-echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
+-
+-
+-if test $USE_MAINTAINER_MODE = yes; then
+-  MAINTAINER_MODE_TRUE=
+-  MAINTAINER_MODE_FALSE='#'
+-else
+-  MAINTAINER_MODE_TRUE='#'
+-  MAINTAINER_MODE_FALSE=
+-fi
+-
+-  MAINT=$MAINTAINER_MODE_TRUE
+-
+-
+-
+-SHELL=${CONFIG_SHELL-"/bin/sh"}
+-WISH=${WISH-"wish"}
+-
+-echo "$as_me:$LINENO: checking whether grep returns status" >&5
+-echo $ECHO_N "checking whether grep returns status... $ECHO_C" >&6
+-echo "grimblepritz" >grimble
+-if grep blurfldyick grimble >/dev/null 2>&1 ; then
+-	contains="./contains"
+-elif grep grimblepritz grimble >/dev/null 2>&1 ; then
+-	contains=grep
+-else
+-	contains="./contains"
+-fi
+-rm -f grimble
+-case "$contains" in
+-grep)	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-	;;
+-./contains)
+-	echo "$as_me:$LINENO: result: AGH!  Grep doesn't return a status.  Attempting remedial action." >&5
+-echo "${ECHO_T}AGH!  Grep doesn't return a status.  Attempting remedial action." >&6
+-	cat >./contains <<'EOSS'
+-grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
+-EOSS
+-	chmod +x "./contains"
+-	;;
+-esac
+-
+-
+-# Check for compiler options -- such as debug flags.
+-
+-echo "$as_me:$LINENO: checking if --enable-debug option specified" >&5
+-echo $ECHO_N "checking if --enable-debug option specified... $ECHO_C" >&6
+-# Check whether --enable-debug or --disable-debug was given.
+-if test "${enable_debug+set}" = set; then
+-  enableval="$enable_debug"
+-  timidity_cv_debug="yes"
+-else
+-  timidity_cv_debug="no"
+-fi;
+-if test "x$timidity_cv_debug" = "xyes"; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEBUG 1
+-_ACEOF
+-
+-  CFLAGS=${CFLAGS-"-g"}
+-fi
+-if test "x$timidity_cv_debug" = "xno"; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define NDEBUG 1
+-_ACEOF
+-
+-fi
+-echo "$as_me:$LINENO: result: $timidity_cv_debug" >&5
+-echo "${ECHO_T}$timidity_cv_debug" >&6
+-
+-if test "x$CFLAGS" = "x"; then
+-  NOCFLAGS="yes"
+-fi
+-
+-if test "x$with_x" = x; then
+-  with_x=yes
+-else
+-  x_config_flag=yes
+-fi
+-
+-# Checking gcc environment
+-for i in `echo $LIBRARY_PATH|sed -e 's,:, ,g'`; do
+-  LDFLAGS="$LDFLAGS -L${i}"
+-done
+-for i in `echo $C_INCLUDE_PATH|sed -e 's,:, ,g'`; do
+-  CPPFLAGS="$CPPFLAGS -I${i}"
+-done
+-
+-# add $prefix if specified.
+-if test "x$prefix" != xNONE -a "x$prefix" != "x$ac_default_prefix" -a "x$prefix" != "x/usr"; then
+-  LDFLAGS="-L$prefix/lib $LDFLAGS"
+-  SHLDFLAGS="-L$prefix/lib $SHLDFLAGS"
+-  CPPFLAGS="-I$prefix/include $CPPFLAGS"
+-fi
+-
+-
+-# Check whether --with-includes or --without-includes was given.
+-if test "${with_includes+set}" = set; then
+-  withval="$with_includes"
+-   j=' '
+-    for i in `echo "$withval"|sed -e 's,:, ,g'`; do
+-      j="${j}-I${i} "
+-    done
+-    CPPFLAGS="$j$CPPFLAGS"
+-
+-fi;
+-
+-
+-# Check whether --with-libraries or --without-libraries was given.
+-if test "${with_libraries+set}" = set; then
+-  withval="$with_libraries"
+-   j=' '
+-    for i in `echo "$withval"|sed -e 's,:, ,g'`; do
+-      j="${j}-L${i} "
+-    done
+-    LDFLAGS="$j$LDFLAGS"
+-
+-fi;
+-
+-
+-
+-# Check whether --with-default-path or --without-default-path was given.
+-if test "${with_default_path+set}" = set; then
+-  withval="$with_default_path"
+-  pkgdatadir=$withval
+-else
+-
+-   if test "x$prefix" != "xNONE"; then
+-      pkgdatadir='${prefix}/share/timidity'
+-   else
+-      pkgdatadir='/usr/local/share/timidity'
+-   fi
+-
+-fi;
+-tmpdefpath="`eval \"echo ${pkgdatadir}\"`"
+-
+-cat >>confdefs.h <<_ACEOF
+-#define DEFAULT_PATH "$tmpdefpath"
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define PKGDATADIR DEFAULT_PATH
+-_ACEOF
+-
+-
+-
+-# Check whether --with-module-dir or --without-module-dir was given.
+-if test "${with_module_dir+set}" = set; then
+-  withval="$with_module_dir"
+-  pkglibdir=$withval
+-else
+-
+-   if test "x$prefix" != "xNONE"; then
+-      pkglibdir='${prefix}/lib/timidity'
+-   else
+-      pkglibdir='/usr/local/lib/timidity'
+-   fi
+-
+-fi;
+-tmplibdir="`eval \"echo ${pkglibdir}\"`"
+-
+-cat >>confdefs.h <<_ACEOF
+-#define PKGLIBDIR "$tmplibdir"
+-_ACEOF
+-
+-
+-
+-# Check whether --with-xaw-resource-prefix or --without-xaw-resource-prefix was given.
+-if test "${with_xaw_resource_prefix+set}" = set; then
+-  withval="$with_xaw_resource_prefix"
+-  xawresdir=$withval
+-fi;
+-
+-
+-if test "x$xawresdir" != "x"; then
+-  XAW_INSTALL_RESOURCE_FILES_TRUE=
+-  XAW_INSTALL_RESOURCE_FILES_FALSE='#'
+-else
+-  XAW_INSTALL_RESOURCE_FILES_TRUE='#'
+-  XAW_INSTALL_RESOURCE_FILES_FALSE=
+-fi
+-
+-
+-
+-# Checks for programs.
+-
+-# Check whether --with-lispdir or --without-lispdir was given.
+-if test "${with_lispdir+set}" = set; then
+-  withval="$with_lispdir"
+-   lispdir="$withval"
+-   echo "$as_me:$LINENO: checking where .elc files should go" >&5
+-echo $ECHO_N "checking where .elc files should go... $ECHO_C" >&6
+-   echo "$as_me:$LINENO: result: $lispdir" >&5
+-echo "${ECHO_T}$lispdir" >&6
+-else
+-
+- # If set to t, that means we are running in a shell under Emacs.
+- # If you have an Emacs named "t", then use the full path.
+- test x"$EMACS" = xt && EMACS=
+- for ac_prog in emacs xemacs
+-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_EMACS+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$EMACS"; then
+-  ac_cv_prog_EMACS="$EMACS" # 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_EMACS="$ac_prog"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-EMACS=$ac_cv_prog_EMACS
+-if test -n "$EMACS"; then
+-  echo "$as_me:$LINENO: result: $EMACS" >&5
+-echo "${ECHO_T}$EMACS" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  test -n "$EMACS" && break
+-done
+-test -n "$EMACS" || EMACS="no"
+-
+- if test $EMACS != "no"; then
+-   if test x${lispdir+set} != xset; then
+-     echo "$as_me:$LINENO: checking where .elc files should go" >&5
+-echo $ECHO_N "checking where .elc files should go... $ECHO_C" >&6
+-if test "${am_cv_lispdir+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  # If $EMACS isn't GNU Emacs or XEmacs, this can blow up pretty badly
+-  # Some emacsen will start up in interactive mode, requiring C-x C-c to exit,
+-  #  which is non-obvious for non-emacs users.
+-  # Redirecting /dev/null should help a bit; pity we can't detect "broken"
+-  #  emacsen earlier and avoid running this altogether.
+-  { (echo "$as_me:$LINENO: \$EMACS -batch -q -eval '(while load-path (princ (concat (car load-path) \"\\n\")) (setq load-path (cdr load-path)))' </dev/null >conftest.out") >&5
+-  ($EMACS -batch -q -eval '(while load-path (princ (concat (car load-path) "\n")) (setq load-path (cdr load-path)))' </dev/null >conftest.out) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }
+-        am_cv_lispdir=`sed -n \
+-       -e 's,/$,,' \
+-       -e '/.*\/lib\/x\?emacs\/site-lisp$/{s,.*/lib/\(x\?emacs/site-lisp\)$,${libdir}/\1,;p;q;}' \
+-       -e '/.*\/share\/x\?emacs\/site-lisp$/{s,.*/share/\(x\?emacs/site-lisp\),${datadir}/\1,;p;q;}' \
+-       conftest.out`
+-       rm conftest.out
+-       if test -z "$am_cv_lispdir"; then
+-         am_cv_lispdir='${datadir}/emacs/site-lisp'
+-       fi
+-
+-fi
+-echo "$as_me:$LINENO: result: $am_cv_lispdir" >&5
+-echo "${ECHO_T}$am_cv_lispdir" >&6
+-     lispdir="$am_cv_lispdir"
+-   fi
+- fi
+-
+-fi;
+-
+-
+-ac_ext=c
+-ac_cpp='$CPP $CPPFLAGS'
+-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+-ac_compiler_gnu=$ac_cv_c_compiler_gnu
+-if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
+-set dummy ${ac_tool_prefix}gcc; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$CC"; then
+-  ac_cv_prog_CC="$CC" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_CC="${ac_tool_prefix}gcc"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-CC=$ac_cv_prog_CC
+-if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-fi
+-if test -z "$ac_cv_prog_CC"; then
+-  ac_ct_CC=$CC
+-  # Extract the first word of "gcc", so it can be a program name with args.
+-set dummy gcc; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$ac_ct_CC"; then
+-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_ac_ct_CC="gcc"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-ac_ct_CC=$ac_cv_prog_ac_ct_CC
+-if test -n "$ac_ct_CC"; then
+-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
+-echo "${ECHO_T}$ac_ct_CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  CC=$ac_ct_CC
+-else
+-  CC="$ac_cv_prog_CC"
+-fi
+-
+-if test -z "$CC"; then
+-  if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
+-set dummy ${ac_tool_prefix}cc; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$CC"; then
+-  ac_cv_prog_CC="$CC" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_CC="${ac_tool_prefix}cc"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-CC=$ac_cv_prog_CC
+-if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-fi
+-if test -z "$ac_cv_prog_CC"; then
+-  ac_ct_CC=$CC
+-  # Extract the first word of "cc", so it can be a program name with args.
+-set dummy cc; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$ac_ct_CC"; then
+-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_ac_ct_CC="cc"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-ac_ct_CC=$ac_cv_prog_ac_ct_CC
+-if test -n "$ac_ct_CC"; then
+-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
+-echo "${ECHO_T}$ac_ct_CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  CC=$ac_ct_CC
+-else
+-  CC="$ac_cv_prog_CC"
+-fi
+-
+-fi
+-if test -z "$CC"; then
+-  # Extract the first word of "cc", so it can be a program name with args.
+-set dummy cc; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$CC"; then
+-  ac_cv_prog_CC="$CC" # Let the user override the test.
+-else
+-  ac_prog_rejected=no
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
+-       ac_prog_rejected=yes
+-       continue
+-     fi
+-    ac_cv_prog_CC="cc"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-if test $ac_prog_rejected = yes; then
+-  # We found a bogon in the path, so make sure we never use it.
+-  set dummy $ac_cv_prog_CC
+-  shift
+-  if test $# != 0; then
+-    # We chose a different compiler from the bogus one.
+-    # However, it has the same basename, so the bogon will be chosen
+-    # first if we set CC to just the basename; use the full file name.
+-    shift
+-    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
+-  fi
+-fi
+-fi
+-fi
+-CC=$ac_cv_prog_CC
+-if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-fi
+-if test -z "$CC"; then
+-  if test -n "$ac_tool_prefix"; then
+-  for ac_prog in cl
+-  do
+-    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
+-set dummy $ac_tool_prefix$ac_prog; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$CC"; then
+-  ac_cv_prog_CC="$CC" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-CC=$ac_cv_prog_CC
+-if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-    test -n "$CC" && break
+-  done
+-fi
+-if test -z "$CC"; then
+-  ac_ct_CC=$CC
+-  for ac_prog in cl
+-do
+-  # Extract the first word of "$ac_prog", so it can be a program name with args.
+-set dummy $ac_prog; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$ac_ct_CC"; then
+-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_ac_ct_CC="$ac_prog"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-ac_ct_CC=$ac_cv_prog_ac_ct_CC
+-if test -n "$ac_ct_CC"; then
+-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
+-echo "${ECHO_T}$ac_ct_CC" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  test -n "$ac_ct_CC" && break
+-done
+-
+-  CC=$ac_ct_CC
+-fi
+-
+-fi
+-
+-
+-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: no acceptable C compiler found in \$PATH
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-
+-# Provide some information about the compiler.
+-echo "$as_me:$LINENO:" \
+-     "checking for C compiler version" >&5
+-ac_compiler=`set X $ac_compile; echo $2`
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
+-  (eval $ac_compiler --version </dev/null >&5) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
+-  (eval $ac_compiler -v </dev/null >&5) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
+-  (eval $ac_compiler -V </dev/null >&5) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }
+-
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-ac_clean_files_save=$ac_clean_files
+-ac_clean_files="$ac_clean_files a.out a.exe b.out"
+-# Try to create an executable without -o first, disregard a.out.
+-# It will help us diagnose broken compilers, and finding out an intuition
+-# of exeext.
+-echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
+-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
+-ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
+-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
+-  (eval $ac_link_default) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; then
+-  # Find the output, starting from the most likely.  This scheme is
+-# not robust to junk in `.', hence go to wildcards (a.*) only as a last
+-# resort.
+-
+-# Be careful to initialize this variable, since it used to be cached.
+-# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
+-ac_cv_exeext=
+-# b.out is created by i960 compilers.
+-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
+-do
+-  test -f "$ac_file" || continue
+-  case $ac_file in
+-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
+-	;;
+-    conftest.$ac_ext )
+-	# This is the source file.
+-	;;
+-    [ab].out )
+-	# We found the default executable, but exeext='' is most
+-	# certainly right.
+-	break;;
+-    *.* )
+-	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	# FIXME: I believe we export ac_cv_exeext for Libtool,
+-	# but it would be cool to find out if it's true.  Does anybody
+-	# maintain Libtool? --akim.
+-	export ac_cv_exeext
+-	break;;
+-    * )
+-	break;;
+-  esac
+-done
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: C compiler cannot create executables
+-See \`config.log' for more details." >&2;}
+-   { (exit 77); exit 77; }; }
+-fi
+-
+-ac_exeext=$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_file" >&5
+-echo "${ECHO_T}$ac_file" >&6
+-
+-# Check the compiler produces executables we can run.  If not, either
+-# the compiler is broken, or we cross compile.
+-echo "$as_me:$LINENO: checking whether the C compiler works" >&5
+-echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
+-# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
+-# If not cross compiling, check that we can run a simple program.
+-if test "$cross_compiling" != yes; then
+-  if { ac_try='./$ac_file'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-    cross_compiling=no
+-  else
+-    if test "$cross_compiling" = maybe; then
+-	cross_compiling=yes
+-    else
+-	{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
+-If you meant to cross compile, use \`--host'.
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: cannot run C compiled programs.
+-If you meant to cross compile, use \`--host'.
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-    fi
+-  fi
+-fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-rm -f a.out a.exe conftest$ac_cv_exeext b.out
+-ac_clean_files=$ac_clean_files_save
+-# Check the compiler produces executables we can run.  If not, either
+-# the compiler is broken, or we cross compile.
+-echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
+-echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
+-echo "$as_me:$LINENO: result: $cross_compiling" >&5
+-echo "${ECHO_T}$cross_compiling" >&6
+-
+-echo "$as_me:$LINENO: checking for suffix of executables" >&5
+-echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; then
+-  # If both `conftest.exe' and `conftest' are `present' (well, observable)
+-# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
+-# work properly (i.e., refer to `conftest.exe'), while it won't with
+-# `rm'.
+-for ac_file in conftest.exe conftest conftest.*; do
+-  test -f "$ac_file" || continue
+-  case $ac_file in
+-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
+-    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	  export ac_cv_exeext
+-	  break;;
+-    * ) break;;
+-  esac
+-done
+-else
+-  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-rm -f conftest$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
+-echo "${ECHO_T}$ac_cv_exeext" >&6
+-
+-rm -f conftest.$ac_ext
+-EXEEXT=$ac_cv_exeext
+-ac_exeext=$EXEEXT
+-echo "$as_me:$LINENO: checking for suffix of object files" >&5
+-echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
+-if test "${ac_cv_objext+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.o conftest.obj
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; then
+-  for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
+-  case $ac_file in
+-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
+-    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
+-       break;;
+-  esac
+-done
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: cannot compute suffix of object files: cannot compile
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-rm -f conftest.$ac_cv_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
+-echo "${ECHO_T}$ac_cv_objext" >&6
+-OBJEXT=$ac_cv_objext
+-ac_objext=$OBJEXT
+-echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
+-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
+-if test "${ac_cv_c_compiler_gnu+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-#ifndef __GNUC__
+-       choke me
+-#endif
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_compiler_gnu=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_compiler_gnu=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-ac_cv_c_compiler_gnu=$ac_compiler_gnu
+-
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
+-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
+-GCC=`test $ac_compiler_gnu = yes && echo yes`
+-ac_test_CFLAGS=${CFLAGS+set}
+-ac_save_CFLAGS=$CFLAGS
+-CFLAGS="-g"
+-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
+-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
+-if test "${ac_cv_prog_cc_g+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_prog_cc_g=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_prog_cc_g=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
+-if test "$ac_test_CFLAGS" = set; then
+-  CFLAGS=$ac_save_CFLAGS
+-elif test $ac_cv_prog_cc_g = yes; then
+-  if test "$GCC" = yes; then
+-    CFLAGS="-g -O2"
+-  else
+-    CFLAGS="-g"
+-  fi
+-else
+-  if test "$GCC" = yes; then
+-    CFLAGS="-O2"
+-  else
+-    CFLAGS=
+-  fi
+-fi
+-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
+-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
+-if test "${ac_cv_prog_cc_stdc+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_prog_cc_stdc=no
+-ac_save_CC=$CC
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdarg.h>
+-#include <stdio.h>
+-#include <sys/types.h>
+-#include <sys/stat.h>
+-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
+-struct buf { int x; };
+-FILE * (*rcsopen) (struct buf *, struct stat *, int);
+-static char *e (p, i)
+-     char **p;
+-     int i;
+-{
+-  return p[i];
+-}
+-static char *f (char * (*g) (char **, int), char **p, ...)
+-{
+-  char *s;
+-  va_list v;
+-  va_start (v,p);
+-  s = g (p, va_arg (v,int));
+-  va_end (v);
+-  return s;
+-}
+-
+-/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
+-   function prototypes and stuff, but not '\xHH' hex character constants.
+-   These don't provoke an error unfortunately, instead are silently treated
+-   as 'x'.  The following induces an error, until -std1 is added to get
+-   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
+-   array size at least.  It's necessary to write '\x00'==0 to get something
+-   that's true only with -std1.  */
+-int osf4_cc_array ['\x00' == 0 ? 1 : -1];
+-
+-int test (int i, double x);
+-struct s1 {int (*f) (int a);};
+-struct s2 {int (*f) (double a);};
+-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
+-int argc;
+-char **argv;
+-int
+-main ()
+-{
+-return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-# Don't try gcc -ansi; that turns off useful extensions and
+-# breaks some systems' header files.
+-# AIX			-qlanglvl=ansi
+-# Ultrix and OSF/1	-std1
+-# HP-UX 10.20 and later	-Ae
+-# HP-UX older versions	-Aa -D_HPUX_SOURCE
+-# SVR4			-Xc -D__EXTENSIONS__
+-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
+-do
+-  CC="$ac_save_CC $ac_arg"
+-  rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_prog_cc_stdc=$ac_arg
+-break
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext
+-done
+-rm -f conftest.$ac_ext conftest.$ac_objext
+-CC=$ac_save_CC
+-
+-fi
+-
+-case "x$ac_cv_prog_cc_stdc" in
+-  x|xno)
+-    echo "$as_me:$LINENO: result: none needed" >&5
+-echo "${ECHO_T}none needed" >&6 ;;
+-  *)
+-    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
+-    CC="$CC $ac_cv_prog_cc_stdc" ;;
+-esac
+-
+-# Some people use a C++ compiler to compile C.  Since we use `exit',
+-# in C++ we need to declare it.  In case someone uses the same compiler
+-# for both compiling C and C++ we need to have the C++ compiler decide
+-# the declaration of exit, since it's the most demanding environment.
+-cat >conftest.$ac_ext <<_ACEOF
+-#ifndef __cplusplus
+-  choke me
+-#endif
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  for ac_declaration in \
+-   '' \
+-   'extern "C" void std::exit (int) throw (); using std::exit;' \
+-   'extern "C" void std::exit (int); using std::exit;' \
+-   'extern "C" void exit (int) throw ();' \
+-   'extern "C" void exit (int);' \
+-   'void exit (int);'
+-do
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-#include <stdlib.h>
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-continue
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  break
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-done
+-rm -f conftest*
+-if test -n "$ac_declaration"; then
+-  echo '#ifdef __cplusplus' >>confdefs.h
+-  echo $ac_declaration      >>confdefs.h
+-  echo '#endif'             >>confdefs.h
+-fi
+-
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-ac_ext=c
+-ac_cpp='$CPP $CPPFLAGS'
+-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+-ac_compiler_gnu=$ac_cv_c_compiler_gnu
+-DEPDIR="${am__leading_dot}deps"
+-
+-          ac_config_commands="$ac_config_commands depfiles"
+-
+-
+-am_make=${MAKE-make}
+-cat > confinc << 'END'
+-am__doit:
+-	@echo done
+-.PHONY: am__doit
+-END
+-# If we don't find an include directive, just comment out the code.
+-echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
+-echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
+-am__include="#"
+-am__quote=
+-_am_result=none
+-# First try GNU make style include.
+-echo "include confinc" > confmf
+-# We grep out `Entering directory' and `Leaving directory'
+-# messages which can occur if `w' ends up in MAKEFLAGS.
+-# In particular we don't look at `^make:' because GNU make might
+-# be invoked under some other name (usually "gmake"), in which
+-# case it prints its new name instead of `make'.
+-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
+-   am__include=include
+-   am__quote=
+-   _am_result=GNU
+-fi
+-# Now try BSD make style include.
+-if test "$am__include" = "#"; then
+-   echo '.include "confinc"' > confmf
+-   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
+-      am__include=.include
+-      am__quote="\""
+-      _am_result=BSD
+-   fi
+-fi
+-
+-
+-echo "$as_me:$LINENO: result: $_am_result" >&5
+-echo "${ECHO_T}$_am_result" >&6
+-rm -f confinc confmf
+-
+-# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
+-if test "${enable_dependency_tracking+set}" = set; then
+-  enableval="$enable_dependency_tracking"
+-
+-fi;
+-if test "x$enable_dependency_tracking" != xno; then
+-  am_depcomp="$ac_aux_dir/depcomp"
+-  AMDEPBACKSLASH='\'
+-fi
+-
+-
+-if test "x$enable_dependency_tracking" != xno; then
+-  AMDEP_TRUE=
+-  AMDEP_FALSE='#'
+-else
+-  AMDEP_TRUE='#'
+-  AMDEP_FALSE=
+-fi
+-
+-
+-
+-
+-depcc="$CC"   am_compiler_list=
+-
+-echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
+-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
+-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+-  # We make a subdir and do the tests there.  Otherwise we can end up
+-  # making bogus files that we don't know about and never remove.  For
+-  # instance it was reported that on HP-UX the gcc test will end up
+-  # making a dummy file named `D' -- because `-MD' means `put the output
+-  # in D'.
+-  mkdir conftest.dir
+-  # Copy depcomp to subdir because otherwise we won't find it if we're
+-  # using a relative directory.
+-  cp "$am_depcomp" conftest.dir
+-  cd conftest.dir
+-  # We will build objects and dependencies in a subdirectory because
+-  # it helps to detect inapplicable dependency modes.  For instance
+-  # both Tru64's cc and ICC support -MD to output dependencies as a
+-  # side effect of compilation, but ICC will put the dependencies in
+-  # the current directory while Tru64 will put them in the object
+-  # directory.
+-  mkdir sub
+-
+-  am_cv_CC_dependencies_compiler_type=none
+-  if test "$am_compiler_list" = ""; then
+-     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
+-  fi
+-  for depmode in $am_compiler_list; do
+-    # Setup a source with many dependencies, because some compilers
+-    # like to wrap large dependency lists on column 80 (with \), and
+-    # we should not choose a depcomp mode which is confused by this.
+-    #
+-    # We need to recreate these files for each test, as the compiler may
+-    # overwrite some of them when testing with obscure command lines.
+-    # This happens at least with the AIX C compiler.
+-    : > sub/conftest.c
+-    for i in 1 2 3 4 5 6; do
+-      echo '#include "conftst'$i'.h"' >> sub/conftest.c
+-      : > sub/conftst$i.h
+-    done
+-    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+-
+-    case $depmode in
+-    nosideeffect)
+-      # after this tag, mechanisms are not by side-effect, so they'll
+-      # only be used when explicitly requested
+-      if test "x$enable_dependency_tracking" = xyes; then
+-	continue
+-      else
+-	break
+-      fi
+-      ;;
+-    none) break ;;
+-    esac
+-    # We check with `-c' and `-o' for the sake of the "dashmstdout"
+-    # mode.  It turns out that the SunPro C++ compiler does not properly
+-    # handle `-M -o', and we need to detect this.
+-    if depmode=$depmode \
+-       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
+-       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
+-       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
+-         >/dev/null 2>conftest.err &&
+-       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
+-       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
+-       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
+-      # icc doesn't choke on unknown options, it will just issue warnings
+-      # (even with -Werror).  So we grep stderr for any message
+-      # that says an option was ignored.
+-      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
+-        am_cv_CC_dependencies_compiler_type=$depmode
+-        break
+-      fi
+-    fi
+-  done
+-
+-  cd ..
+-  rm -rf conftest.dir
+-else
+-  am_cv_CC_dependencies_compiler_type=none
+-fi
+-
+-fi
+-echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
+-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
+-CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
+-
+-
+-
+-if
+-  test "x$enable_dependency_tracking" != xno \
+-  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
+-  am__fastdepCC_TRUE=
+-  am__fastdepCC_FALSE='#'
+-else
+-  am__fastdepCC_TRUE='#'
+-  am__fastdepCC_FALSE=
+-fi
+-
+-
+-
+-ac_ext=c
+-ac_cpp='$CPP $CPPFLAGS'
+-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+-ac_compiler_gnu=$ac_cv_c_compiler_gnu
+-echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
+-echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
+-# On Suns, sometimes $CPP names a directory.
+-if test -n "$CPP" && test -d "$CPP"; then
+-  CPP=
+-fi
+-if test -z "$CPP"; then
+-  if test "${ac_cv_prog_CPP+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-      # Double quotes because CPP needs to be expanded
+-    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
+-    do
+-      ac_preproc_ok=false
+-for ac_c_preproc_warn_flag in '' yes
+-do
+-  # Use a header file that comes with gcc, so configuring glibc
+-  # with a fresh cross-compiler works.
+-  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-  # <limits.h> exists even on freestanding compilers.
+-  # On the NeXT, cc -E runs the code through the compiler's parser,
+-  # not just through cpp. "Syntax error" is here to catch this case.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-		     Syntax error
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  # Broken: fails on valid input.
+-continue
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-
+-  # OK, works on sane cases.  Now check whether non-existent headers
+-  # can be detected and how.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <ac_nonexistent.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  # Broken: success on invalid input.
+-continue
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  # Passes both tests.
+-ac_preproc_ok=:
+-break
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-
+-done
+-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+-rm -f conftest.err conftest.$ac_ext
+-if $ac_preproc_ok; then
+-  break
+-fi
+-
+-    done
+-    ac_cv_prog_CPP=$CPP
+-
+-fi
+-  CPP=$ac_cv_prog_CPP
+-else
+-  ac_cv_prog_CPP=$CPP
+-fi
+-echo "$as_me:$LINENO: result: $CPP" >&5
+-echo "${ECHO_T}$CPP" >&6
+-ac_preproc_ok=false
+-for ac_c_preproc_warn_flag in '' yes
+-do
+-  # Use a header file that comes with gcc, so configuring glibc
+-  # with a fresh cross-compiler works.
+-  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-  # <limits.h> exists even on freestanding compilers.
+-  # On the NeXT, cc -E runs the code through the compiler's parser,
+-  # not just through cpp. "Syntax error" is here to catch this case.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-		     Syntax error
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  # Broken: fails on valid input.
+-continue
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-
+-  # OK, works on sane cases.  Now check whether non-existent headers
+-  # can be detected and how.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <ac_nonexistent.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  # Broken: success on invalid input.
+-continue
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  # Passes both tests.
+-ac_preproc_ok=:
+-break
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-
+-done
+-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+-rm -f conftest.err conftest.$ac_ext
+-if $ac_preproc_ok; then
+-  :
+-else
+-  { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-ac_ext=c
+-ac_cpp='$CPP $CPPFLAGS'
+-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+-ac_compiler_gnu=$ac_cv_c_compiler_gnu
+-
+-
+-echo "$as_me:$LINENO: checking for egrep" >&5
+-echo $ECHO_N "checking for egrep... $ECHO_C" >&6
+-if test "${ac_cv_prog_egrep+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
+-    then ac_cv_prog_egrep='grep -E'
+-    else ac_cv_prog_egrep='egrep'
+-    fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
+-echo "${ECHO_T}$ac_cv_prog_egrep" >&6
+- EGREP=$ac_cv_prog_egrep
+-
+-
+-if test $ac_cv_c_compiler_gnu = yes; then
+-    echo "$as_me:$LINENO: checking whether $CC needs -traditional" >&5
+-echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6
+-if test "${ac_cv_prog_gcc_traditional+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-    ac_pattern="Autoconf.*'x'"
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sgtty.h>
+-Autoconf TIOCGETP
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "$ac_pattern" >/dev/null 2>&1; then
+-  ac_cv_prog_gcc_traditional=yes
+-else
+-  ac_cv_prog_gcc_traditional=no
+-fi
+-rm -f conftest*
+-
+-
+-  if test $ac_cv_prog_gcc_traditional = no; then
+-    cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <termio.h>
+-Autoconf TCGETA
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "$ac_pattern" >/dev/null 2>&1; then
+-  ac_cv_prog_gcc_traditional=yes
+-fi
+-rm -f conftest*
+-
+-  fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_gcc_traditional" >&5
+-echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
+-  if test $ac_cv_prog_gcc_traditional = yes; then
+-    CC="$CC -traditional"
+-  fi
+-fi
+-
+-# Find a good install program.  We prefer a C program (faster),
+-# so one script is as good as another.  But avoid the broken or
+-# incompatible versions:
+-# SysV /etc/install, /usr/sbin/install
+-# SunOS /usr/etc/install
+-# IRIX /sbin/install
+-# AIX /bin/install
+-# AmigaOS /C/install, which installs bootblocks on floppy discs
+-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+-# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+-# OS/2's system install, which has a completely different semantic
+-# ./install, which can be erroneously created by make from ./install.sh.
+-echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
+-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
+-if test -z "$INSTALL"; then
+-if test "${ac_cv_path_install+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  # Account for people who put trailing slashes in PATH elements.
+-case $as_dir/ in
+-  ./ | .// | /cC/* | \
+-  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+-  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
+-  /usr/ucb/* ) ;;
+-  *)
+-    # OSF1 and SCO ODT 3.0 have their own names for install.
+-    # Don't use installbsd from OSF since it installs stuff as root
+-    # by default.
+-    for ac_prog in ginstall scoinst install; do
+-      for ac_exec_ext in '' $ac_executable_extensions; do
+-	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+-	  if test $ac_prog = install &&
+-	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+-	    # AIX install.  It has an incompatible calling convention.
+-	    :
+-	  elif test $ac_prog = install &&
+-	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+-	    # program-specific install script used by HP pwplus--don't use.
+-	    :
+-	  else
+-	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+-	    break 3
+-	  fi
+-	fi
+-      done
+-    done
+-    ;;
+-esac
+-done
+-
+-
+-fi
+-  if test "${ac_cv_path_install+set}" = set; then
+-    INSTALL=$ac_cv_path_install
+-  else
+-    # As a last resort, use the slow shell script.  We don't cache a
+-    # path for INSTALL within a source directory, because that will
+-    # break other packages using the cache if that directory is
+-    # removed, or if the path is relative.
+-    INSTALL=$ac_install_sh
+-  fi
+-fi
+-echo "$as_me:$LINENO: result: $INSTALL" >&5
+-echo "${ECHO_T}$INSTALL" >&6
+-
+-# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+-# It thinks the first close brace ends the variable substitution.
+-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+-
+-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+-
+-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+-
+-for ac_prog in gawk mawk nawk awk
+-do
+-  # Extract the first word of "$ac_prog", so it can be a program name with args.
+-set dummy $ac_prog; ac_word=$2
+-echo "$as_me:$LINENO: checking for $ac_word" >&5
+-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+-if test "${ac_cv_prog_AWK+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$AWK"; then
+-  ac_cv_prog_AWK="$AWK" # Let the user override the test.
+-else
+-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    ac_cv_prog_AWK="$ac_prog"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-AWK=$ac_cv_prog_AWK
+-if test -n "$AWK"; then
+-  echo "$as_me:$LINENO: result: $AWK" >&5
+-echo "${ECHO_T}$AWK" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  test -n "$AWK" && break
+-done
+-
+-if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
+-set dummy ${ac_tool_prefix}ranlib; 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_RANLIB+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$RANLIB"; then
+-  ac_cv_prog_RANLIB="$RANLIB" # 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_RANLIB="${ac_tool_prefix}ranlib"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-fi
+-fi
+-RANLIB=$ac_cv_prog_RANLIB
+-if test -n "$RANLIB"; then
+-  echo "$as_me:$LINENO: result: $RANLIB" >&5
+-echo "${ECHO_T}$RANLIB" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-fi
+-if test -z "$ac_cv_prog_RANLIB"; then
+-  ac_ct_RANLIB=$RANLIB
+-  # Extract the first word of "ranlib", so it can be a program name with args.
+-set dummy ranlib; 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_RANLIB+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test -n "$ac_ct_RANLIB"; then
+-  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # 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_RANLIB="ranlib"
+-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-done
+-
+-  test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
+-fi
+-fi
+-ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
+-if test -n "$ac_ct_RANLIB"; then
+-  echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
+-echo "${ECHO_T}$ac_ct_RANLIB" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  RANLIB=$ac_ct_RANLIB
+-else
+-  RANLIB="$ac_cv_prog_RANLIB"
+-fi
+-
+-echo "$as_me:$LINENO: checking whether ln -s works" >&5
+-echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
+-LN_S=$as_ln_s
+-if test "$LN_S" = "ln -s"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-else
+-  echo "$as_me:$LINENO: result: no, using $LN_S" >&5
+-echo "${ECHO_T}no, using $LN_S" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking whether -rdynamic option is recognized" >&5
+-echo $ECHO_N "checking whether -rdynamic option is recognized... $ECHO_C" >&6
+-ac_ccoption=`echo rdynamic | sed 'y%./+-%__p_%'`
+-if eval "test \"\${timidity_cv_ccoption_$ac_ccoption+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat > conftest.$ac_ext <<EOF
+-int main() {return 0;}
+-EOF
+-if ${CC-cc} $LDFLAGS $CFLAGS -o conftest${ac_exeext} -rdynamic conftest.$ac_ext > conftest.out 2>&1; then
+-    if test -s conftest.out; then
+-	eval "timidity_cv_ccoption_$ac_ccoption=no"
+-    else
+-	eval "timidity_cv_ccoption_$ac_ccoption=yes"
+-    fi
+-else
+-    eval "timidity_cv_ccoption_$ac_ccoption=no"
+-fi
+-
+-fi
+-
+-if eval "test \"`echo '$timidity_cv_ccoption_'$ac_ccoption`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-
+-fi
+-
+-
+-if test "x$NOCFLAGS" = "xyes"; then
+-  if test "x$GCC" = "xyes"; then
+-    CFLAGS="-O2"
+-  else
+-    CFLAGS=""
+-  fi
+-fi
+-
+-# Checks for target dependencies
+-
+-
+-# Check whether --with-elf or --without-elf was given.
+-if test "${with_elf+set}" = set; then
+-  withval="$with_elf"
+-   ELFFORMAT=$withval
+-else
+-   ELFFORMAT="yes"
+-fi;
+-
+-# AC_ARG_WITH(simd,
+-#  [  --with-simd             create SIMD friendly binary (default is no) ],
+-#  [ SIMD=$withval ], [ SIMD="no" ])
+-
+-case "$target" in
+-  *-*-hpux*)
+-    EXTRADEFS="-DHPUX"
+-    test -n "$SHLD" || SHLD="ld -b"
+-    so="sl"
+-    ;;
+-  *-sgi-irix*)
+-        case ".$CC" in .cc*) EXTRACFLAGS="-signed";; esac
+-    test -n "$SHLD" || SHLD="cc -shared -all"
+-    so="so"
+-    ;;
+-  *-*-netbsd*)
+-    test -n "$SHLD" || SHLD="$CC -shared -nostartfiles"
+-    so="so"
+-    ;;
+-
+-  *-*-freebsd2*)
+-        test -n "$SHLD" || SHLD="ld -Bshareable"
+-    so="so"
+-    ;;
+-  *-*-freebsd*)
+-    if test "$ELFFORMAT" = yes; then
+-	test -n "$SHLD" || SHLD="ld -Bshareable"
+-    else
+-	SHCFLAGS=-aou
+-	SHLDFLAGS="-L/usr/X11R6/lib/aout $SHLDFLAGS"
+-	test -n "$SHLD" || SHLD="env OBJFORMAT=aout ld -shared"
+-    fi
+-        so="so"
+-    ;;
+-
+-#  *-*-freebsd*)
+-#    EXTRALIBS="$EXTRALIBS -lxpg4"
+-#    test -n "$SHLD" || SHLD="ld -Bshareable"
+-#    so="so"
+-#  ;;
+-
+-  *-*-cygwin*|*-*-mingw*)
+-    EXTRADEFS="-D__W32__"
+-    # ??
+-    case "x${CC} " in
+-      "xbcc32 "*|xbcc32)
+-#        test -n "$SHLD" || SHLD="tlink32 -Tpd"
+-        test -n "$SHLD" || SHLD="BCC32 -WD"
+-        BORLANDC=yes
+-        BORLANDC_LDFLAGS="kernel32.lib winspool.lib comdlg32.lib advapi32.lib oleaut32.lib uuid.lib odbc32.lib ws2_32.lib user32.lib shell32.lib cw32mt.lib"
+-        BORLANDC_START='C0X32.OBJ'
+-        CFLAGS="$CFLAGS  -tWM -VM"
+-        EXTRADEFS="$EXTRADEFS -D_WINDOWS -DWIN32"
+-        ;;
+-      "xcc "*|xcc)
+-        test -n "$SHLD" || SHLD="polink -DLL"
+-        POCC=yes
+-         case " $CFLAGS " in
+-           *" -MT "*)  NODEF="-nodefaultlib:pocrt.lib -nodefaultlib:crt.lib -defaultlib:crtmt.lib"  ;;
+-           *" -MD "*)  NODEF="-nodefaultlib:crtmt.lib -nodefaultlib:crt.lib -defaultlib:pocrt.lib"  ;;
+-           *) CFLAGS="$CFLAGS -MT"; NODEF="-nodefaultlib:pocrt.lib -nodefaultlib:crtmt.lib -defaultlib:crt.lib" ;;
+-         esac
+-        POCC_LDFLAGS="$NODEF winmm.lib ws2_32.lib user32.lib kernel32.lib shell32.lib gdi32.lib comctl32.lib comdlg32.lib ole32.lib advapi32.lib oldnames.lib"
+-        CFLAGS="$CFLAGS -Ze -D__POCC__OLDNAMES"
+-        EXTRADEFS="$EXTRADEFS -D_WINDOWS -DWIN32"
+-        ;;
+-      "xdmc "*|xdmc)
+-        test -n "$SHLD" || SHLD="dmc -WD"
+-        DMC=yes
+-        DMC_LDFLAGS="winmm.lib ws2_32.lib user32.lib kernel32.lib shell32.lib gdi32.lib comctl32.lib comdlg32.lib ole32.lib advapi32.lib"
+-        CFLAGS="$CFLAGS  -mn -j0"
+-        DLLFLAG=" "
+-        EXTRADEFS="$EXTRADEFS -D_WINDOWS -DWIN32"
+-        ;;
+-      "xwcc386_w.sh "*|xwcc386)
+-         WATCOM_C=yes
+-         CFLAGS="$CFLAGS -br -bm -5s -zk0 -zp=16 -w=4 -D_WINDOWS -DWIN32 -DINCLUDE_WINDOWS_H"
+-         DLLFLAG=" "
+-         WATCOM_LDFLAGS=
+-         EXTRALIBS="$EXTRALIBS kernel32.lib winspool.lib comdlg32.lib advapi32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib user32.lib shell32.lib"
+-         ;;
+-      "xcl "*|xcl)
+-         test -n "$SHLD" || SHLD="link -dll"
+-         VCPP=yes
+-         case " $CFLAGS " in
+-           *" -MT "*)  NODEF="-nodefaultlib:msvcrt.lib -nodefaultlib:msvcrtd.lib -nodefaultlib:libcmtd.lib -nodefaultlib:libc.lib -nodefaultlib:libcd.lib"  ;;
+-           *" -MD "*)  NODEF="-nodefaultlib:libcmt.lib -nodefaultlib:libcmtd.lib -nodefaultlib:msvcrtd.lib -nodefaultlib:libc.lib -nodefaultlib:libcd.lib"  ;;
+-           *" -MTd "*) NODEF="-nodefaultlib:msvcrt.lib -nodefaultlib:msvcrtd.lib -nodefaultlib:libcmt.lib -nodefaultlib:libc.lib -nodefaultlib:libcd.lib"  ;;
+-           *" -MDd "*) NODEF="-nodefaultlib:libcmt.lib -nodefaultlib:libcmtd.lib -nodefaultlib:msvcrt.lib -nodefaultlib:libc.lib -nodefaultlib:libcd.lib"  ;;
+-           *) CFLAGS="$CFLAGS -MT"; NODEF="-nodefaultlib:msvcrt.lib -nodefaultlib:msvcrtd.lib -nodefaultlib:libcmtd.lib -nodefaultlib:libc.lib -nodefaultlib:libcd.lib"  ;;
+-         esac
+-         VCPP_LDFLAGS="-nologo -incremental:no  $NODEF kernel32.lib winspool.lib comdlg32.lib advapi32.lib oleaut32.lib uuid.lib  ws2_32.lib user32.lib shell32.lib"
+-         CFLAGS="$CFLAGS -nologo -Zp16 -W3 -GX  -Ob2"
+-         EXTRADEFS="$EXTRADEFS -DNDEBUG -D_WINDOWS -DWIN32 -DMBCS -D_MT -YX  -FD -c"
+-         ;;
+-      x*gcc*) test -n "$SHLD" || SHLD="gcc -mdll"; MINGWGCC=yes ;;
+-      *) test -n "$SHLD" || SHLD="unknown" ;;
+-    esac
+-    so="dll"
+-    MSYS=yes
+-    lib_user32_test=-luser32
+-    ;;
+-  *-dec-*)
+-    EXTRADEFS="-DDEC"
+-    test -n "$SHLD" || SHLD="ld -Bdynamic -G"
+-    so="so"
+-    ;;
+-  *-*-solaris*)
+-    EXTRADEFS="-DSOLARIS"
+-    test -n "$SHLD" || SHLD="/usr/ccs/bin/ld -G"
+-    so="so"
+-    ;;
+-  *-*-nextstep*)
+-    test -n "$SHLD" || SHLD="/usr/ccs/bin/ld -G"
+-    so="so"
+-    ;;
+-  *-*-darwin*)
+-    if test "x$SIMD" = "xyes"; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define USE_ALTIVEC 1
+-_ACEOF
+-
+-       # EXTRACFLAGS="$EXTRACFLAGS -faltivec -mabi=altivec -maltivec" # for GCC3.
+-       EXTRACFLAGS="$EXTRACFLAGS -faltivec"
+-    else
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define USE_ALTIVEC 0
+-_ACEOF
+-
+-    fi
+-    CPPFLAGS="$CPPFLAGS -no-cpp-precomp"
+-    LDOPTS="-dynamic -undefined suppress -flat_namespace $LDOPTS"
+-    test -n "$SHLD" || SHLD="$CC -dynamic -bundle -undefined suppress -flat_namespace $LDFLAGS"
+-    so="bundle"
+-    ;;
+-  *)
+-    test -n "$SHLD" || \
+-      if test "x$GCC" = xyes; then
+-	SHLD="$CC -shared"
+-      else
+-	SHLD="ld -Bdynamic -G"
+-      fi
+-    so="so"
+-    ;;
+-esac
+-
+-
+-# Checks for libraries.
+-
+-echo "$as_me:$LINENO: checking for sqrt in -lm" >&5
+-echo $ECHO_N "checking for sqrt in -lm... $ECHO_C" >&6
+-if test "${ac_cv_lib_m_sqrt+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lm  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char sqrt ();
+-int
+-main ()
+-{
+-sqrt ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_m_sqrt=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_m_sqrt=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrt" >&5
+-echo "${ECHO_T}$ac_cv_lib_m_sqrt" >&6
+-if test $ac_cv_lib_m_sqrt = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBM 1
+-_ACEOF
+-
+-  LIBS="-lm $LIBS"
+-
+-fi
+-
+-
+-echo "$as_me:$LINENO: checking for socket in -lsocket" >&5
+-echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
+-if test "${ac_cv_lib_socket_socket+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lsocket  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char socket ();
+-int
+-main ()
+-{
+-socket ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_socket_socket=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_socket_socket=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5
+-echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6
+-if test $ac_cv_lib_socket_socket = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBSOCKET 1
+-_ACEOF
+-
+-  LIBS="-lsocket $LIBS"
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
+-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
+-if test "${ac_cv_lib_dl_dlopen+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ldl  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char dlopen ();
+-int
+-main ()
+-{
+-dlopen ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_dl_dlopen=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_dl_dlopen=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
+-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
+-if test $ac_cv_lib_dl_dlopen = yes; then
+-  lib_dl_opt=-ldl
+-fi
+-
+-echo "$as_me:$LINENO: checking for NSLinkModule in -lobjc" >&5
+-echo $ECHO_N "checking for NSLinkModule in -lobjc... $ECHO_C" >&6
+-if test "${ac_cv_lib_objc_NSLinkModule+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lobjc  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char NSLinkModule ();
+-int
+-main ()
+-{
+-NSLinkModule ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_objc_NSLinkModule=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_objc_NSLinkModule=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_objc_NSLinkModule" >&5
+-echo "${ECHO_T}$ac_cv_lib_objc_NSLinkModule" >&6
+-if test $ac_cv_lib_objc_NSLinkModule = yes; then
+-  lib_dl_opt=-lobjc
+-fi
+- # Mac OS X need this.
+-if test "x$VCPP" != "xyes" && test "x$BORLANDC" != "xyes" && test "x$WATCOM_C" != "xyes" && test "x$POCC" != "xyes"; then
+-
+-echo "$as_me:$LINENO: checking for setlocale in -lxpg4" >&5
+-echo $ECHO_N "checking for setlocale in -lxpg4... $ECHO_C" >&6
+-if test "${ac_cv_lib_xpg4_setlocale+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lxpg4  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char setlocale ();
+-int
+-main ()
+-{
+-setlocale ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_xpg4_setlocale=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_xpg4_setlocale=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_xpg4_setlocale" >&5
+-echo "${ECHO_T}$ac_cv_lib_xpg4_setlocale" >&6
+-if test $ac_cv_lib_xpg4_setlocale = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBXPG4 1
+-_ACEOF
+-
+-  LIBS="-lxpg4 $LIBS"
+-
+-fi
+- # Mac OS X (and maybe NetBSD) need this.
+-fi
+-
+-for ac_func in gethostbyname
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-else
+-
+-echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
+-echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
+-if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lnsl  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char gethostbyname ();
+-int
+-main ()
+-{
+-gethostbyname ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_nsl_gethostbyname=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_nsl_gethostbyname=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
+-echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
+-if test $ac_cv_lib_nsl_gethostbyname = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBNSL 1
+-_ACEOF
+-
+-  LIBS="-lnsl $LIBS"
+-
+-fi
+-
+-fi
+-done
+-
+-echo "$as_me:$LINENO: checking for X" >&5
+-echo $ECHO_N "checking for X... $ECHO_C" >&6
+-
+-
+-# Check whether --with-x or --without-x was given.
+-if test "${with_x+set}" = set; then
+-  withval="$with_x"
+-
+-fi;
+-# $have_x is `yes', `no', `disabled', or empty when we do not yet know.
+-if test "x$with_x" = xno; then
+-  # The user explicitly disabled X.
+-  have_x=disabled
+-else
+-  if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then
+-    # Both variables are already set.
+-    have_x=yes
+-  else
+-    if test "${ac_cv_have_x+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  # One or both of the vars are not set, and there is no cached value.
+-ac_x_includes=no ac_x_libraries=no
+-rm -fr conftest.dir
+-if mkdir conftest.dir; then
+-  cd conftest.dir
+-  # Make sure to not put "make" in the Imakefile rules, since we grep it out.
+-  cat >Imakefile <<'_ACEOF'
+-acfindx:
+-	@echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
+-_ACEOF
+-  if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
+-    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+-    eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
+-    # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
+-    for ac_extension in a so sl; do
+-      if test ! -f $ac_im_usrlibdir/libX11.$ac_extension &&
+-	 test -f $ac_im_libdir/libX11.$ac_extension; then
+-	ac_im_usrlibdir=$ac_im_libdir; break
+-      fi
+-    done
+-    # Screen out bogus values from the imake configuration.  They are
+-    # bogus both because they are the default anyway, and because
+-    # using them would break gcc on systems where it needs fixed includes.
+-    case $ac_im_incroot in
+-	/usr/include) ;;
+-	*) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
+-    esac
+-    case $ac_im_usrlibdir in
+-	/usr/lib | /lib) ;;
+-	*) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
+-    esac
+-  fi
+-  cd ..
+-  rm -fr conftest.dir
+-fi
+-
+-# Standard set of common directories for X headers.
+-# Check X11 before X11Rn because it is often a symlink to the current release.
+-ac_x_header_dirs='
+-/usr/X11/include
+-/usr/X11R6/include
+-/usr/X11R5/include
+-/usr/X11R4/include
+-
+-/usr/include/X11
+-/usr/include/X11R6
+-/usr/include/X11R5
+-/usr/include/X11R4
+-
+-/usr/local/X11/include
+-/usr/local/X11R6/include
+-/usr/local/X11R5/include
+-/usr/local/X11R4/include
+-
+-/usr/local/include/X11
+-/usr/local/include/X11R6
+-/usr/local/include/X11R5
+-/usr/local/include/X11R4
+-
+-/usr/X386/include
+-/usr/x386/include
+-/usr/XFree86/include/X11
+-
+-/usr/include
+-/usr/local/include
+-/usr/unsupported/include
+-/usr/athena/include
+-/usr/local/x11r5/include
+-/usr/lpp/Xamples/include
+-
+-/usr/openwin/include
+-/usr/openwin/share/include'
+-
+-if test "$ac_x_includes" = no; then
+-  # Guess where to find include files, by looking for Intrinsic.h.
+-  # First, try using that file with no special directory specified.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <X11/Intrinsic.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  # We can compile using X headers with no special include directory.
+-ac_x_includes=
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  for ac_dir in $ac_x_header_dirs; do
+-  if test -r "$ac_dir/X11/Intrinsic.h"; then
+-    ac_x_includes=$ac_dir
+-    break
+-  fi
+-done
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-fi # $ac_x_includes = no
+-
+-if test "$ac_x_libraries" = no; then
+-  # Check for the libraries.
+-  # See if we find them without any special options.
+-  # Don't add to $LIBS permanently.
+-  ac_save_LIBS=$LIBS
+-  LIBS="-lXt $LIBS"
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <X11/Intrinsic.h>
+-int
+-main ()
+-{
+-XtMalloc (0)
+-  ;
+-  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
+-  LIBS=$ac_save_LIBS
+-# We can link X programs with no special library path.
+-ac_x_libraries=
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-LIBS=$ac_save_LIBS
+-for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
+-do
+-  # Don't even attempt the hair of trying to link an X program!
+-  for ac_extension in a so sl; do
+-    if test -r $ac_dir/libXt.$ac_extension; then
+-      ac_x_libraries=$ac_dir
+-      break 2
+-    fi
+-  done
+-done
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi # $ac_x_libraries = no
+-
+-if test "$ac_x_includes" = no || test "$ac_x_libraries" = no; then
+-  # Didn't find X anywhere.  Cache the known absence of X.
+-  ac_cv_have_x="have_x=no"
+-else
+-  # Record where we found X for the cache.
+-  ac_cv_have_x="have_x=yes \
+-		ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries"
+-fi
+-fi
+-
+-  fi
+-  eval "$ac_cv_have_x"
+-fi # $with_x != no
+-
+-if test "$have_x" != yes; then
+-  echo "$as_me:$LINENO: result: $have_x" >&5
+-echo "${ECHO_T}$have_x" >&6
+-  no_x=yes
+-else
+-  # If each of the values was on the command line, it overrides each guess.
+-  test "x$x_includes" = xNONE && x_includes=$ac_x_includes
+-  test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
+-  # Update the cache value to reflect the command line values.
+-  ac_cv_have_x="have_x=yes \
+-		ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
+-  echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5
+-echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
+-fi
+-
+-if test "$no_x" = yes; then
+-  # Not all programs may use this symbol, but it does not hurt to define it.
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define X_DISPLAY_MISSING 1
+-_ACEOF
+-
+-  X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
+-else
+-  if test -n "$x_includes"; then
+-    X_CFLAGS="$X_CFLAGS -I$x_includes"
+-  fi
+-
+-  # It would also be nice to do this for all -L options, not just this one.
+-  if test -n "$x_libraries"; then
+-    X_LIBS="$X_LIBS -L$x_libraries"
+-    # For Solaris; some versions of Sun CC require a space after -R and
+-    # others require no space.  Words are not sufficient . . . .
+-    case `(uname -sr) 2>/dev/null` in
+-    "SunOS 5"*)
+-      echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5
+-echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6
+-      ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
+-      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 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_R_nospace=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_R_nospace=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-      if test $ac_R_nospace = yes; then
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-	X_LIBS="$X_LIBS -R$x_libraries"
+-      else
+-	LIBS="$ac_xsave_LIBS -R $x_libraries"
+-	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 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_R_space=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_R_space=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-	if test $ac_R_space = yes; then
+-	  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-	  X_LIBS="$X_LIBS -R $x_libraries"
+-	else
+-	  echo "$as_me:$LINENO: result: neither works" >&5
+-echo "${ECHO_T}neither works" >&6
+-	fi
+-      fi
+-      LIBS=$ac_xsave_LIBS
+-    esac
+-  fi
+-
+-  # Check for system-dependent libraries X programs must link with.
+-  # Do this before checking for the system-independent R6 libraries
+-  # (-lICE), since we may need -lsocket or whatever for X linking.
+-
+-  if test "$ISC" = yes; then
+-    X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet"
+-  else
+-    # Martyn Johnson says this is needed for Ultrix, if the X
+-    # libraries were built with DECnet support.  And Karl Berry says
+-    # the Alpha needs dnet_stub (dnet does not exist).
+-    ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
+-    cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XOpenDisplay ();
+-int
+-main ()
+-{
+-XOpenDisplay ();
+-  ;
+-  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
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5
+-echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
+-if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ldnet  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char dnet_ntoa ();
+-int
+-main ()
+-{
+-dnet_ntoa ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_dnet_dnet_ntoa=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_dnet_dnet_ntoa=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
+-echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
+-if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
+-  X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
+-fi
+-
+-    if test $ac_cv_lib_dnet_dnet_ntoa = no; then
+-      echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5
+-echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6
+-if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ldnet_stub  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char dnet_ntoa ();
+-int
+-main ()
+-{
+-dnet_ntoa ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_dnet_stub_dnet_ntoa=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_dnet_stub_dnet_ntoa=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
+-echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6
+-if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
+-  X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
+-fi
+-
+-    fi
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-    LIBS="$ac_xsave_LIBS"
+-
+-    # msh at cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT,
+-    # to get the SysV transport functions.
+-    # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4)
+-    # needs -lnsl.
+-    # The nsl library prevents programs from opening the X display
+-    # on Irix 5.2, according to T.E. Dickey.
+-    # The functions gethostbyname, getservbyname, and inet_addr are
+-    # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
+-    echo "$as_me:$LINENO: checking for gethostbyname" >&5
+-echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
+-if test "${ac_cv_func_gethostbyname+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 gethostbyname to an innocuous variant, in case <limits.h> declares gethostbyname.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define gethostbyname innocuous_gethostbyname
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char gethostbyname (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef gethostbyname
+-
+-/* 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 gethostbyname ();
+-/* 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_gethostbyname) || defined (__stub___gethostbyname)
+-choke me
+-#else
+-char (*f) () = gethostbyname;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != gethostbyname;
+-  ;
+-  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_gethostbyname=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_gethostbyname=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5
+-echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6
+-
+-    if test $ac_cv_func_gethostbyname = no; then
+-      echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5
+-echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
+-if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lnsl  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char gethostbyname ();
+-int
+-main ()
+-{
+-gethostbyname ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_nsl_gethostbyname=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_nsl_gethostbyname=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5
+-echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
+-if test $ac_cv_lib_nsl_gethostbyname = yes; then
+-  X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
+-fi
+-
+-      if test $ac_cv_lib_nsl_gethostbyname = no; then
+-	echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5
+-echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6
+-if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lbsd  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char gethostbyname ();
+-int
+-main ()
+-{
+-gethostbyname ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_bsd_gethostbyname=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_bsd_gethostbyname=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5
+-echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6
+-if test $ac_cv_lib_bsd_gethostbyname = yes; then
+-  X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
+-fi
+-
+-      fi
+-    fi
+-
+-    # lieder at skyler.mavd.honeywell.com says without -lsocket,
+-    # socket/setsockopt and other routines are undefined under SCO ODT
+-    # 2.0.  But -lsocket is broken on IRIX 5.2 (and is not necessary
+-    # on later versions), says Simon Leinen: it contains gethostby*
+-    # variants that don't use the name server (or something).  -lsocket
+-    # must be given before -lnsl if both are needed.  We assume that
+-    # if connect needs -lnsl, so does gethostbyname.
+-    echo "$as_me:$LINENO: checking for connect" >&5
+-echo $ECHO_N "checking for connect... $ECHO_C" >&6
+-if test "${ac_cv_func_connect+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 connect to an innocuous variant, in case <limits.h> declares connect.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define connect innocuous_connect
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char connect (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef connect
+-
+-/* 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 connect ();
+-/* 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_connect) || defined (__stub___connect)
+-choke me
+-#else
+-char (*f) () = connect;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != connect;
+-  ;
+-  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_connect=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_connect=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5
+-echo "${ECHO_T}$ac_cv_func_connect" >&6
+-
+-    if test $ac_cv_func_connect = no; then
+-      echo "$as_me:$LINENO: checking for connect in -lsocket" >&5
+-echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
+-if test "${ac_cv_lib_socket_connect+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any 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 connect ();
+-int
+-main ()
+-{
+-connect ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_socket_connect=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_socket_connect=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5
+-echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
+-if test $ac_cv_lib_socket_connect = yes; then
+-  X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
+-fi
+-
+-    fi
+-
+-    # Guillermo Gomez says -lposix is necessary on A/UX.
+-    echo "$as_me:$LINENO: checking for remove" >&5
+-echo $ECHO_N "checking for remove... $ECHO_C" >&6
+-if test "${ac_cv_func_remove+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 remove to an innocuous variant, in case <limits.h> declares remove.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define remove innocuous_remove
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char remove (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef remove
+-
+-/* 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 remove ();
+-/* 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_remove) || defined (__stub___remove)
+-choke me
+-#else
+-char (*f) () = remove;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != remove;
+-  ;
+-  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_remove=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_remove=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5
+-echo "${ECHO_T}$ac_cv_func_remove" >&6
+-
+-    if test $ac_cv_func_remove = no; then
+-      echo "$as_me:$LINENO: checking for remove in -lposix" >&5
+-echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6
+-if test "${ac_cv_lib_posix_remove+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lposix  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char remove ();
+-int
+-main ()
+-{
+-remove ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_posix_remove=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_posix_remove=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5
+-echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6
+-if test $ac_cv_lib_posix_remove = yes; then
+-  X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
+-fi
+-
+-    fi
+-
+-    # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
+-    echo "$as_me:$LINENO: checking for shmat" >&5
+-echo $ECHO_N "checking for shmat... $ECHO_C" >&6
+-if test "${ac_cv_func_shmat+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 shmat to an innocuous variant, in case <limits.h> declares shmat.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define shmat innocuous_shmat
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char shmat (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef shmat
+-
+-/* 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 shmat ();
+-/* 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_shmat) || defined (__stub___shmat)
+-choke me
+-#else
+-char (*f) () = shmat;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != shmat;
+-  ;
+-  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_shmat=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_shmat=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5
+-echo "${ECHO_T}$ac_cv_func_shmat" >&6
+-
+-    if test $ac_cv_func_shmat = no; then
+-      echo "$as_me:$LINENO: checking for shmat in -lipc" >&5
+-echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6
+-if test "${ac_cv_lib_ipc_shmat+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lipc  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char shmat ();
+-int
+-main ()
+-{
+-shmat ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_ipc_shmat=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_ipc_shmat=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5
+-echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6
+-if test $ac_cv_lib_ipc_shmat = yes; then
+-  X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
+-fi
+-
+-    fi
+-  fi
+-
+-  # Check for libraries that X11R6 Xt/Xaw programs need.
+-  ac_save_LDFLAGS=$LDFLAGS
+-  test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries"
+-  # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to
+-  # check for ICE first), but we must link in the order -lSM -lICE or
+-  # we get undefined symbols.  So assume we have SM if we have ICE.
+-  # These have to be linked with before -lX11, unlike the other
+-  # libraries we check for below, so use a different variable.
+-  # John Interrante, Karl Berry
+-  echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5
+-echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
+-if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lICE $X_EXTRA_LIBS $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any 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 IceConnectionNumber ();
+-int
+-main ()
+-{
+-IceConnectionNumber ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_ICE_IceConnectionNumber=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_ICE_IceConnectionNumber=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
+-echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
+-if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
+-  X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
+-fi
+-
+-  LDFLAGS=$ac_save_LDFLAGS
+-
+-fi
+-
+-
+-
+-# Check whether --with-xawlib or --without-xawlib was given.
+-if test "${with_xawlib+set}" = set; then
+-  withval="$with_xawlib"
+-   with_xawlib="$withval"
+-else
+-   with_xawlib="xaw3d,xaw"
+-fi;
+-
+-# Checks for X
+-if test "x$with_x" = xyes; then
+-  if test "x$have_x" = xno; then
+-    if test "x$x_config_flag" = xyes; then
+-      { { echo "$as_me:$LINENO: error: Could not configure X" >&5
+-echo "$as_me: error: Could not configure X" >&2;}
+-   { (exit 1); exit 1; }; }
+-    else
+-      { echo "$as_me:$LINENO: WARNING: Could not configure X" >&5
+-echo "$as_me: WARNING: Could not configure X" >&2;}
+-    fi
+-  fi
+-fi
+-if test "x$with_x" = xyes -a "x$have_x" = xyes; then
+-  if test "x$x_libraries" != x; then
+-    ldflags_x_opt="-L$x_libraries"
+-    LDFLAGS="$LDFLAGS $ldflags_x_opt"
+-    SHLDFLAGS="$SHLDFLAGS $ldflags_x_opt"
+-  else
+-    ldflags_x_opt=
+-  fi
+-  if test "x$x_includes" != x; then
+-    CPPFLAGS="$CPPFLAGS -I$x_includes"
+-  fi
+-
+-
+-echo "$as_me:$LINENO: checking for XOpenDisplay in -lX11" >&5
+-echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
+-if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lX11  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XOpenDisplay ();
+-int
+-main ()
+-{
+-XOpenDisplay ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_X11_XOpenDisplay=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_X11_XOpenDisplay=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+-echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
+-if test $ac_cv_lib_X11_XOpenDisplay = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBX11 1
+-_ACEOF
+-
+-  LIBS="-lX11 $LIBS"
+-
+-fi
+-
+-  echo "$as_me:$LINENO: checking X11 version 6" >&5
+-echo $ECHO_N "checking X11 version 6... $ECHO_C" >&6
+-  if test "${timidity_cv_x11_version_6+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <X11/Xlib.h>
+-int
+-main ()
+-{
+-
+-#if XlibSpecificationRelease < 6
+-fail;
+-#endif
+-
+-  ;
+-  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
+-  timidity_cv_x11_version_6=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-timidity_cv_x11_version_6=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-
+-  if test "$timidity_cv_x11_version_6" = "yes"; then
+-    echo "$as_me:$LINENO: result: 6 or newer" >&5
+-echo "${ECHO_T}6 or newer" >&6
+-      else
+-    echo "$as_me:$LINENO: result: before 6" >&5
+-echo "${ECHO_T}before 6" >&6
+-  fi
+-
+-    KEEPLIBS=$LIBS
+-  echo "$as_me:$LINENO: checking for XShapeCombineMask in -lXext" >&5
+-echo $ECHO_N "checking for XShapeCombineMask in -lXext... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xext_XShapeCombineMask+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXext  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XShapeCombineMask ();
+-int
+-main ()
+-{
+-XShapeCombineMask ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xext_XShapeCombineMask=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xext_XShapeCombineMask=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xext_XShapeCombineMask" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xext_XShapeCombineMask" >&6
+-if test $ac_cv_lib_Xext_XShapeCombineMask = yes; then
+-  have_xext=yes; LIBS="-lXext $LIBS"
+-else
+-  have_xext=no
+-fi
+-
+-
+-echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5
+-echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
+-if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lICE  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char IceConnectionNumber ();
+-int
+-main ()
+-{
+-IceConnectionNumber ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_ICE_IceConnectionNumber=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_ICE_IceConnectionNumber=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
+-echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
+-if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBICE 1
+-_ACEOF
+-
+-  LIBS="-lICE $LIBS"
+-
+-fi
+-
+-  echo "$as_me:$LINENO: checking for SmcOpenConnection in -lSM" >&5
+-echo $ECHO_N "checking for SmcOpenConnection in -lSM... $ECHO_C" >&6
+-if test "${ac_cv_lib_SM_SmcOpenConnection+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lSM  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char SmcOpenConnection ();
+-int
+-main ()
+-{
+-SmcOpenConnection ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_SM_SmcOpenConnection=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_SM_SmcOpenConnection=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_SM_SmcOpenConnection" >&5
+-echo "${ECHO_T}$ac_cv_lib_SM_SmcOpenConnection" >&6
+-if test $ac_cv_lib_SM_SmcOpenConnection = yes; then
+-  have_xprelibs=yes; LIBS="-lSM $LIBS"
+-else
+-  have_xprelibs=no
+-fi
+-
+-  echo "$as_me:$LINENO: checking for XtVaAppInitialize in -lXt" >&5
+-echo $ECHO_N "checking for XtVaAppInitialize in -lXt... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xt_XtVaAppInitialize+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXt  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XtVaAppInitialize ();
+-int
+-main ()
+-{
+-XtVaAppInitialize ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xt_XtVaAppInitialize=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xt_XtVaAppInitialize=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xt_XtVaAppInitialize" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xt_XtVaAppInitialize" >&6
+-if test $ac_cv_lib_Xt_XtVaAppInitialize = yes; then
+-  have_xt=yes; LIBS="-lXt $LIBS"
+-else
+-  have_xt=no
+-fi
+-
+-  echo "$as_me:$LINENO: checking for XmuInternAtom in -lXmu" >&5
+-echo $ECHO_N "checking for XmuInternAtom in -lXmu... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xmu_XmuInternAtom+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXmu  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XmuInternAtom ();
+-int
+-main ()
+-{
+-XmuInternAtom ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xmu_XmuInternAtom=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xmu_XmuInternAtom=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xmu_XmuInternAtom" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xmu_XmuInternAtom" >&6
+-if test $ac_cv_lib_Xmu_XmuInternAtom = yes; then
+-  LIBS="-lXmu $LIBS"
+-fi
+-
+-
+-for ac_func in XmuRegisterExternalAgent
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-done
+-
+-  for i in `echo $with_xawlib | sed 's/,/ /g'`; do
+-  case "$i" in
+-  "xaw")
+-    echo "$as_me:$LINENO: checking for XawInitializeWidgetSet in -lXaw" >&5
+-echo $ECHO_N "checking for XawInitializeWidgetSet in -lXaw... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xaw_XawInitializeWidgetSet+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXaw  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XawInitializeWidgetSet ();
+-int
+-main ()
+-{
+-XawInitializeWidgetSet ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xaw_XawInitializeWidgetSet=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xaw_XawInitializeWidgetSet=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xaw_XawInitializeWidgetSet" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xaw_XawInitializeWidgetSet" >&6
+-if test $ac_cv_lib_Xaw_XawInitializeWidgetSet = yes; then
+-  have_xaw=yes
+-else
+-  have_xaw=no
+-fi
+-
+-    ;;
+-  "xaw3d")
+-    echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
+-if test "${ac_cv_header_stdc+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdlib.h>
+-#include <stdarg.h>
+-#include <string.h>
+-#include <float.h>
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_header_stdc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_header_stdc=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-
+-if test $ac_cv_header_stdc = yes; then
+-  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <string.h>
+-
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "memchr" >/dev/null 2>&1; then
+-  :
+-else
+-  ac_cv_header_stdc=no
+-fi
+-rm -f conftest*
+-
+-fi
+-
+-if test $ac_cv_header_stdc = yes; then
+-  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdlib.h>
+-
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "free" >/dev/null 2>&1; then
+-  :
+-else
+-  ac_cv_header_stdc=no
+-fi
+-rm -f conftest*
+-
+-fi
+-
+-if test $ac_cv_header_stdc = yes; then
+-  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
+-  if test "$cross_compiling" = yes; then
+-  :
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <ctype.h>
+-#if ((' ' & 0x0FF) == 0x020)
+-# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
+-# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
+-#else
+-# define ISLOWER(c) \
+-		   (('a' <= (c) && (c) <= 'i') \
+-		     || ('j' <= (c) && (c) <= 'r') \
+-		     || ('s' <= (c) && (c) <= 'z'))
+-# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
+-#endif
+-
+-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
+-int
+-main ()
+-{
+-  int i;
+-  for (i = 0; i < 256; i++)
+-    if (XOR (islower (i), ISLOWER (i))
+-	|| toupper (i) != TOUPPER (i))
+-      exit(2);
+-  exit (0);
+-}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_header_stdc=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
+-echo "${ECHO_T}$ac_cv_header_stdc" >&6
+-if test $ac_cv_header_stdc = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define STDC_HEADERS 1
+-_ACEOF
+-
+-fi
+-
+-# On IRIX 5.3, sys/types and inttypes.h are conflicting.
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
+-		  inttypes.h stdint.h unistd.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_Header=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_Header=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-
+-echo "$as_me:$LINENO: checking for XawInitializeWidgetSet in -lXaw3d" >&5
+-echo $ECHO_N "checking for XawInitializeWidgetSet in -lXaw3d... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xaw3d_XawInitializeWidgetSet+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXaw3d  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XawInitializeWidgetSet ();
+-int
+-main ()
+-{
+-XawInitializeWidgetSet ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xaw3d_XawInitializeWidgetSet=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xaw3d_XawInitializeWidgetSet=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xaw3d_XawInitializeWidgetSet" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xaw3d_XawInitializeWidgetSet" >&6
+-if test $ac_cv_lib_Xaw3d_XawInitializeWidgetSet = yes; then
+-   have_xaw=3d;
+-          if test "${ac_cv_header_X11_Xaw3d_Tip_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for X11/Xaw3d/Tip.h" >&5
+-echo $ECHO_N "checking for X11/Xaw3d/Tip.h... $ECHO_C" >&6
+-if test "${ac_cv_header_X11_Xaw3d_Tip_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xaw3d_Tip_h" >&5
+-echo "${ECHO_T}$ac_cv_header_X11_Xaw3d_Tip_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking X11/Xaw3d/Tip.h usability" >&5
+-echo $ECHO_N "checking X11/Xaw3d/Tip.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <X11/Xaw3d/Tip.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking X11/Xaw3d/Tip.h presence" >&5
+-echo $ECHO_N "checking X11/Xaw3d/Tip.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <X11/Xaw3d/Tip.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/Xaw3d/Tip.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: X11/Xaw3d/Tip.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for X11/Xaw3d/Tip.h" >&5
+-echo $ECHO_N "checking for X11/Xaw3d/Tip.h... $ECHO_C" >&6
+-if test "${ac_cv_header_X11_Xaw3d_Tip_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_X11_Xaw3d_Tip_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xaw3d_Tip_h" >&5
+-echo "${ECHO_T}$ac_cv_header_X11_Xaw3d_Tip_h" >&6
+-
+-fi
+-if test $ac_cv_header_X11_Xaw3d_Tip_h = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_XAW3D_TIP 1
+-_ACEOF
+-
+-fi
+-
+-
+-
+-else
+-  have_xaw=no
+-
+-fi
+-
+-    ;;
+-  "neXtaw")
+-    echo "$as_me:$LINENO: checking for XawInitializeWidgetSet in -lneXtaw" >&5
+-echo $ECHO_N "checking for XawInitializeWidgetSet in -lneXtaw... $ECHO_C" >&6
+-if test "${ac_cv_lib_neXtaw_XawInitializeWidgetSet+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lneXtaw  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XawInitializeWidgetSet ();
+-int
+-main ()
+-{
+-XawInitializeWidgetSet ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_neXtaw_XawInitializeWidgetSet=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_neXtaw_XawInitializeWidgetSet=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_neXtaw_XawInitializeWidgetSet" >&5
+-echo "${ECHO_T}$ac_cv_lib_neXtaw_XawInitializeWidgetSet" >&6
+-if test $ac_cv_lib_neXtaw_XawInitializeWidgetSet = yes; then
+-  have_xaw=next
+-else
+-  have_xaw=no
+-fi
+-
+-    ;;
+-  "XawPlus")
+-
+-echo "$as_me:$LINENO: checking for XpmCreatePixmapFromData in -lXpm" >&5
+-echo $ECHO_N "checking for XpmCreatePixmapFromData in -lXpm... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xpm_XpmCreatePixmapFromData+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXpm  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XpmCreatePixmapFromData ();
+-int
+-main ()
+-{
+-XpmCreatePixmapFromData ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xpm_XpmCreatePixmapFromData=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xpm_XpmCreatePixmapFromData=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&6
+-if test $ac_cv_lib_Xpm_XpmCreatePixmapFromData = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBXPM 1
+-_ACEOF
+-
+-  LIBS="-lXpm $LIBS"
+-
+-fi
+-
+-    echo "$as_me:$LINENO: checking for XawInitializeWidgetSet in -lXawPlus" >&5
+-echo $ECHO_N "checking for XawInitializeWidgetSet in -lXawPlus... $ECHO_C" >&6
+-if test "${ac_cv_lib_XawPlus_XawInitializeWidgetSet+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXawPlus  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XawInitializeWidgetSet ();
+-int
+-main ()
+-{
+-XawInitializeWidgetSet ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_XawPlus_XawInitializeWidgetSet=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_XawPlus_XawInitializeWidgetSet=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_XawPlus_XawInitializeWidgetSet" >&5
+-echo "${ECHO_T}$ac_cv_lib_XawPlus_XawInitializeWidgetSet" >&6
+-if test $ac_cv_lib_XawPlus_XawInitializeWidgetSet = yes; then
+-  have_xaw=plus
+-else
+-  have_xaw=no
+-fi
+-
+-    ;;
+-  *)
+-    have_xaw=no
+-    ;;
+-  esac
+-  if test "x$have_xaw" != "xno"; then break; fi
+-  done
+-  echo "$as_me:$LINENO: checking for XmCreateForm in -lXm" >&5
+-echo $ECHO_N "checking for XmCreateForm in -lXm... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xm_XmCreateForm+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXm  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XmCreateForm ();
+-int
+-main ()
+-{
+-XmCreateForm ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xm_XmCreateForm=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xm_XmCreateForm=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xm_XmCreateForm" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xm_XmCreateForm" >&6
+-if test $ac_cv_lib_Xm_XmCreateForm = yes; then
+-  have_xm=yes
+-else
+-  have_xm=no
+-fi
+-
+-
+-for ac_func in XShmCreatePixmap
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-done
+-
+-  LIBS=$KEEPLIBS
+-fi
+-
+-# Checks for header files.
+-echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
+-if test "${ac_cv_header_stdc+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdlib.h>
+-#include <stdarg.h>
+-#include <string.h>
+-#include <float.h>
+-
+-int
+-main ()
+-{
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_header_stdc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_header_stdc=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-
+-if test $ac_cv_header_stdc = yes; then
+-  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <string.h>
+-
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "memchr" >/dev/null 2>&1; then
+-  :
+-else
+-  ac_cv_header_stdc=no
+-fi
+-rm -f conftest*
+-
+-fi
+-
+-if test $ac_cv_header_stdc = yes; then
+-  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdlib.h>
+-
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "free" >/dev/null 2>&1; then
+-  :
+-else
+-  ac_cv_header_stdc=no
+-fi
+-rm -f conftest*
+-
+-fi
+-
+-if test $ac_cv_header_stdc = yes; then
+-  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
+-  if test "$cross_compiling" = yes; then
+-  :
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <ctype.h>
+-#if ((' ' & 0x0FF) == 0x020)
+-# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
+-# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
+-#else
+-# define ISLOWER(c) \
+-		   (('a' <= (c) && (c) <= 'i') \
+-		     || ('j' <= (c) && (c) <= 'r') \
+-		     || ('s' <= (c) && (c) <= 'z'))
+-# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
+-#endif
+-
+-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
+-int
+-main ()
+-{
+-  int i;
+-  for (i = 0; i < 256; i++)
+-    if (XOR (islower (i), ISLOWER (i))
+-	|| toupper (i) != TOUPPER (i))
+-      exit(2);
+-  exit (0);
+-}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_header_stdc=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
+-echo "${ECHO_T}$ac_cv_header_stdc" >&6
+-if test $ac_cv_header_stdc = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define STDC_HEADERS 1
+-_ACEOF
+-
+-fi
+-
+-#AC_HEADER_STDBOOL
+-echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5
+-echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6
+-if test "${ac_cv_header_sys_wait_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <sys/wait.h>
+-#ifndef WEXITSTATUS
+-# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
+-#endif
+-#ifndef WIFEXITED
+-# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
+-#endif
+-
+-int
+-main ()
+-{
+-  int s;
+-  wait (&s);
+-  s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_header_sys_wait_h=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_header_sys_wait_h=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5
+-echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6
+-if test $ac_cv_header_sys_wait_h = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SYS_WAIT_H 1
+-_ACEOF
+-
+-fi
+-
+-if test "x$WATCOM_C" != xyes ; then
+-echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5
+-echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
+-if test "${ac_cv_header_time+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <sys/time.h>
+-#include <time.h>
+-
+-int
+-main ()
+-{
+-if ((struct tm *) 0)
+-return 0;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_header_time=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_header_time=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5
+-echo "${ECHO_T}$ac_cv_header_time" >&6
+-if test $ac_cv_header_time = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define TIME_WITH_SYS_TIME 1
+-_ACEOF
+-
+-fi
+-
+-fi
+-
+-
+-
+-
+-
+-ac_header_dirent=no
+-for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
+-  as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5
+-echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <$ac_hdr>
+-
+-int
+-main ()
+-{
+-if ((DIR *) 0)
+-return 0;
+-  ;
+-  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
+-  eval "$as_ac_Header=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_Header=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
+-_ACEOF
+-
+-ac_header_dirent=$ac_hdr; break
+-fi
+-
+-done
+-# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
+-if test $ac_header_dirent = dirent.h; then
+-  echo "$as_me:$LINENO: checking for library containing opendir" >&5
+-echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6
+-if test "${ac_cv_search_opendir+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_func_search_save_LIBS=$LIBS
+-ac_cv_search_opendir=no
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char opendir ();
+-int
+-main ()
+-{
+-opendir ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_search_opendir="none required"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-if test "$ac_cv_search_opendir" = no; then
+-  for ac_lib in dir; do
+-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+-    cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char opendir ();
+-int
+-main ()
+-{
+-opendir ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_search_opendir="-l$ac_lib"
+-break
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-  done
+-fi
+-LIBS=$ac_func_search_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5
+-echo "${ECHO_T}$ac_cv_search_opendir" >&6
+-if test "$ac_cv_search_opendir" != no; then
+-  test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS"
+-
+-fi
+-
+-else
+-  echo "$as_me:$LINENO: checking for library containing opendir" >&5
+-echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6
+-if test "${ac_cv_search_opendir+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_func_search_save_LIBS=$LIBS
+-ac_cv_search_opendir=no
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char opendir ();
+-int
+-main ()
+-{
+-opendir ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_search_opendir="none required"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-if test "$ac_cv_search_opendir" = no; then
+-  for ac_lib in x; do
+-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+-    cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char opendir ();
+-int
+-main ()
+-{
+-opendir ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_search_opendir="-l$ac_lib"
+-break
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-  done
+-fi
+-LIBS=$ac_func_search_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5
+-echo "${ECHO_T}$ac_cv_search_opendir" >&6
+-if test "$ac_cv_search_opendir" != no; then
+-  test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS"
+-
+-fi
+-
+-fi
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-for ac_header in \
+-  arpa/inet.h \
+-  errno.h \
+-  getopt.h \
+-  glob.h \
+-  dlfcn.h \
+-  fcntl.h \
+-  inttypes.h \
+-  limits.h \
+-  machine/endian.h \
+-  malloc.h \
+-  memory.h \
+-  netdb.h \
+-  netinet/in.h \
+-  nlist.h \
+-  stddef.h \
+-  stdlib.h \
+-  stdint.h \
+-  string.h \
+-  strings.h \
+-  stropts.h \
+-  soundcard.h \
+-  alsa/asoundlib.h \
+-  sys/asoundlib.h \
+-  sys/audioio.h \
+-  sys/awe_voice.h\
+-  sys/ioctl.h \
+-  sys/ipc.h \
+-  sys/param.h \
+-  sys/shm.h \
+-  sys/socket.h \
+-  sys/soundcard.h \
+-  sys/param.h \
+-  sys/time.h \
+-  sys/types.h \
+-  sys/stat.h \
+-  sys/sysctl.h \
+-  termios.h \
+-  X11/Xlib.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-
+-if test "x$DMC" != xyes ; then
+-
+-for ac_header in  \
+-  unistd.h \
+-
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-fi
+-
+-
+-
+-for ac_header in \
+-  X11/extensions/XShm.h X11/Xmu/ExtAgent.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#ifdef HAVE_X11_XLIB_H
+-#include <X11/Xlib.h>
+-#endif
+-
+-
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_Header=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_Header=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-if test "${ac_cv_header_string_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for string.h" >&5
+-echo $ECHO_N "checking for string.h... $ECHO_C" >&6
+-if test "${ac_cv_header_string_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_string_h" >&5
+-echo "${ECHO_T}$ac_cv_header_string_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking string.h usability" >&5
+-echo $ECHO_N "checking string.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <string.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking string.h presence" >&5
+-echo $ECHO_N "checking string.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <string.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: string.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: string.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: string.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: string.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: string.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: string.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: string.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: string.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: string.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: string.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: string.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: string.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: string.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: string.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: string.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: string.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for string.h" >&5
+-echo $ECHO_N "checking for string.h... $ECHO_C" >&6
+-if test "${ac_cv_header_string_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_string_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_string_h" >&5
+-echo "${ECHO_T}$ac_cv_header_string_h" >&6
+-
+-fi
+-if test $ac_cv_header_string_h = yes; then
+-  :
+-else
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define NO_STRING_H 1
+-_ACEOF
+-
+-fi
+-
+-
+-
+-# Checks for typedefs, structures, and compiler characteristics.
+-if test "x$WATCOM_C" != xyes ; then
+-echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5
+-echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6
+-if test "${ac_cv_c_bigendian+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  # See if sys/param.h defines the BYTE_ORDER macro.
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <sys/param.h>
+-
+-int
+-main ()
+-{
+-#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
+- bogus endian macros
+-#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
+-  # It does; now see whether it defined to BIG_ENDIAN or not.
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <sys/param.h>
+-
+-int
+-main ()
+-{
+-#if BYTE_ORDER != BIG_ENDIAN
+- not big endian
+-#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_cv_c_bigendian=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_c_bigendian=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-# It does not; compile a test program.
+-if test "$cross_compiling" = yes; then
+-  # try to guess the endianness by grepping values into an object file
+-  ac_cv_c_bigendian=unknown
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
+-short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
+-void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }
+-short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
+-short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
+-void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }
+-int
+-main ()
+-{
+- _ascii (); _ebcdic ();
+-  ;
+-  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
+-  if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
+-  ac_cv_c_bigendian=yes
+-fi
+-if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
+-  if test "$ac_cv_c_bigendian" = unknown; then
+-    ac_cv_c_bigendian=no
+-  else
+-    # finding both strings is unlikely to happen, but who knows?
+-    ac_cv_c_bigendian=unknown
+-  fi
+-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
+-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 ()
+-{
+-  /* Are we little or big endian?  From Harbison&Steele.  */
+-  union
+-  {
+-    long l;
+-    char c[sizeof (long)];
+-  } u;
+-  u.l = 1;
+-  exit (u.c[sizeof (long) - 1] == 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
+-  ac_cv_c_bigendian=no
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_c_bigendian=yes
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5
+-echo "${ECHO_T}$ac_cv_c_bigendian" >&6
+-case $ac_cv_c_bigendian in
+-  yes)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define WORDS_BIGENDIAN 1
+-_ACEOF
+- ;;
+-  no)
+-     ;;
+-  *)
+-    { { echo "$as_me:$LINENO: error: unknown endianness
+-presetting ac_cv_c_bigendian=no (or yes) will help" >&5
+-echo "$as_me: error: unknown endianness
+-presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}
+-   { (exit 1); exit 1; }; } ;;
+-esac
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking whether char is unsigned" >&5
+-echo $ECHO_N "checking whether char is unsigned... $ECHO_C" >&6
+-if test "${ac_cv_c_char_unsigned+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-int
+-main ()
+-{
+-static int test_array [1 - 2 * !(((char) -1) < 0)];
+-test_array [0] = 0
+-
+-  ;
+-  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_c_char_unsigned=no
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_c_char_unsigned=yes
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_char_unsigned" >&5
+-echo "${ECHO_T}$ac_cv_c_char_unsigned" >&6
+-if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then
+-  cat >>confdefs.h <<\_ACEOF
+-#define __CHAR_UNSIGNED__ 1
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
+-echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
+-if test "${ac_cv_c_const+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-int
+-main ()
+-{
+-/* FIXME: Include the comments suggested by Paul. */
+-#ifndef __cplusplus
+-  /* Ultrix mips cc rejects this.  */
+-  typedef int charset[2];
+-  const charset x;
+-  /* SunOS 4.1.1 cc rejects this.  */
+-  char const *const *ccp;
+-  char **p;
+-  /* NEC SVR4.0.2 mips cc rejects this.  */
+-  struct point {int x, y;};
+-  static struct point const zero = {0,0};
+-  /* AIX XL C 1.02.0.0 rejects this.
+-     It does not let you subtract one const X* pointer from another in
+-     an arm of an if-expression whose if-part is not a constant
+-     expression */
+-  const char *g = "string";
+-  ccp = &g + (g ? g-g : 0);
+-  /* HPUX 7.0 cc rejects these. */
+-  ++ccp;
+-  p = (char**) ccp;
+-  ccp = (char const *const *) p;
+-  { /* SCO 3.2v4 cc rejects this.  */
+-    char *t;
+-    char const *s = 0 ? (char *) 0 : (char const *) 0;
+-
+-    *t++ = 0;
+-  }
+-  { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
+-    int x[] = {25, 17};
+-    const int *foo = &x[0];
+-    ++foo;
+-  }
+-  { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
+-    typedef const int *iptr;
+-    iptr p = 0;
+-    ++p;
+-  }
+-  { /* AIX XL C 1.02.0.0 rejects this saying
+-       "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
+-    struct s { int j; const int *ap[3]; };
+-    struct s *b; b->j = 5;
+-  }
+-  { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
+-    const int foo = 10;
+-  }
+-#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_cv_c_const=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_c_const=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
+-echo "${ECHO_T}$ac_cv_c_const" >&6
+-if test $ac_cv_c_const = no; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define const
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for inline" >&5
+-echo $ECHO_N "checking for inline... $ECHO_C" >&6
+-if test "${ac_cv_c_inline+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_c_inline=no
+-for ac_kw in inline __inline__ __inline; do
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#ifndef __cplusplus
+-typedef int foo_t;
+-static $ac_kw foo_t static_foo () {return 0; }
+-$ac_kw foo_t foo () {return 0; }
+-#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
+-  ac_cv_c_inline=$ac_kw; 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
+-
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5
+-echo "${ECHO_T}$ac_cv_c_inline" >&6
+-
+-
+-case $ac_cv_c_inline in
+-  inline | yes) ;;
+-  *)
+-    case $ac_cv_c_inline in
+-      no) ac_val=;;
+-      *) ac_val=$ac_cv_c_inline;;
+-    esac
+-    cat >>confdefs.h <<_ACEOF
+-#ifndef __cplusplus
+-#define inline $ac_val
+-#endif
+-_ACEOF
+-    ;;
+-esac
+-
+-echo "$as_me:$LINENO: checking for working volatile" >&5
+-echo $ECHO_N "checking for working volatile... $ECHO_C" >&6
+-if test "${ac_cv_c_volatile+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 ()
+-{
+-
+-volatile int x;
+-int * volatile y;
+-  ;
+-  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_c_volatile=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_c_volatile=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_volatile" >&5
+-echo "${ECHO_T}$ac_cv_c_volatile" >&6
+-if test $ac_cv_c_volatile = no; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define volatile
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for preprocessor stringizing operator" >&5
+-echo $ECHO_N "checking for preprocessor stringizing operator... $ECHO_C" >&6
+-if test "${ac_cv_c_stringize+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 x(y) #y
+-
+-char *s = x(teststring);
+-_ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "#teststring" >/dev/null 2>&1; then
+-  ac_cv_c_stringize=no
+-else
+-  ac_cv_c_stringize=yes
+-fi
+-rm -f conftest*
+-
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_c_stringize" >&5
+-echo "${ECHO_T}$ac_cv_c_stringize" >&6
+-if test $ac_cv_c_stringize = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRINGIZE 1
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for function prototypes" >&5
+-echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6
+-if test "$ac_cv_prog_cc_stdc" != no; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define PROTOTYPES 1
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define __PROTOTYPES 1
+-_ACEOF
+-
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking whether struct tm is in sys/time.h or time.h" >&5
+-echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6
+-if test "${ac_cv_struct_tm+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <time.h>
+-
+-int
+-main ()
+-{
+-struct tm *tp; tp->tm_sec;
+-  ;
+-  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_struct_tm=time.h
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_struct_tm=sys/time.h
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_struct_tm" >&5
+-echo "${ECHO_T}$ac_cv_struct_tm" >&6
+-if test $ac_cv_struct_tm = sys/time.h; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define TM_IN_SYS_TIME 1
+-_ACEOF
+-
+-fi
+-
+-if test "x$DMC" != xyes ; then
+-echo "$as_me:$LINENO: checking for size_t" >&5
+-echo $ECHO_N "checking for size_t... $ECHO_C" >&6
+-if test "${ac_cv_type_size_t+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-int
+-main ()
+-{
+-if ((size_t *) 0)
+-  return 0;
+-if (sizeof (size_t))
+-  return 0;
+-  ;
+-  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_type_size_t=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_type_size_t=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
+-echo "${ECHO_T}$ac_cv_type_size_t" >&6
+-if test $ac_cv_type_size_t = yes; then
+-  :
+-else
+-
+-cat >>confdefs.h <<_ACEOF
+-#define size_t unsigned
+-_ACEOF
+-
+-fi
+-
+-fi
+-if test "x$POCC" != xyes ; then
+-echo "$as_me:$LINENO: checking for off_t" >&5
+-echo $ECHO_N "checking for off_t... $ECHO_C" >&6
+-if test "${ac_cv_type_off_t+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-int
+-main ()
+-{
+-if ((off_t *) 0)
+-  return 0;
+-if (sizeof (off_t))
+-  return 0;
+-  ;
+-  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_type_off_t=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_type_off_t=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
+-echo "${ECHO_T}$ac_cv_type_off_t" >&6
+-if test $ac_cv_type_off_t = yes; then
+-  :
+-else
+-
+-cat >>confdefs.h <<_ACEOF
+-#define off_t long
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for pid_t" >&5
+-echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
+-if test "${ac_cv_type_pid_t+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-int
+-main ()
+-{
+-if ((pid_t *) 0)
+-  return 0;
+-if (sizeof (pid_t))
+-  return 0;
+-  ;
+-  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_type_pid_t=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_type_pid_t=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5
+-echo "${ECHO_T}$ac_cv_type_pid_t" >&6
+-if test $ac_cv_type_pid_t = yes; then
+-  :
+-else
+-
+-cat >>confdefs.h <<_ACEOF
+-#define pid_t int
+-_ACEOF
+-
+-fi
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking volatile declaration" >&5
+-echo $ECHO_N "checking volatile declaration... $ECHO_C" >&6
+-if test "${timidity_cv_type_volatile+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 ()
+-{
+-volatile int x
+-  ;
+-  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
+-  timidity_cv_type_volatile=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-timidity_cv_type_volatile=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $timidity_cv_type_volatile" >&5
+-echo "${ECHO_T}$timidity_cv_type_volatile" >&6
+-if test $timidity_cv_type_volatile = no; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define NO_VOLATILE 1
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking union semun declaration" >&5
+-echo $ECHO_N "checking union semun declaration... $ECHO_C" >&6
+-if test "${timidity_cv_type_union_semun+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <sys/types.h>
+-#include <sys/ipc.h>
+-#include <sys/sem.h>
+-
+-int
+-main ()
+-{
+-union semun x
+-  ;
+-  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
+-  timidity_cv_type_union_semun=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-timidity_cv_type_union_semun=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $timidity_cv_type_union_semun" >&5
+-echo "${ECHO_T}$timidity_cv_type_union_semun" >&6
+-if test $timidity_cv_type_union_semun = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_UNION_SEMUN 1
+-_ACEOF
+-
+-fi
+-
+-if test "x$MSYS" = xyes ; then
+-	case "x${CC}" in
+-	"xgcc"*)
+-		msnative_struct=''
+-	    echo "$as_me:$LINENO: checking how to get MSVC-compatible struct packing" >&5
+-echo $ECHO_N "checking how to get MSVC-compatible struct packing... $ECHO_C" >&6
+-	    if test -z "$ac_cv_prog_CC"; then
+-			our_gcc="$CC"
+-		else
+-			our_gcc="$ac_cv_prog_CC"
+-		fi
+-		case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in
+-			2.)
+-		if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then
+-	  		msnative_struct='-fnative-struct'
+-		fi
+-		;;
+-			*)
+-		if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then
+-			msnative_struct='-mms-bitfields'
+-		fi
+-		;;
+-		esac
+-		if test x"$msnative_struct" = x ; then
+-			echo "$as_me:$LINENO: result: no way" >&5
+-echo "${ECHO_T}no way" >&6
+-			{ echo "$as_me:$LINENO: WARNING: produced binary will be incompatible with windows' GUI " >&5
+-echo "$as_me: WARNING: produced binary will be incompatible with windows' GUI " >&2;}
+-		else
+-			CFLAGS="$CFLAGS $msnative_struct"
+-			CPPFLAGS="$CPPFLAGS $msnative_struct"
+-			echo "$as_me:$LINENO: result: ${msnative_struct}" >&5
+-echo "${ECHO_T}${msnative_struct}" >&6
+-		fi
+-		;;
+-	*)
+-		;;
+-	esac
+-fi
+-if test "x$MSYS" = xyes ; then
+-  echo "$as_me:$LINENO: checking Cygwin new mmsystem" >&5
+-echo $ECHO_N "checking Cygwin new mmsystem... $ECHO_C" >&6
+-if test "${timidity_cv_header_new_mmsystem+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <windows.h>
+-#include <mmsystem.h>
+-
+-int
+-main ()
+-{
+-return WOM_OPEN != 0x3BB
+-  ;
+-  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
+-  timidity_cv_header_new_mmsystem=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-timidity_cv_header_new_mmsystem=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $timidity_cv_header_new_mmsystem" >&5
+-echo "${ECHO_T}$timidity_cv_header_new_mmsystem" >&6
+-  if test $timidity_cv_header_new_mmsystem = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_NEW_MMSYSTEM 1
+-_ACEOF
+-
+-  fi
+-fi
+-
+-# Checks for library functions.
+-echo "$as_me:$LINENO: checking for error_at_line" >&5
+-echo $ECHO_N "checking for error_at_line... $ECHO_C" >&6
+-if test "${ac_cv_lib_error_at_line+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-int
+-main ()
+-{
+-error_at_line (0, 0, "", 0, "");
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_error_at_line=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_error_at_line=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_error_at_line" >&5
+-echo "${ECHO_T}$ac_cv_lib_error_at_line" >&6
+-if test $ac_cv_lib_error_at_line = no; then
+-  case $LIBOBJS in
+-    "error.$ac_objext"   | \
+-  *" error.$ac_objext"   | \
+-    "error.$ac_objext "* | \
+-  *" error.$ac_objext "* ) ;;
+-  *) LIBOBJS="$LIBOBJS error.$ac_objext" ;;
+-esac
+-
+-fi
+-
+-if test "x$DMC" != xyes ; then
+-
+-
+-for ac_header in unistd.h vfork.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-
+-
+-for ac_func in fork vfork
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-done
+-
+-if test "x$ac_cv_func_fork" = xyes; then
+-  echo "$as_me:$LINENO: checking for working fork" >&5
+-echo $ECHO_N "checking for working fork... $ECHO_C" >&6
+-if test "${ac_cv_func_fork_works+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test "$cross_compiling" = yes; then
+-  ac_cv_func_fork_works=cross
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* By Ruediger Kuhlmann. */
+-      #include <sys/types.h>
+-      #if HAVE_UNISTD_H
+-      # include <unistd.h>
+-      #endif
+-      /* Some systems only have a dummy stub for fork() */
+-      int main ()
+-      {
+-	if (fork() < 0)
+-	  exit (1);
+-	exit (0);
+-      }
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_func_fork_works=yes
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_func_fork_works=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_fork_works" >&5
+-echo "${ECHO_T}$ac_cv_func_fork_works" >&6
+-
+-else
+-  ac_cv_func_fork_works=$ac_cv_func_fork
+-fi
+-if test "x$ac_cv_func_fork_works" = xcross; then
+-  case $host in
+-    *-*-amigaos* | *-*-msdosdjgpp*)
+-      # Override, as these systems have only a dummy fork() stub
+-      ac_cv_func_fork_works=no
+-      ;;
+-    *)
+-      ac_cv_func_fork_works=yes
+-      ;;
+-  esac
+-  { echo "$as_me:$LINENO: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5
+-echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;}
+-fi
+-ac_cv_func_vfork_works=$ac_cv_func_vfork
+-if test "x$ac_cv_func_vfork" = xyes; then
+-  echo "$as_me:$LINENO: checking for working vfork" >&5
+-echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
+-if test "${ac_cv_func_vfork_works+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test "$cross_compiling" = yes; then
+-  ac_cv_func_vfork_works=cross
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Thanks to Paul Eggert for this test.  */
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <sys/types.h>
+-#include <sys/stat.h>
+-#include <sys/wait.h>
+-#if HAVE_UNISTD_H
+-# include <unistd.h>
+-#endif
+-#if HAVE_VFORK_H
+-# include <vfork.h>
+-#endif
+-/* On some sparc systems, changes by the child to local and incoming
+-   argument registers are propagated back to the parent.  The compiler
+-   is told about this with #include <vfork.h>, but some compilers
+-   (e.g. gcc -O) don't grok <vfork.h>.  Test for this by using a
+-   static variable whose address is put into a register that is
+-   clobbered by the vfork.  */
+-static void
+-#ifdef __cplusplus
+-sparc_address_test (int arg)
+-# else
+-sparc_address_test (arg) int arg;
+-#endif
+-{
+-  static pid_t child;
+-  if (!child) {
+-    child = vfork ();
+-    if (child < 0) {
+-      perror ("vfork");
+-      _exit(2);
+-    }
+-    if (!child) {
+-      arg = getpid();
+-      write(-1, "", 0);
+-      _exit (arg);
+-    }
+-  }
+-}
+-
+-int
+-main ()
+-{
+-  pid_t parent = getpid ();
+-  pid_t child;
+-
+-  sparc_address_test (0);
+-
+-  child = vfork ();
+-
+-  if (child == 0) {
+-    /* Here is another test for sparc vfork register problems.  This
+-       test uses lots of local variables, at least as many local
+-       variables as main has allocated so far including compiler
+-       temporaries.  4 locals are enough for gcc 1.40.3 on a Solaris
+-       4.1.3 sparc, but we use 8 to be safe.  A buggy compiler should
+-       reuse the register of parent for one of the local variables,
+-       since it will think that parent can't possibly be used any more
+-       in this routine.  Assigning to the local variable will thus
+-       munge parent in the parent process.  */
+-    pid_t
+-      p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(),
+-      p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid();
+-    /* Convince the compiler that p..p7 are live; otherwise, it might
+-       use the same hardware register for all 8 local variables.  */
+-    if (p != p1 || p != p2 || p != p3 || p != p4
+-	|| p != p5 || p != p6 || p != p7)
+-      _exit(1);
+-
+-    /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent
+-       from child file descriptors.  If the child closes a descriptor
+-       before it execs or exits, this munges the parent's descriptor
+-       as well.  Test for this by closing stdout in the child.  */
+-    _exit(close(fileno(stdout)) != 0);
+-  } else {
+-    int status;
+-    struct stat st;
+-
+-    while (wait(&status) != child)
+-      ;
+-    exit(
+-	 /* Was there some problem with vforking?  */
+-	 child < 0
+-
+-	 /* Did the child fail?  (This shouldn't happen.)  */
+-	 || status
+-
+-	 /* Did the vfork/compiler bug occur?  */
+-	 || parent != getpid()
+-
+-	 /* Did the file descriptor bug occur?  */
+-	 || fstat(fileno(stdout), &st) != 0
+-	 );
+-  }
+-}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_func_vfork_works=yes
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_func_vfork_works=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_vfork_works" >&5
+-echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
+-
+-fi;
+-if test "x$ac_cv_func_fork_works" = xcross; then
+-  ac_cv_func_vfork_works=$ac_cv_func_vfork
+-  { echo "$as_me:$LINENO: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5
+-echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;}
+-fi
+-
+-if test "x$ac_cv_func_vfork_works" = xyes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_WORKING_VFORK 1
+-_ACEOF
+-
+-else
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define vfork fork
+-_ACEOF
+-
+-fi
+-if test "x$ac_cv_func_fork_works" = xyes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_WORKING_FORK 1
+-_ACEOF
+-
+-fi
+-
+-fi
+-echo "$as_me:$LINENO: checking for working memcmp" >&5
+-echo $ECHO_N "checking for working memcmp... $ECHO_C" >&6
+-if test "${ac_cv_func_memcmp_working+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test "$cross_compiling" = yes; then
+-  ac_cv_func_memcmp_working=no
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-int
+-main ()
+-{
+-
+-  /* Some versions of memcmp are not 8-bit clean.  */
+-  char c0 = 0x40, c1 = 0x80, c2 = 0x81;
+-  if (memcmp(&c0, &c2, 1) >= 0 || memcmp(&c1, &c2, 1) >= 0)
+-    exit (1);
+-
+-  /* The Next x86 OpenStep bug shows up only when comparing 16 bytes
+-     or more and with at least one buffer not starting on a 4-byte boundary.
+-     William Lewis provided this test program.   */
+-  {
+-    char foo[21];
+-    char bar[21];
+-    int i;
+-    for (i = 0; i < 4; i++)
+-      {
+-	char *a = foo + i;
+-	char *b = bar + i;
+-	strcpy (a, "--------01111111");
+-	strcpy (b, "--------10000000");
+-	if (memcmp (a, b, 16) >= 0)
+-	  exit (1);
+-      }
+-    exit (0);
+-  }
+-
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_func_memcmp_working=yes
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_func_memcmp_working=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5
+-echo "${ECHO_T}$ac_cv_func_memcmp_working" >&6
+-test $ac_cv_func_memcmp_working = no && case $LIBOBJS in
+-    "memcmp.$ac_objext"   | \
+-  *" memcmp.$ac_objext"   | \
+-    "memcmp.$ac_objext "* | \
+-  *" memcmp.$ac_objext "* ) ;;
+-  *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" ;;
+-esac
+-
+-
+-if test "x$DMC" != xyes ; then
+-
+-
+-for ac_header in stdlib.h unistd.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-
+-for ac_func in getpagesize
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-done
+-
+-echo "$as_me:$LINENO: checking for working mmap" >&5
+-echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
+-if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  if test "$cross_compiling" = yes; then
+-  ac_cv_func_mmap_fixed_mapped=no
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-/* malloc might have been renamed as rpl_malloc. */
+-#undef malloc
+-
+-/* Thanks to Mike Haertel and Jim Avera for this test.
+-   Here is a matrix of mmap possibilities:
+-	mmap private not fixed
+-	mmap private fixed at somewhere currently unmapped
+-	mmap private fixed at somewhere already mapped
+-	mmap shared not fixed
+-	mmap shared fixed at somewhere currently unmapped
+-	mmap shared fixed at somewhere already mapped
+-   For private mappings, we should verify that changes cannot be read()
+-   back from the file, nor mmap's back from the file at a different
+-   address.  (There have been systems where private was not correctly
+-   implemented like the infamous i386 svr4.0, and systems where the
+-   VM page cache was not coherent with the file system buffer cache
+-   like early versions of FreeBSD and possibly contemporary NetBSD.)
+-   For shared mappings, we should conversely verify that changes get
+-   propagated back to all the places they're supposed to be.
+-
+-   Grep wants private fixed already mapped.
+-   The main things grep needs to know about mmap are:
+-   * does it exist and is it safe to write into the mmap'd area
+-   * how to use it (BSD variants)  */
+-
+-#include <fcntl.h>
+-#include <sys/mman.h>
+-
+-#if !STDC_HEADERS && !HAVE_STDLIB_H
+-char *malloc ();
+-#endif
+-
+-/* This mess was copied from the GNU getpagesize.h.  */
+-#if !HAVE_GETPAGESIZE
+-/* Assume that all systems that can run configure have sys/param.h.  */
+-# if !HAVE_SYS_PARAM_H
+-#  define HAVE_SYS_PARAM_H 1
+-# endif
+-
+-# ifdef _SC_PAGESIZE
+-#  define getpagesize() sysconf(_SC_PAGESIZE)
+-# else /* no _SC_PAGESIZE */
+-#  if HAVE_SYS_PARAM_H
+-#   include <sys/param.h>
+-#   ifdef EXEC_PAGESIZE
+-#    define getpagesize() EXEC_PAGESIZE
+-#   else /* no EXEC_PAGESIZE */
+-#    ifdef NBPG
+-#     define getpagesize() NBPG * CLSIZE
+-#     ifndef CLSIZE
+-#      define CLSIZE 1
+-#     endif /* no CLSIZE */
+-#    else /* no NBPG */
+-#     ifdef NBPC
+-#      define getpagesize() NBPC
+-#     else /* no NBPC */
+-#      ifdef PAGESIZE
+-#       define getpagesize() PAGESIZE
+-#      endif /* PAGESIZE */
+-#     endif /* no NBPC */
+-#    endif /* no NBPG */
+-#   endif /* no EXEC_PAGESIZE */
+-#  else /* no HAVE_SYS_PARAM_H */
+-#   define getpagesize() 8192	/* punt totally */
+-#  endif /* no HAVE_SYS_PARAM_H */
+-# endif /* no _SC_PAGESIZE */
+-
+-#endif /* no HAVE_GETPAGESIZE */
+-
+-int
+-main ()
+-{
+-  char *data, *data2, *data3;
+-  int i, pagesize;
+-  int fd;
+-
+-  pagesize = getpagesize ();
+-
+-  /* First, make a file with some known garbage in it. */
+-  data = (char *) malloc (pagesize);
+-  if (!data)
+-    exit (1);
+-  for (i = 0; i < pagesize; ++i)
+-    *(data + i) = rand ();
+-  umask (0);
+-  fd = creat ("conftest.mmap", 0600);
+-  if (fd < 0)
+-    exit (1);
+-  if (write (fd, data, pagesize) != pagesize)
+-    exit (1);
+-  close (fd);
+-
+-  /* Next, try to mmap the file at a fixed address which already has
+-     something else allocated at it.  If we can, also make sure that
+-     we see the same garbage.  */
+-  fd = open ("conftest.mmap", O_RDWR);
+-  if (fd < 0)
+-    exit (1);
+-  data2 = (char *) malloc (2 * pagesize);
+-  if (!data2)
+-    exit (1);
+-  data2 += (pagesize - ((long) data2 & (pagesize - 1))) & (pagesize - 1);
+-  if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
+-		     MAP_PRIVATE | MAP_FIXED, fd, 0L))
+-    exit (1);
+-  for (i = 0; i < pagesize; ++i)
+-    if (*(data + i) != *(data2 + i))
+-      exit (1);
+-
+-  /* Finally, make sure that changes to the mapped area do not
+-     percolate back to the file as seen by read().  (This is a bug on
+-     some variants of i386 svr4.0.)  */
+-  for (i = 0; i < pagesize; ++i)
+-    *(data2 + i) = *(data2 + i) + 1;
+-  data3 = (char *) malloc (pagesize);
+-  if (!data3)
+-    exit (1);
+-  if (read (fd, data3, pagesize) != pagesize)
+-    exit (1);
+-  for (i = 0; i < pagesize; ++i)
+-    if (*(data + i) != *(data3 + i))
+-      exit (1);
+-  close (fd);
+-  exit (0);
+-}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_func_mmap_fixed_mapped=yes
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-ac_cv_func_mmap_fixed_mapped=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5
+-echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
+-if test $ac_cv_func_mmap_fixed_mapped = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_MMAP 1
+-_ACEOF
+-
+-fi
+-rm -f conftest.mmap
+-
+-fi
+-echo "$as_me:$LINENO: checking whether setvbuf arguments are reversed" >&5
+-echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6
+-if test "${ac_cv_func_setvbuf_reversed+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_func_setvbuf_reversed=no
+-   cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdio.h>
+-#	  if PROTOTYPES
+-	   int (setvbuf) (FILE *, int, char *, size_t);
+-#	  endif
+-int
+-main ()
+-{
+-char buf; return setvbuf (stdout, _IOLBF, &buf, 1);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdio.h>
+-#	     if PROTOTYPES
+-	      int (setvbuf) (FILE *, int, char *, size_t);
+-#	     endif
+-int
+-main ()
+-{
+-char buf; return setvbuf (stdout, &buf, _IOLBF, 1);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  # It compiles and links either way, so it must not be declared
+-	 # with a prototype and most likely this is a K&R C compiler.
+-	 # Try running it.
+-	 if test "$cross_compiling" = yes; then
+-  : # Assume setvbuf is not reversed when cross-compiling.
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <stdio.h>
+-int
+-main ()
+-{
+-/* This call has the arguments reversed.
+-		   A reversed system may check and see that the address of buf
+-		   is not _IOLBF, _IONBF, or _IOFBF, and return nonzero.  */
+-		char buf;
+-		if (setvbuf (stdout, _IOLBF, &buf, 1) != 0)
+-		  exit (1);
+-		putchar ('\r');
+-		exit (0); /* Non-reversed systems SEGV here.  */
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_func_setvbuf_reversed=yes
+-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 )
+-rm -f core *.core
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-	ac_cv_func_setvbuf_reversed=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_setvbuf_reversed" >&5
+-echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6
+-if test $ac_cv_func_setvbuf_reversed = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define SETVBUF_REVERSED 1
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking return type of signal handlers" >&5
+-echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
+-if test "${ac_cv_type_signal+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <sys/types.h>
+-#include <signal.h>
+-#ifdef signal
+-# undef signal
+-#endif
+-#ifdef __cplusplus
+-extern "C" void (*signal (int, void (*)(int)))(int);
+-#else
+-void (*signal ()) ();
+-#endif
+-
+-int
+-main ()
+-{
+-int i;
+-  ;
+-  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_type_signal=void
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_type_signal=int
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5
+-echo "${ECHO_T}$ac_cv_type_signal" >&6
+-
+-cat >>confdefs.h <<_ACEOF
+-#define RETSIGTYPE $ac_cv_type_signal
+-_ACEOF
+-
+-
+-if test "x$VCPP" != xyes && test "x$BORLANDC" != xyes && test "x$WATCOM_C" != "xyes" && test "x$POCC" != "xyes"; then
+-
+-for ac_func in vprintf
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-echo "$as_me:$LINENO: checking for _doprnt" >&5
+-echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6
+-if test "${ac_cv_func__doprnt+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 _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define _doprnt innocuous__doprnt
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char _doprnt (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef _doprnt
+-
+-/* 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 _doprnt ();
+-/* 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__doprnt) || defined (__stub____doprnt)
+-choke me
+-#else
+-char (*f) () = _doprnt;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != _doprnt;
+-  ;
+-  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__doprnt=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func__doprnt=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5
+-echo "${ECHO_T}$ac_cv_func__doprnt" >&6
+-if test $ac_cv_func__doprnt = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_DOPRNT 1
+-_ACEOF
+-
+-fi
+-
+-fi
+-done
+-
+-
+-fi
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-for ac_func in \
+-  alarm \
+-  dup2 \
+-  floor \
+-  getcwd \
+-  gethostbyname \
+-  getopt \
+-  getpid \
+-  gettimeofday \
+-  getwd \
+-  isatty \
+-  memchr \
+-  memmove \
+-  memset \
+-  mkstemp \
+-  modf \
+-  munmap \
+-  popen \
+-  pow \
+-  select \
+-  signal \
+-  socket \
+-  sleep \
+-  vsnprintf \
+-  snprintf \
+-  sqrt \
+-  strchr \
+-  strdup \
+-  strstr \
+-  strerror \
+-  strcasecmp \
+-  strncasecmp \
+-  strrchr \
+-  strstr \
+-  strtol \
+-  strlcat \
+-  strlcpy \
+-  usleep
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-done
+-
+-if test "x$VCPP" = xyes; then
+-  cat >>confdefs.h <<\_ACEOF
+-#define RETSIGTYPE int
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GETCWD 1
+-_ACEOF
+-
+-fi
+-if test "x$POCC" = xyes; then
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GETCWD 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GETHOSTBYNAME 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_POPEN 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SELECT 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SNPRINTF 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRDUP 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRERROR 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRCASECMP 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRSTR 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SOCKET 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_VSNPRINTF 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GETOPT 1
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define TIMID_VERSION $(PACKAGE_VERSION)
+-_ACEOF
+-
+-fi
+-if test "x$VCPP" = xyes || test "x$BORLANDC" = xyes || test "x$WATCOM_C" = xyes; then
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GETHOSTBYNAME 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_POPEN 1
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define popen _popen
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define pclose _pclose
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SELECT 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SNPRINTF 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRDUP 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRERROR 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRNCASECMP 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_STRSTR 1
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define snprintf _snprintf
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_SOCKET 1
+-_ACEOF
+-
+-  cat >>confdefs.h <<\_ACEOF
+-#define HAVE_VSNPRINTF 1
+-_ACEOF
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define TIMID_VERSION $(PACKAGE_VERSION)
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking for getopt_long" >&5
+-echo $ECHO_N "checking for getopt_long... $ECHO_C" >&6
+-if test "${ac_cv_func_getopt_long+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 getopt_long to an innocuous variant, in case <limits.h> declares getopt_long.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define getopt_long innocuous_getopt_long
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char getopt_long (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef getopt_long
+-
+-/* 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 getopt_long ();
+-/* 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_getopt_long) || defined (__stub___getopt_long)
+-choke me
+-#else
+-char (*f) () = getopt_long;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != getopt_long;
+-  ;
+-  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_getopt_long=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_getopt_long=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_getopt_long" >&5
+-echo "${ECHO_T}$ac_cv_func_getopt_long" >&6
+-if test $ac_cv_func_getopt_long = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GETOPT_LONG 1
+-_ACEOF
+-
+-	 tm_cv_needgetopt="no"
+-else
+-  tm_cv_needgetopt="yes"
+-fi
+-
+-
+-
+-if test "x$tm_cv_needgetopt" = "xyes"; then
+-  NEEDGETOPT_TRUE=
+-  NEEDGETOPT_FALSE='#'
+-else
+-  NEEDGETOPT_TRUE='#'
+-  NEEDGETOPT_FALSE=
+-fi
+-
+-
+-echo "$as_me:$LINENO: checking for open_memstream" >&5
+-echo $ECHO_N "checking for open_memstream... $ECHO_C" >&6
+-if test "${ac_cv_func_open_memstream+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 open_memstream to an innocuous variant, in case <limits.h> declares open_memstream.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define open_memstream innocuous_open_memstream
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char open_memstream (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef open_memstream
+-
+-/* 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 open_memstream ();
+-/* 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_open_memstream) || defined (__stub___open_memstream)
+-choke me
+-#else
+-char (*f) () = open_memstream;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != open_memstream;
+-  ;
+-  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_open_memstream=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_open_memstream=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_open_memstream" >&5
+-echo "${ECHO_T}$ac_cv_func_open_memstream" >&6
+-if test $ac_cv_func_open_memstream = yes; then
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_OPEN_MEMSTREAM 1
+-_ACEOF
+-
+-
+-fi
+-
+-
+-
+-echo "$as_me:$LINENO: checking for an implementation of va_copy()" >&5
+-echo $ECHO_N "checking for an implementation of va_copy()... $ECHO_C" >&6
+-if test "${lib_cv_va_copy+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-
+-	if test "$cross_compiling" = yes; then
+-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-	#include <stdarg.h>
+-	void f (int i, ...) {
+-	va_list args1, args2;
+-	va_start (args1, i);
+-	va_copy (args2, args1);
+-	if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
+-	  exit (1);
+-	va_end (args1); va_end (args2);
+-	}
+-	int main() {
+-	  f (0, 42);
+-	  return 0;
+-	}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  lib_cv_va_copy=yes
+-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 )
+-lib_cv_va_copy=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-
+-fi
+-echo "$as_me:$LINENO: result: $lib_cv_va_copy" >&5
+-echo "${ECHO_T}$lib_cv_va_copy" >&6
+-
+-echo "$as_me:$LINENO: checking for an implementation of __va_copy()" >&5
+-echo $ECHO_N "checking for an implementation of __va_copy()... $ECHO_C" >&6
+-if test "${lib_cv___va_copy+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-
+-	if test "$cross_compiling" = yes; then
+-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-	#include <stdarg.h>
+-	void f (int i, ...) {
+-	va_list args1, args2;
+-	va_start (args1, i);
+-	__va_copy (args2, args1);
+-	if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
+-	  exit (1);
+-	va_end (args1); va_end (args2);
+-	}
+-	int main() {
+-	  f (0, 42);
+-	  return 0;
+-	}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  lib_cv___va_copy=yes
+-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 )
+-lib_cv___va_copy=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-
+-fi
+-echo "$as_me:$LINENO: result: $lib_cv___va_copy" >&5
+-echo "${ECHO_T}$lib_cv___va_copy" >&6
+-
+-if test "x$lib_cv_va_copy" = "xyes"; then
+-  va_copy_func=va_copy
+-else if test "x$lib_cv___va_copy" = "xyes"; then
+-  va_copy_func=__va_copy
+-fi
+-fi
+-
+-if test -n "$va_copy_func"; then
+-
+-cat >>confdefs.h <<_ACEOF
+-#define VA_COPY $va_copy_func
+-_ACEOF
+-
+-fi
+-
+-echo "$as_me:$LINENO: checking whether va_lists can be copied by value" >&5
+-echo $ECHO_N "checking whether va_lists can be copied by value... $ECHO_C" >&6
+-if test "${lib_cv_va_val_copy+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-
+-	if test "$cross_compiling" = yes; then
+-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&5
+-echo "$as_me: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-	#include <stdarg.h>
+-	void f (int i, ...) {
+-	va_list args1, args2;
+-	va_start (args1, i);
+-	args2 = args1;
+-	if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
+-	  exit (1);
+-	va_end (args1); va_end (args2);
+-	}
+-	int main() {
+-	  f (0, 42);
+-	  return 0;
+-	}
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  lib_cv_va_val_copy=yes
+-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 )
+-lib_cv_va_val_copy=no
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+-fi
+-
+-fi
+-echo "$as_me:$LINENO: result: $lib_cv_va_val_copy" >&5
+-echo "${ECHO_T}$lib_cv_va_val_copy" >&6
+-
+-if test "x$lib_cv_va_val_copy" = "xno"; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define VA_COPY_AS_ARRAY 1
+-_ACEOF
+-
+-fi
+-
+-# Checks on cygnus and MSYS
+-if test "x$MSYS" = xyes ; then
+-  case "$ac_cv_header_dirent_dirent_h$ac_cv_header_dirent_sys_ndir_h$ac_cv_header_dirent_sys_dir_h$ac_cv_header_dirent_ndir_h" in
+-  *yes*)
+-    echo "$as_me:$LINENO: checking for opendir" >&5
+-echo $ECHO_N "checking for opendir... $ECHO_C" >&6
+-if test "${ac_cv_func_opendir+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 opendir to an innocuous variant, in case <limits.h> declares opendir.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define opendir innocuous_opendir
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char opendir (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef opendir
+-
+-/* 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 opendir ();
+-/* 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_opendir) || defined (__stub___opendir)
+-choke me
+-#else
+-char (*f) () = opendir;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != opendir;
+-  ;
+-  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_opendir=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_opendir=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_opendir" >&5
+-echo "${ECHO_T}$ac_cv_func_opendir" >&6
+-if test $ac_cv_func_opendir = yes; then
+-  :
+-else
+-   EXTRADEFS="$EXTRADEFS -D__W32READDIR__"
+-    W32READDIR=yes
+-fi
+-
+-    ;;
+-  *)EXTRADEFS="$EXTRADEFS -D__W32READDIR__"
+-    W32READDIR=yes
+-    ;;
+-  esac
+-  if test "x$VCPP" = xyes || test "x$BORLANDC" = xyes || test "x$WATCOM_C" = xyes || test "x$DMC" = xyes || test "x$POCC" = xyes; then
+-    EXTRALIBS="$EXTRALIBS  ws2_32.lib"
+-    EXTRADEFS="$EXTRADEFS -DWINSOCK"
+-  else
+-    echo "$as_me:$LINENO: checking for socket" >&5
+-echo $ECHO_N "checking for socket... $ECHO_C" >&6
+-if test "${ac_cv_func_socket+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 socket to an innocuous variant, in case <limits.h> declares socket.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define socket innocuous_socket
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char socket (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef socket
+-
+-/* 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 socket ();
+-/* 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_socket) || defined (__stub___socket)
+-choke me
+-#else
+-char (*f) () = socket;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != socket;
+-  ;
+-  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_socket=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_socket=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_socket" >&5
+-echo "${ECHO_T}$ac_cv_func_socket" >&6
+-if test $ac_cv_func_socket = yes; then
+-  :
+-else
+-  echo "$as_me:$LINENO: checking for WSAStartup in -lws2_32" >&5
+-echo $ECHO_N "checking for WSAStartup in -lws2_32... $ECHO_C" >&6
+-ac_lib_var=`echo ws2_32'_'WSAStartup | sed 'y%./+-%__p_%'`
+-if eval "test \"\${wapi_cv_lib_$ac_lib_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_save_LIBS="$LIBS"
+-LIBS="-lws2_32  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <windows.h>
+-#include <winsock.h>
+-
+-int
+-main ()
+-{
+-WSAStartup(0,0);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "wapi_cv_lib_$ac_lib_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "wapi_cv_lib_$ac_lib_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS="$ac_save_LIBS"
+-
+-fi
+-if eval "test \"`echo '$wapi_cv_lib_'$ac_lib_var`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-   EXTRALIBS="$EXTRALIBS -lws2_32"
+-        EXTRADEFS="$EXTRADEFS -DWINSOCK"
+-
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-
+-fi
+-
+-  fi
+-fi
+-
+-# Checks on extra paths
+-
+-
+-# Check whether --with-tcl-includes or --without-tcl-includes was given.
+-if test "${with_tcl_includes+set}" = set; then
+-  withval="$with_tcl_includes"
+-   if test ! -d $withval; then
+-      { echo "$as_me:$LINENO: WARNING: $withval is not found." >&5
+-echo "$as_me: WARNING: $withval is not found." >&2;}
+-    fi
+-    tcl_include_dir="-I$withval"
+-
+-fi;
+-
+-# Check whether --with-tcl-libs or --without-tcl-libs was given.
+-if test "${with_tcl_libs+set}" = set; then
+-  withval="$with_tcl_libs"
+-   if test ! -d $withval; then
+-      { echo "$as_me:$LINENO: WARNING: $withval is not found." >&5
+-echo "$as_me: WARNING: $withval is not found." >&2;}
+-    fi
+-    tcl_libdir="-L$withval"
+-fi;
+-
+-# Check whether --with-tk-includes or --without-tk-includes was given.
+-if test "${with_tk_includes+set}" = set; then
+-  withval="$with_tk_includes"
+-   if test ! -d $withval; then
+-      { echo "$as_me:$LINENO: WARNING: $withval is not found." >&5
+-echo "$as_me: WARNING: $withval is not found." >&2;}
+-    fi
+-    tk_includes="-I$withval"
+-fi;
+-
+-# Check whether --with-tk-libs or --without-tk-libs was given.
+-if test "${with_tk_libs+set}" = set; then
+-  withval="$with_tk_libs"
+-   if test ! -d $withval; then
+-      { echo "$as_me:$LINENO: WARNING: $withval is not found." >&5
+-echo "$as_me: WARNING: $withval is not found." >&2;}
+-    fi
+-    tk_libdir="-L$withval"
+-fi;
+-
+-
+-# Check whether --with-offix-includes or --without-offix-includes was given.
+-if test "${with_offix_includes+set}" = set; then
+-  withval="$with_offix_includes"
+-   if test ! -d $withval; then
+-      { echo "$as_me:$LINENO: WARNING: $withval is not found." >&5
+-echo "$as_me: WARNING: $withval is not found." >&2;}
+-    fi
+-    offix_include_dir="-I$withval"
+-fi;
+-
+-# Check whether --with-offix-libs or --without-offix-libs was given.
+-if test "${with_offix_libs+set}" = set; then
+-  withval="$with_offix_libs"
+-   if test ! -d $withval; then
+-      { echo "$as_me:$LINENO: WARNING: $withval is not found." >&5
+-echo "$as_me: WARNING: $withval is not found." >&2;}
+-    fi
+-    offix_lib_dir="-L$withval"
+-fi;
+-
+-
+-#
+-# audio section
+-#
+-
+-audio_targets='default oss alsa sun hpux irix mme sb_dsp w32 alib nas arts esd vorbis flac gogo portaudio npipe jack ao'
+-
+-
+-# Check whether --with-nas-library or --without-nas-library was given.
+-if test "${with_nas_library+set}" = set; then
+-  withval="$with_nas_library"
+-
+-fi;
+-
+-# Check whether --with-nas-includes or --without-nas-includes was given.
+-if test "${with_nas_includes+set}" = set; then
+-  withval="$with_nas_includes"
+-
+-fi;
+-
+-
+-# Check whether --enable-audio or --disable-audio was given.
+-if test "${enable_audio+set}" = set; then
+-  enableval="$enable_audio"
+-   enable_audio=$enableval
+-    have_audio_opt=yes
+-else
+-   enable_audio=yes
+-    have_audio_opt=no
+-fi;
+-
+-test "x$enable_audio" = xyes && enable_audio=default
+-
+-if test "x$enable_audio" != xno; then
+-  for i in `echo $enable_audio | sed 's/,/ /g'`; do
+-    eval "au_enable_$i=yes"
+-  done
+-fi
+-
+-DEFAULT_PLAYMODE=
+-
+-# Check whether --with-default-output or --without-default-output was given.
+-if test "${with_default_output+set}" = set; then
+-  withval="$with_default_output"
+-   if test "$enable_audio" != no; then
+-    DEFAULT_PLAYMODE=$withval
+-    eval "au_enable_$DEFAULT_PLAYMODE=yes"
+-  else
+-    { echo "$as_me:$LINENO: WARNING: --with-default-output=$withval: audio is not enabled" >&5
+-echo "$as_me: WARNING: --with-default-output=$withval: audio is not enabled" >&2;}
+-  fi
+-fi;
+-
+-
+-if test "x$au_enable_default" = xyes; then
+-  case "$target" in
+-  *-*-linux*|*-*-freebsd*)
+-    au_enable_oss=yes
+-    ;;
+-  *-*-bsdi2.0)
+-    au_enable_sb_dsp=yes
+-    ;;
+-  *-*-bsdi2.1|*-*-bsdi3.?|*-*-bsdi4.?)
+-    au_enable_oss=yes
+-    ;;
+-  *-*-hpux*)
+-    au_enable_hpux=yes
+-    ;;
+-  *-dec-*)
+-    au_enable_mme=yes
+-    ;;
+-  *irix*)
+-    au_enable_irix=yes
+-    ;;
+-  *-*-sunos4*)
+-    au_enable_sun=yes
+-    ;;
+-  *-*-solaris*)
+-    au_enable_sun=yes
+-    ;;
+-  *-*-netbsd*)
+-    au_enable_sun=yes
+-    ;;
+-  *-*-openbsd*)
+-    au_enable_sun=yes
+-    ;;
+-  *-*-cygwin*)
+-    au_enable_w32=yes
+-    ;;
+-  *-*-mingw*)
+-    au_enable_w32=yes
+-    ;;
+-  *-*-darwin*)
+-    au_enable_darwin=yes
+-    ;;
+-  *)
+-    { echo "$as_me:$LINENO: WARNING: No --enable-audio=default audio for $target" >&5
+-echo "$as_me: WARNING: No --enable-audio=default audio for $target" >&2;}
+-    ;;
+-  esac
+-fi
+-
+-
+-# Each audio mode's configurations
+-echo "$as_me:$LINENO: checking enable_audio=oss" >&5
+-echo $ECHO_N "checking enable_audio=oss... $ECHO_C" >&6
+-if test "x$au_enable_oss" = xyes; then
+-  EXTRADEFS="$EXTRADEFS -DAU_OSS"
+-  SYSEXTRAS="$SYSEXTRAS oss_a.c"
+-  if test "x$ac_cv_header_sys_soundcard_h" = xyes; then
+-    echo "$as_me:$LINENO: result: yes - <sys/soundcard.h>" >&5
+-echo "${ECHO_T}yes - <sys/soundcard.h>" >&6
+-  else
+-    case "$target" in
+-      *linux*|*freebsd*)
+-                echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-        ;;
+-      *)
+-        if test "x$ac_cv_header_soundcard_h" = xyes; then
+-          echo "$as_me:$LINENO: result: yes - <soundcard.h>" >&5
+-echo "${ECHO_T}yes - <soundcard.h>" >&6
+-        else
+-          { echo "$as_me:$LINENO: WARNING: <sys/soundcard.h> is not found" >&5
+-echo "$as_me: WARNING: <sys/soundcard.h> is not found" >&2;}
+-        fi
+-	;;
+-    esac
+-  fi
+-
+-echo "$as_me:$LINENO: checking for open in -lossaudio" >&5
+-echo $ECHO_N "checking for open in -lossaudio... $ECHO_C" >&6
+-if test "${ac_cv_lib_ossaudio_open+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lossaudio  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char open ();
+-int
+-main ()
+-{
+-open ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_ossaudio_open=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_ossaudio_open=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_ossaudio_open" >&5
+-echo "${ECHO_T}$ac_cv_lib_ossaudio_open" >&6
+-if test $ac_cv_lib_ossaudio_open = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBOSSAUDIO 1
+-_ACEOF
+-
+-  LIBS="-lossaudio $LIBS"
+-
+-fi
+-
+-
+-    case "$target" in
+-    *openbsd*)
+-      if test ! -e "/dev/dsp"; then
+-        oss_device=/dev/audio
+-      fi
+-      ;;
+-  esac
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=sun" >&5
+-echo $ECHO_N "checking enable_audio=sun... $ECHO_C" >&6
+-if test "x$au_enable_sun" = xyes; then
+-  case "$target" in
+-    *-*-sunos4*)
+-      if test -f /usr/demo/SOUND/libaudio.a; then
+-        EXTRALIBS="$EXTRALIBS /usr/demo/SOUND/libaudio.a"
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-      else
+-	echo "$as_me:$LINENO: result: Notice: libaudio.a is not found (ignore)" >&5
+-echo "${ECHO_T}Notice: libaudio.a is not found (ignore)" >&6
+-      fi
+-      ;;
+-    *-*-solaris*)
+-      if test -f /usr/demo/SOUND/lib/libaudio.a; then
+-        EXTRALIBS="$EXTRALIBS /usr/demo/SOUND/lib/libaudio.a"
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-      else
+-        echo "$as_me:$LINENO: result: Notice: libaudio.a is not found (ignore)" >&5
+-echo "${ECHO_T}Notice: libaudio.a is not found (ignore)" >&6
+-      fi
+-      ;;
+-    *)   echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-      ;;
+-  esac
+-  EXTRADEFS="$EXTRADEFS -DAU_SUN"
+-  SYSEXTRAS="$SYSEXTRAS sun_a.c"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=hpux" >&5
+-echo $ECHO_N "checking enable_audio=hpux... $ECHO_C" >&6
+-if test "x$au_enable_hpux" = xyes; then
+-  case "$target" in
+-    *-*-hpux*) echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6 ;;
+-    *) { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;} ;;
+-  esac
+-  EXTRADEFS="$EXTRADEFS -DAU_HPUX_AUDIO"
+-  SYSEXTRAS="$SYSEXTRAS hpux_d_a.c"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=irix" >&5
+-echo $ECHO_N "checking enable_audio=irix... $ECHO_C" >&6
+-if test "x$au_enable_irix" = xyes; then
+-  case "$target" in
+-    *-sgi-irix5*|*-sgi-irix6.2)
+-      EXTRADEFS="$EXTRADEFS -DAU_AUDRIV -DSGI_OLDAL"
+-      echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-      ;;
+-    *-sgi-irix6*)
+-      EXTRADEFS="$EXTRADEFS -DAU_AUDRIV -DSGI_NEWAL"
+-      echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-      ;;
+-    *) { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;} ;;
+-  esac
+-  SYSEXTRAS="$SYSEXTRAS audriv_a.c audriv_al.c"
+-  EXTRALIBS="$EXTRASLIBS -laudio"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=mme" >&5
+-echo $ECHO_N "checking enable_audio=mme... $ECHO_C" >&6
+-if test "x$au_enable_mme" = xyes; then
+-  case "$target" in
+-    *-dec-*) echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6 ;;
+-    *) { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;} ;;
+-  esac
+-  EXTRADEFS="$EXTRADEFS -DAU_DEC -DAU_AUDRIV"
+-  SYSEXTRAS="$SYSEXTRAS audriv_a.c audriv_mme.c"
+-  CPPFLAGS="$CPPFLAGS -I/usr/opt/MME210/include"
+-  EXTRALIBS="$EXTRALIBS /usr/opt/MME220/lib/libmme.a"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=sb_dsp" >&5
+-echo $ECHO_N "checking enable_audio=sb_dsp... $ECHO_C" >&6
+-if test "x$au_enable_sb_dsp" = xyes; then
+-  case "$target" in
+-    *-*-bsdi2.0) echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6 ;;
+-    *) { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;} ;;
+-  esac
+-  EXTRADEFS="$EXTRADEFS -DAU_BSDI -DDEFAULT_RATE=22500"
+-  SYSEXTRAS="$SYSEXTRAS bsd20_a.c"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=w32" >&5
+-echo $ECHO_N "checking enable_audio=w32... $ECHO_C" >&6
+-if test "x$au_enable_w32" = xyes; then
+-  case "$target" in
+-    *-*-cygwin*)
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-     ;;
+-    *-*-mingw32)
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-     ;;
+-    *)
+-     { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;}
+-     ;;
+-  esac
+-  SYSEXTRAS="$SYSEXTRAS w32_a.c"
+-  if test "x$VCPP" = xyes || test "x$BORLANDC" = xyes || test "x$WATCOM_C" = xyes || test "x$DMC" = xyes || test "x$POCC" = xyes; then
+-  	EXTRALIBS="$EXTRALIBS winmm.lib"
+-  else
+-    EXTRALIBS="$EXTRALIBS -lwinmm"
+-  fi
+-  EXTRADEFS="$EXTRADEFS -DAU_W32"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=darwin" >&5
+-echo $ECHO_N "checking enable_audio=darwin... $ECHO_C" >&6
+-if test "x$au_enable_darwin" = xyes; then
+-  EXTRADEFS="$EXTRADEFS -DAU_DARWIN"
+-  SYSEXTRAS="$SYSEXTRAS darwin_a.c"
+-  EXTRALIBS="$EXTRALIBS -framework CoreAudio"
+-    case "$target" in
+-    *-*-darwin*)
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6;;
+-   *)
+-     { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;}
+-     ;;
+-  esac
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-
+-echo "$as_me:$LINENO: checking enable_audio=alsa" >&5
+-echo $ECHO_N "checking enable_audio=alsa... $ECHO_C" >&6
+-if test "x$au_enable_alsa" = xyes; then
+-  echo "$as_me:$LINENO: result: yes, configuring alsa" >&5
+-echo "${ECHO_T}yes, configuring alsa" >&6
+-  KEEPCFLAGS=$CFLAGS
+-  KEEPLIBS=$LIBS
+-  KEEPLDFLAGS=$LDFLAGS
+-  alsa_save_CFLAGS="$CFLAGS"
+-alsa_save_LDFLAGS="$LDFLAGS"
+-alsa_save_LIBS="$LIBS"
+-alsa_found=yes
+-
+-
+-# Check whether --with-alsa-prefix or --without-alsa-prefix was given.
+-if test "${with_alsa_prefix+set}" = set; then
+-  withval="$with_alsa_prefix"
+-  alsa_prefix="$withval"
+-else
+-  alsa_prefix=""
+-fi;
+-
+-
+-# Check whether --with-alsa-inc-prefix or --without-alsa-inc-prefix was given.
+-if test "${with_alsa_inc_prefix+set}" = set; then
+-  withval="$with_alsa_inc_prefix"
+-  alsa_inc_prefix="$withval"
+-else
+-  alsa_inc_prefix=""
+-fi;
+-
+-# Check whether --enable-alsatest or --disable-alsatest was given.
+-if test "${enable_alsatest+set}" = set; then
+-  enableval="$enable_alsatest"
+-  enable_alsatest=no
+-else
+-  enable_alsatest=yes
+-fi;
+-
+-echo "$as_me:$LINENO: checking for ALSA CFLAGS" >&5
+-echo $ECHO_N "checking for ALSA CFLAGS... $ECHO_C" >&6
+-if test "$alsa_inc_prefix" != "" ; then
+-	ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix"
+-	CFLAGS="$CFLAGS -I$alsa_inc_prefix"
+-fi
+-echo "$as_me:$LINENO: result: $ALSA_CFLAGS" >&5
+-echo "${ECHO_T}$ALSA_CFLAGS" >&6
+-
+-echo "$as_me:$LINENO: checking for ALSA LDFLAGS" >&5
+-echo $ECHO_N "checking for ALSA LDFLAGS... $ECHO_C" >&6
+-if test "$alsa_prefix" != "" ; then
+-	ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix"
+-	LDFLAGS="$LDFLAGS $ALSA_LIBS"
+-fi
+-
+-ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread"
+-LIBS=`echo $LIBS | sed 's/-lm//'`
+-LIBS=`echo $LIBS | sed 's/-ldl//'`
+-LIBS=`echo $LIBS | sed 's/-lpthread//'`
+-LIBS=`echo $LIBS | sed 's/  //'`
+-LIBS="$ALSA_LIBS $LIBS"
+-echo "$as_me:$LINENO: result: $ALSA_LIBS" >&5
+-echo "${ECHO_T}$ALSA_LIBS" >&6
+-
+-min_alsa_version=0.1.1
+-echo "$as_me:$LINENO: checking for libasound headers version >= $min_alsa_version" >&5
+-echo $ECHO_N "checking for libasound headers version >= $min_alsa_version... $ECHO_C" >&6
+-no_alsa=""
+-    alsa_min_major_version=`echo $min_alsa_version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`
+-    alsa_min_minor_version=`echo $min_alsa_version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'`
+-    alsa_min_micro_version=`echo $min_alsa_version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'`
+-
+-
+-
+-
+-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
+-
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <alsa/asoundlib.h>
+-
+-int
+-main ()
+-{
+-
+-/* ensure backward compatibility */
+-#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
+-#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
+-#endif
+-#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
+-#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
+-#endif
+-#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
+-#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
+-#endif
+-
+-#  if(SND_LIB_MAJOR > $alsa_min_major_version)
+-  exit(0);
+-#  else
+-#    if(SND_LIB_MAJOR < $alsa_min_major_version)
+-#       error not present
+-#    endif
+-
+-#   if(SND_LIB_MINOR > $alsa_min_minor_version)
+-  exit(0);
+-#   else
+-#     if(SND_LIB_MINOR < $alsa_min_minor_version)
+-#          error not present
+-#      endif
+-
+-#      if(SND_LIB_SUBMINOR < $alsa_min_micro_version)
+-#        error not present
+-#      endif
+-#    endif
+-#  endif
+-exit(0);
+-
+-  ;
+-  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
+-  echo "$as_me:$LINENO: result: found." >&5
+-echo "${ECHO_T}found." >&6
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <sys/asoundlib.h>
+-
+-int
+-main ()
+-{
+-
+-/* ensure backward compatibility */
+-#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
+-#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
+-#endif
+-#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
+-#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
+-#endif
+-#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
+-#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
+-#endif
+-
+-#  if(SND_LIB_MAJOR > $alsa_min_major_version)
+-  exit(0);
+-#  else
+-#    if(SND_LIB_MAJOR < $alsa_min_major_version)
+-#       error not present
+-#    endif
+-
+-#   if(SND_LIB_MINOR > $alsa_min_minor_version)
+-  exit(0);
+-#   else
+-#     if(SND_LIB_MINOR < $alsa_min_minor_version)
+-#          error not present
+-#      endif
+-
+-#      if(SND_LIB_SUBMINOR < $alsa_min_micro_version)
+-#        error not present
+-#      endif
+-#    endif
+-#  endif
+-exit(0);
+-
+-  ;
+-  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
+-  echo "$as_me:$LINENO: result: found." >&5
+-echo "${ECHO_T}found." >&6
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-echo "$as_me:$LINENO: result: not present." >&5
+-echo "${ECHO_T}not present." >&6
+-   echo "$as_me:$LINENO: result: libasound was not found anywhere." >&5
+-echo "${ECHO_T}libasound was not found anywhere." >&6
+-   alsa_found=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-   echo "$as_me:$LINENO: result: Sufficiently new version of libasound not found." >&5
+-echo "${ECHO_T}Sufficiently new version of libasound not found." >&6
+-
+-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
+-
+-
+-
+-echo "$as_me:$LINENO: checking for snd_ctl_open in -lasound" >&5
+-echo $ECHO_N "checking for snd_ctl_open in -lasound... $ECHO_C" >&6
+-if test "${ac_cv_lib_asound_snd_ctl_open+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lasound  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char snd_ctl_open ();
+-int
+-main ()
+-{
+-snd_ctl_open ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_asound_snd_ctl_open=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_asound_snd_ctl_open=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_asound_snd_ctl_open" >&5
+-echo "${ECHO_T}$ac_cv_lib_asound_snd_ctl_open" >&6
+-if test $ac_cv_lib_asound_snd_ctl_open = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBASOUND 1
+-_ACEOF
+-
+-  LIBS="-lasound $LIBS"
+-
+-else
+-  echo "$as_me:$LINENO: result: No linkable libasound was found." >&5
+-echo "${ECHO_T}No linkable libasound was found." >&6
+-   alsa_found=no
+-
+-fi
+-
+-
+-if test "x$alsa_found" = "xyes" ; then
+-   :
+-   LIBS=`echo $LIBS | sed 's/-lasound//g'`
+-   LIBS=`echo $LIBS | sed 's/  //'`
+-   LIBS="-lasound $LIBS"
+-else
+-   :
+-   CFLAGS="$alsa_save_CFLAGS"
+-   LDFLAGS="$alsa_save_LDFLAGS"
+-   LIBS="$alsa_save_LIBS"
+-   ALSA_CFLAGS=""
+-   ALSA_LIBS=""
+-fi
+-
+-
+-
+-
+-  if test "x$alsa_found" = "xyes" ; then
+-        EXTRADEFS="$EXTRADEFS -DAU_ALSA"
+-    SYSEXTRAS="$SYSEXTRAS alsa_a.c"
+-    for f in $ALSA_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-    LIBS="$LIBS $ALSA_LIBS"
+-
+-for ac_func in snd_seq_port_info_set_timestamping
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-done
+-
+-  else
+-    { echo "$as_me:$LINENO: WARNING: Couldn't configure alsa." >&5
+-echo "$as_me: WARNING: Couldn't configure alsa." >&2;}
+-    CFLAGS=$KEEPCFLAGS
+-    LIBS=$KEEPLIBS
+-    LDFLAGS=$KEEPLDFLAGS
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=alib" >&5
+-echo $ECHO_N "checking enable_audio=alib... $ECHO_C" >&6
+-if test "x$au_enable_alib" = xyes; then
+-  case "$target" in
+-    *-*-hpux*) echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6 ;;
+-    *) { echo "$as_me:$LINENO: WARNING: may not work on $target" >&5
+-echo "$as_me: WARNING: may not work on $target" >&2;} ;;
+-  esac
+-  SYSEXTRAS="$SYSEXTRAS hpux_a.c"
+-  EXTRADEFS="$EXTRADEFS -DAU_HPUX_ALIB"
+-  if test -d /opt/audio/include; then
+-    CPPFLAGS="$CPPFLAGS -I/opt/audio/include"
+-  fi
+-  if test -d /opt/audio/lib; then
+-    EXTRALIBS="$EXTRALIBS -L/opt/audio/lib"
+-  fi
+-  EXTRALIBS="$EXTRALIBS -lAlib"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=nas" >&5
+-echo $ECHO_N "checking enable_audio=nas... $ECHO_C" >&6
+-if test "x$au_enable_nas" = xyes; then
+-  if test "x$with_x" != xyes; then
+-    { { echo "$as_me:$LINENO: error: nas: --with-x option must be specified" >&5
+-echo "$as_me: error: nas: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-  fi
+-  EXTRADEFS="$EXTRADEFS -DAU_NAS"
+-  SYSEXTRAS="$SYSEXTRAS nas_a.c"
+-
+-
+-  if test "x$with_nas_library" != x; then
+-    echo "$as_me:$LINENO: result: $with_nas_library" >&5
+-echo "${ECHO_T}$with_nas_library" >&6;
+-    EXTRALIBS="$EXTRALIBS $with_nas_library"
+-  else
+-    echo "$as_me:$LINENO: result: " >&5
+-echo "${ECHO_T}" >&6
+-    echo "$as_me:$LINENO: checking for library containing AuOpenServer" >&5
+-echo $ECHO_N "checking for library containing AuOpenServer... $ECHO_C" >&6
+-if test "${timidity_cv_search_AuOpenServer+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_func_search_save_LIBS="$LIBS"
+-timidity_cv_search_AuOpenServer="no"
+-for i in $x_libraries/libaudio.a \
+-	 /usr/lib/libaudio.so \
+-	 /usr/lib/libaudio.a ; do
+-  LIBS="$i  $ac_func_search_save_LIBS"
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char AuOpenServer ();
+-int
+-main ()
+-{
+-AuOpenServer ();
+-  ;
+-  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
+-  timidity_cv_search_AuOpenServer="$i"; break
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-done
+-LIBS="$ac_func_search_save_LIBS"
+-fi
+-echo "$as_me:$LINENO: result: $timidity_cv_search_AuOpenServer" >&5
+-echo "${ECHO_T}$timidity_cv_search_AuOpenServer" >&6
+-if test "$timidity_cv_search_AuOpenServer" != "no"; then
+-   echo "$as_me:$LINENO: result: NAS: $timidity_cv_search_AuOpenServer" >&5
+-echo "${ECHO_T}NAS: $timidity_cv_search_AuOpenServer" >&6
+-	  EXTRALIBS="$EXTRALIBS $timidity_cv_search_AuOpenServer"
+-else :
+-  { echo "$as_me:$LINENO: WARNING: NAS library is not found." >&5
+-echo "$as_me: WARNING: NAS library is not found." >&2;}
+-fi
+-  fi
+-  test "x$with_nas_includes" != x && CPPFLAGS="$CPPFLAGS -I$with_nas_includes"
+-  lib_xt_opt=-lXt
+-  if test "x$have_xext" = xyes; then
+-    lib_xext_opt=-lXext
+-  fi
+-  if test "x$have_xprelibs" = xyes; then
+-    lib_xprelibs_opt='-lSM -lICE'
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=arts" >&5
+-echo $ECHO_N "checking enable_audio=arts... $ECHO_C" >&6
+-if test "x$au_enable_arts" = xyes; then
+-  echo "$as_me:$LINENO: result: yes, configuring aRts" >&5
+-echo "${ECHO_T}yes, configuring aRts" >&6
+-    # Extract the first word of "artsc-config", so it can be a program name with args.
+-set dummy artsc-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_ARTSCCONFIG+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  case $ARTSCCONFIG in
+-  [\\/]* | ?:[\\/]*)
+-  ac_cv_path_ARTSCCONFIG="$ARTSCCONFIG" # 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_ARTSCCONFIG="$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
+-
+-  ;;
+-esac
+-fi
+-ARTSCCONFIG=$ac_cv_path_ARTSCCONFIG
+-
+-if test -n "$ARTSCCONFIG"; then
+-  echo "$as_me:$LINENO: result: $ARTSCCONFIG" >&5
+-echo "${ECHO_T}$ARTSCCONFIG" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  if test x$ARTSCCONFIG != x -a x$ARTSCCONFIG != x'"$ARTSCCONFIG"';
+-  then
+-    ARTSC_CFLAGS=""
+-    for i in `$ARTSCCONFIG --cflags`
+-    do
+-      case "$i" in
+-        -I*) ARTSC_CFLAGS="$ARTSC_CFLAGS $i";;
+-      esac
+-    done
+-    ARTSC_LIBS=`$ARTSCCONFIG --libs`
+-    save_CFLAGS="$CFLAGS"
+-    CFLAGS="$CFLAGS $ARTSC_CFLAGS"
+-    cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <artsc.h>
+-int
+-main ()
+-{
+-arts_stream_t stream;
+-  ;
+-  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
+-  ARTSLIBS=$ARTSC_LIBS
+-
+-         ARTSINCL=$ARTSC_CFLAGS
+-
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_ARTS 1
+-_ACEOF
+-
+-	 have_arts="yes"
+-
+-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
+-    CFLAGS="$save_CFLAGS"
+-  fi
+-
+-  if test "$have_arts" = "yes"; then
+-        EXTRADEFS="$EXTRADEFS -DAU_ARTS"
+-    SYSEXTRAS="$SYSEXTRAS aRts_a.c"
+-    for f in $ARTSC_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-    LIBS="$LIBS $ARTSC_LIBS"
+-  else
+-    { echo "$as_me:$LINENO: WARNING: aRts: Couldn't configure" >&5
+-echo "$as_me: WARNING: aRts: Couldn't configure" >&2;}
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=esd" >&5
+-echo $ECHO_N "checking enable_audio=esd... $ECHO_C" >&6
+-if test "x$au_enable_esd" = xyes; then
+-  echo "$as_me:$LINENO: result: yes, configuring esd" >&5
+-echo "${ECHO_T}yes, configuring esd" >&6
+-  KEEPCFLAGS=$CFLAGS
+-  KEEPLIBS=$LIBS
+-  KEEPLDFLAGS=$LDFLAGS
+-
+-# Check whether --with-esd-prefix or --without-esd-prefix was given.
+-if test "${with_esd_prefix+set}" = set; then
+-  withval="$with_esd_prefix"
+-  esd_prefix="$withval"
+-else
+-  esd_prefix=""
+-fi;
+-
+-# Check whether --with-esd-exec-prefix or --without-esd-exec-prefix was given.
+-if test "${with_esd_exec_prefix+set}" = set; then
+-  withval="$with_esd_exec_prefix"
+-  esd_exec_prefix="$withval"
+-else
+-  esd_exec_prefix=""
+-fi;
+-# Check whether --enable-esdtest or --disable-esdtest was given.
+-if test "${enable_esdtest+set}" = set; then
+-  enableval="$enable_esdtest"
+-
+-else
+-  enable_esdtest=yes
+-fi;
+-
+-  if test x$esd_exec_prefix != x ; then
+-     esd_args="$esd_args --exec-prefix=$esd_exec_prefix"
+-     if test x${ESD_CONFIG+set} != xset ; then
+-        ESD_CONFIG=$esd_exec_prefix/bin/esd-config
+-     fi
+-  fi
+-  if test x$esd_prefix != x ; then
+-     esd_args="$esd_args --prefix=$esd_prefix"
+-     if test x${ESD_CONFIG+set} != xset ; then
+-        ESD_CONFIG=$esd_prefix/bin/esd-config
+-     fi
+-  fi
+-
+-  # Extract the first word of "esd-config", so it can be a program name with args.
+-set dummy esd-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_ESD_CONFIG+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  case $ESD_CONFIG in
+-  [\\/]* | ?:[\\/]*)
+-  ac_cv_path_ESD_CONFIG="$ESD_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_ESD_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_ESD_CONFIG" && ac_cv_path_ESD_CONFIG="no"
+-  ;;
+-esac
+-fi
+-ESD_CONFIG=$ac_cv_path_ESD_CONFIG
+-
+-if test -n "$ESD_CONFIG"; then
+-  echo "$as_me:$LINENO: result: $ESD_CONFIG" >&5
+-echo "${ECHO_T}$ESD_CONFIG" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  min_esd_version=0.2.7
+-  echo "$as_me:$LINENO: checking for ESD - version >= $min_esd_version" >&5
+-echo $ECHO_N "checking for ESD - version >= $min_esd_version... $ECHO_C" >&6
+-  no_esd=""
+-  if test "$ESD_CONFIG" = "no" ; then
+-    no_esd=yes
+-  else
+-
+-
+-    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
+-
+-    ESD_CFLAGS=`$ESD_CONFIG $esdconf_args --cflags`
+-    ESD_LIBS=`$ESD_CONFIG $esdconf_args --libs`
+-
+-    esd_major_version=`$ESD_CONFIG $esd_args --version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`
+-    esd_minor_version=`$ESD_CONFIG $esd_args --version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'`
+-    esd_micro_version=`$ESD_CONFIG $esd_config_args --version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'`
+-    if test "x$enable_esdtest" = "xyes" ; then
+-      ac_save_CFLAGS="$CFLAGS"
+-      ac_save_LIBS="$LIBS"
+-      CFLAGS="$CFLAGS $ESD_CFLAGS"
+-      LIBS="$LIBS $ESD_LIBS"
+-      rm -f conf.esdtest
+-      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 <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <esd.h>
+-
+-char*
+-my_strdup (char *str)
+-{
+-  char *new_str;
+-
+-  if (str)
+-    {
+-      new_str = malloc ((strlen (str) + 1) * sizeof(char));
+-      strcpy (new_str, str);
+-    }
+-  else
+-    new_str = NULL;
+-
+-  return new_str;
+-}
+-
+-int main ()
+-{
+-  int major, minor, micro;
+-  char *tmp_version;
+-
+-  system ("touch conf.esdtest");
+-
+-  /* HP/UX 9 (%@#!) writes to sscanf strings */
+-  tmp_version = my_strdup("$min_esd_version");
+-  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
+-     printf("%s, bad version string\n", "$min_esd_version");
+-     exit(1);
+-   }
+-
+-   if (($esd_major_version > major) ||
+-      (($esd_major_version == major) && ($esd_minor_version > minor)) ||
+-      (($esd_major_version == major) && ($esd_minor_version == minor) && ($esd_micro_version >= micro)))
+-    {
+-      return 0;
+-    }
+-  else
+-    {
+-      printf("\n*** 'esd-config --version' returned %d.%d.%d, but the minimum version\n", $esd_major_version, $esd_minor_version, $esd_micro_version);
+-      printf("*** of ESD required is %d.%d.%d. If esd-config is correct, then it is\n", major, minor, micro);
+-      printf("*** best to upgrade to the required version.\n");
+-      printf("*** If esd-config was wrong, set the environment variable ESD_CONFIG\n");
+-      printf("*** to point to the correct copy of esd-config, and remove the file\n");
+-      printf("*** config.cache before re-running configure\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_esd=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"
+-       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
+-
+-     fi
+-  fi
+-  if test "x$no_esd" = x ; then
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-     :
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test "$ESD_CONFIG" = "no" ; then
+-       echo "*** The esd-config script installed by ESD could not be found"
+-       echo "*** If ESD was installed in PREFIX, make sure PREFIX/bin is in"
+-       echo "*** your path, or set the ESD_CONFIG environment variable to the"
+-       echo "*** full path to esd-config."
+-     else
+-       if test -f conf.esdtest ; then
+-        :
+-       else
+-          echo "*** Could not run ESD test program, checking why..."
+-          CFLAGS="$CFLAGS $ESD_CFLAGS"
+-          LIBS="$LIBS $ESD_LIBS"
+-
+-
+-          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
+-
+-          cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <stdio.h>
+-#include <esd.h>
+-
+-int
+-main ()
+-{
+- return 0;
+-  ;
+-  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 ESD or finding the wrong"
+-          echo "*** version of ESD. If it is not finding ESD, 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 ESD was incorrectly installed"
+-          echo "*** or that you have moved ESD since it was installed. In the latter case, you"
+-          echo "*** may want to edit the esd-config script: $ESD_CONFIG"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-          CFLAGS="$ac_save_CFLAGS"
+-          LIBS="$ac_save_LIBS"
+-          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
+-
+-       fi
+-     fi
+-     ESD_CFLAGS=""
+-     ESD_LIBS=""
+-     :
+-  fi
+-
+-
+-  rm -f conf.esdtest
+-
+-  CFLAGS=$KEEPCFLAGS
+-  LIBS=$KEEPLIBS
+-  LDFLAGS=$KEEPLDFLAGS
+-  if test "x$no_esd" = x; then
+-        EXTRADEFS="$EXTRADEFS -DAU_ESD"
+-    SYSEXTRAS="$SYSEXTRAS esd_a.c"
+-    for f in $ESD_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-    LIBS="$LIBS $ESD_LIBS"
+-  else
+-    { echo "$as_me:$LINENO: WARNING: EsounD: Couldn't configure" >&5
+-echo "$as_me: WARNING: EsounD: Couldn't configure" >&2;}
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=portaudio" >&5
+-echo $ECHO_N "checking enable_audio=portaudio... $ECHO_C" >&6
+-if test "x$au_enable_portaudio" = xyes; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-  if test "x$MSYS" = xyes ; then
+-	SYSEXTRAS="$SYSEXTRAS portaudio_a.c w32_portaudio_dll.c"
+-  	EXTRALIBS="$EXTRALIBS -lportaudio"
+-  	EXTRADEFS="$EXTRADEFS -DAU_PORTAUDIO -DAU_PORTAUDIO_DLL"
+-  else
+-  	SYSEXTRAS="$SYSEXTRAS portaudio_a.c"
+-  	EXTRALIBS="$EXTRALIBS -lportaudio"
+-  	EXTRADEFS="$EXTRADEFS -DAU_PORTAUDIO"
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=npipe" >&5
+-echo $ECHO_N "checking enable_audio=npipe... $ECHO_C" >&6
+-if test "x$au_enable_npipe" = xyes; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-  	SYSEXTRAS="$SYSEXTRAS npipe_a.c"
+-  	EXTRADEFS="$EXTRADEFS -DAU_NPIPE"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-
+-echo "$as_me:$LINENO: checking enable_audio=jack" >&5
+-echo $ECHO_N "checking enable_audio=jack... $ECHO_C" >&6
+-if test "x$au_enable_jack" = xyes; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-  SYSEXTRAS="$SYSEXTRAS jack_a.c"
+-  EXTRALIBS="$EXTRALIBS $(pkg-config --libs jack)"
+-  EXTRADEFS="$EXTRADEFS -DAU_JACK $(pkg-config --cflags jack)"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=ao" >&5
+-echo $ECHO_N "checking enable_audio=ao... $ECHO_C" >&6
+-if test "x$au_enable_ao" = xyes; then
+-  echo "$as_me:$LINENO: result: yes, configuring ao" >&5
+-echo "${ECHO_T}yes, configuring ao" >&6
+-
+-# Check whether --with-ao or --without-ao was given.
+-if test "${with_ao+set}" = set; then
+-  withval="$with_ao"
+-  ao_prefix="$withval"
+-else
+-  ao_prefix=""
+-fi;
+-
+-# Check whether --with-ao-libraries or --without-ao-libraries was given.
+-if test "${with_ao_libraries+set}" = set; then
+-  withval="$with_ao_libraries"
+-  ao_libraries="$withval"
+-else
+-  ao_libraries=""
+-fi;
+-
+-# Check whether --with-ao-includes or --without-ao-includes was given.
+-if test "${with_ao_includes+set}" = set; then
+-  withval="$with_ao_includes"
+-  ao_includes="$withval"
+-else
+-  ao_includes=""
+-fi;
+-# Check whether --enable-aotest or --disable-aotest was given.
+-if test "${enable_aotest+set}" = set; then
+-  enableval="$enable_aotest"
+-
+-else
+-  enable_aotest=yes
+-fi;
+-
+-
+-  if test "x$ao_libraries" != "x" ; then
+-    AO_LIBS="-L$ao_libraries"
+-  elif test "x$ao_prefix" != "x"; then
+-    AO_LIBS="-L$ao_prefix/lib"
+-  elif test "x$prefix" != "xNONE"; then
+-    AO_LIBS="-L$prefix/lib"
+-  fi
+-
+-  if test "x$ao_includes" != "x" ; then
+-    AO_CFLAGS="-I$ao_includes"
+-  elif test "x$ao_prefix" != "x"; then
+-    AO_CFLAGS="-I$ao_prefix/include"
+-  elif test "x$prefix" != "xNONE"; then
+-    AO_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  # see where dl* and friends live
+-
+-for ac_func in dlopen
+-do
+-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ac_func" >&5
+-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_var+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define $ac_func innocuous_$ac_func
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char $ac_func (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef $ac_func
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-{
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char $ac_func ();
+-/* The GNU C library defines this for functions which it implements
+-    to always fail with ENOSYS.  Some functions are actually named
+-    something starting with __ and the normal name is an alias.  */
+-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+-choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != $ac_func;
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_var=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_var=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+-if test `eval echo '${'$as_ac_var'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+-_ACEOF
+- AO_DL_LIBS=""
+-else
+-
+-    echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
+-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
+-if test "${ac_cv_lib_dl_dlopen+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ldl  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char dlopen ();
+-int
+-main ()
+-{
+-dlopen ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_dl_dlopen=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_dl_dlopen=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
+-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
+-if test $ac_cv_lib_dl_dlopen = yes; then
+-  AO_DL_LIBS="-ldl"
+-else
+-
+-      { echo "$as_me:$LINENO: WARNING: could not find dlopen() needed by libao sound drivers
+-      your system may not be supported." >&5
+-echo "$as_me: WARNING: could not find dlopen() needed by libao sound drivers
+-      your system may not be supported." >&2;}
+-
+-fi
+-
+-
+-fi
+-done
+-
+-
+-  AO_LIBS="$AO_LIBS -lao $AO_DL_LIBS"
+-
+-  echo "$as_me:$LINENO: checking for ao" >&5
+-echo $ECHO_N "checking for ao... $ECHO_C" >&6
+-  no_ao=""
+-
+-
+-  if test "x$enable_aotest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $AO_CFLAGS"
+-    LIBS="$LIBS $AO_LIBS"
+-      rm -f conf.aotest
+-      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 <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <ao/ao.h>
+-
+-int main ()
+-{
+-  system("touch conf.aotest");
+-  return 0;
+-}
+-
+-
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-no_ao=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
+-
+-  if test "x$no_ao" = "x" ; then
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-     :
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test -f conf.aotest ; then
+-       :
+-     else
+-       echo "*** Could not run ao test program, checking why..."
+-       CFLAGS="$CFLAGS $AO_CFLAGS"
+-       LIBS="$LIBS $AO_LIBS"
+-       cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <stdio.h>
+-#include <ao/ao.h>
+-
+-int
+-main ()
+-{
+- return 0;
+-  ;
+-  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 ao or finding the wrong"
+-       echo "*** version of ao. If it is not finding ao, 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 ao was incorrectly installed"
+-       echo "*** or that you have moved ao since it was installed."
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     AO_CFLAGS=""
+-     AO_LIBS=""
+-     :
+-  fi
+-
+-
+-  rm -f conf.aotest
+-
+-  if test "x$no_ao" = "x" ; then
+-    # AC_MSG_RESULT(yes)
+-    EXTRADEFS="$EXTRADEFS -DAU_AO"
+-    SYSEXTRAS="$SYSEXTRAS ao_a.c"
+-    for f in $AO_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-    LIBS="$LIBS $AO_LIBS"
+-  else
+-    { echo "$as_me:$LINENO: WARNING: Couldn't configure libao." >&5
+-echo "$as_me: WARNING: Couldn't configure libao." >&2;}
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=vorbis" >&5
+-echo $ECHO_N "checking enable_audio=vorbis... $ECHO_C" >&6
+-if test "x$au_enable_vorbis" = xyes; then
+-  echo "$as_me:$LINENO: result: yes, configuring vorbis" >&5
+-echo "${ECHO_T}yes, configuring vorbis" >&6
+-  if test "x$MSYS" = "xyes" && test "x$MINGWGCC" != "xyes" ; then
+-    if test "${ac_cv_header_vorbis_vorbisenc_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for vorbis/vorbisenc.h" >&5
+-echo $ECHO_N "checking for vorbis/vorbisenc.h... $ECHO_C" >&6
+-if test "${ac_cv_header_vorbis_vorbisenc_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_vorbis_vorbisenc_h" >&5
+-echo "${ECHO_T}$ac_cv_header_vorbis_vorbisenc_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking vorbis/vorbisenc.h usability" >&5
+-echo $ECHO_N "checking vorbis/vorbisenc.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <vorbis/vorbisenc.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking vorbis/vorbisenc.h presence" >&5
+-echo $ECHO_N "checking vorbis/vorbisenc.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <vorbis/vorbisenc.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: vorbis/vorbisenc.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: vorbis/vorbisenc.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for vorbis/vorbisenc.h" >&5
+-echo $ECHO_N "checking for vorbis/vorbisenc.h... $ECHO_C" >&6
+-if test "${ac_cv_header_vorbis_vorbisenc_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_vorbis_vorbisenc_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_vorbis_vorbisenc_h" >&5
+-echo "${ECHO_T}$ac_cv_header_vorbis_vorbisenc_h" >&6
+-
+-fi
+-if test $ac_cv_header_vorbis_vorbisenc_h = yes; then
+-  :
+-else
+-
+-    EXTRADEFS="-DAU_VORBIS_DLL $EXTRADEFS"
+-	SYSEXTRAS="$SYSEXTRAS w32g_vorbisenc_dll.c w32g_vorbis_dll.c w32g_ogg_dll.c"
+-
+-fi
+-
+-
+-  else
+-
+-# Check whether --with-ogg or --without-ogg was given.
+-if test "${with_ogg+set}" = set; then
+-  withval="$with_ogg"
+-  ogg_prefix="$withval"
+-else
+-  ogg_prefix=""
+-fi;
+-
+-# Check whether --with-ogg-libraries or --without-ogg-libraries was given.
+-if test "${with_ogg_libraries+set}" = set; then
+-  withval="$with_ogg_libraries"
+-  ogg_libraries="$withval"
+-else
+-  ogg_libraries=""
+-fi;
+-
+-# Check whether --with-ogg-includes or --without-ogg-includes was given.
+-if test "${with_ogg_includes+set}" = set; then
+-  withval="$with_ogg_includes"
+-  ogg_includes="$withval"
+-else
+-  ogg_includes=""
+-fi;
+-# Check whether --enable-oggtest or --disable-oggtest was given.
+-if test "${enable_oggtest+set}" = set; then
+-  enableval="$enable_oggtest"
+-
+-else
+-  enable_oggtest=yes
+-fi;
+-
+-  if test "x$ogg_libraries" != "x" ; then
+-    OGG_LIBS="-L$ogg_libraries"
+-  elif test "x$ogg_prefix" != "x" ; then
+-    OGG_LIBS="-L$ogg_prefix/lib"
+-  elif test "x$prefix" != "xNONE" ; then
+-    OGG_LIBS="-L$prefix/lib"
+-  fi
+-
+-  OGG_LIBS="$OGG_LIBS -logg"
+-
+-  if test "x$ogg_includes" != "x" ; then
+-    OGG_CFLAGS="-I$ogg_includes"
+-  elif test "x$ogg_prefix" != "x" ; then
+-    OGG_CFLAGS="-I$ogg_prefix/include"
+-  elif test "x$prefix" != "xNONE"; then
+-    OGG_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  echo "$as_me:$LINENO: checking for Ogg" >&5
+-echo $ECHO_N "checking for Ogg... $ECHO_C" >&6
+-  no_ogg=""
+-
+-
+-  if test "x$enable_oggtest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $OGG_CFLAGS"
+-    LIBS="$LIBS $OGG_LIBS"
+-      rm -f conf.oggtest
+-      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 <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <ogg/ogg.h>
+-
+-int main ()
+-{
+-  system("touch conf.oggtest");
+-  return 0;
+-}
+-
+-
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-no_ogg=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
+-
+-  if test "x$no_ogg" = "x" ; then
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-
+-# Check whether --with-vorbis or --without-vorbis was given.
+-if test "${with_vorbis+set}" = set; then
+-  withval="$with_vorbis"
+-  vorbis_prefix="$withval"
+-else
+-  vorbis_prefix=""
+-fi;
+-
+-# Check whether --with-vorbis-libraries or --without-vorbis-libraries was given.
+-if test "${with_vorbis_libraries+set}" = set; then
+-  withval="$with_vorbis_libraries"
+-  vorbis_libraries="$withval"
+-else
+-  vorbis_libraries=""
+-fi;
+-
+-# Check whether --with-vorbis-includes or --without-vorbis-includes was given.
+-if test "${with_vorbis_includes+set}" = set; then
+-  withval="$with_vorbis_includes"
+-  vorbis_includes="$withval"
+-else
+-  vorbis_includes=""
+-fi;
+-# Check whether --enable-vorbistest or --disable-vorbistest was given.
+-if test "${enable_vorbistest+set}" = set; then
+-  enableval="$enable_vorbistest"
+-
+-else
+-  enable_vorbistest=yes
+-fi;
+-
+-  if test "x$vorbis_libraries" != "x" ; then
+-    VORBIS_LIBS="-L$vorbis_libraries"
+-  elif test "x$vorbis_prefix" != "x" ; then
+-    VORBIS_LIBS="-L$vorbis_prefix/lib"
+-  elif test "x$prefix" != "xNONE"; then
+-    VORBIS_LIBS="-L$prefix/lib"
+-  fi
+-
+-  VORBIS_LIBS="$VORBIS_LIBS -lvorbis -lm"
+-  VORBISFILE_LIBS="-lvorbisfile"
+-  VORBISENC_LIBS="-lvorbisenc"
+-
+-  if test "x$vorbis_includes" != "x" ; then
+-    VORBIS_CFLAGS="-I$vorbis_includes"
+-  elif test "x$vorbis_prefix" != "x" ; then
+-    VORBIS_CFLAGS="-I$vorbis_prefix/include"
+-  elif test "x$prefix" != "xNONE"; then
+-    VORBIS_CFLAGS="-I$prefix/include"
+-  fi
+-
+-
+-  echo "$as_me:$LINENO: checking for Vorbis" >&5
+-echo $ECHO_N "checking for Vorbis... $ECHO_C" >&6
+-  no_vorbis=""
+-
+-
+-  if test "x$enable_vorbistest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $VORBIS_CFLAGS $OGG_CFLAGS"
+-    LIBS="$LIBS $VORBIS_LIBS $VORBISENC_LIBS $OGG_LIBS"
+-      rm -f conf.vorbistest
+-      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 <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <vorbis/codec.h>
+-#include <vorbis/vorbisenc.h>
+-
+-int main ()
+-{
+-    vorbis_block 	vb;
+-    vorbis_dsp_state	vd;
+-    vorbis_info		vi;
+-
+-    vorbis_info_init (&vi);
+-    vorbis_encode_init (&vi, 2, 44100, -1, 128000, -1);
+-    vorbis_analysis_init (&vd, &vi);
+-    vorbis_block_init (&vd, &vb);
+-    /* this function was added in 1.0rc3, so this is what we're testing for */
+-    vorbis_bitrate_addblock (&vb);
+-
+-    system("touch conf.vorbistest");
+-    return 0;
+-}
+-
+-
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-no_vorbis=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
+-
+-  if test "x$no_vorbis" = "x" ; then
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-      have_vorbis=yes
+-      SYSEXTRAS="$SYSEXTRAS vorbis_a.c"
+-      EXTRADEFS="$EXTRADEFS -DAU_VORBIS $OGG_CFLAGS $VORBIS_CFLAGS"
+-      EXTRALIBS="$EXTRALIBS $VORBIS_LIBS $VORBISENC_LIBS $OGG_LIBS"
+-      if test "x$MSYS" = "xyes" && test "x$MINGWGCC" = "xyes" ; then
+-      EXTRADEFS="-DAU_VORBIS_DLL $EXTRADEFS"
+-	  SYSEXTRAS="$SYSEXTRAS w32g_vorbisenc_dll.c w32g_vorbis_dll.c w32g_ogg_dll.c"
+-      fi
+-
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test -f conf.vorbistest ; then
+-       :
+-     else
+-       echo "*** Could not run Vorbis test program, checking why..."
+-       CFLAGS="$CFLAGS $VORBIS_CFLAGS"
+-       LIBS="$LIBS $VORBIS_LIBS $OGG_LIBS"
+-       cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <stdio.h>
+-#include <vorbis/codec.h>
+-
+-int
+-main ()
+-{
+- return 0;
+-  ;
+-  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 Vorbis or finding the wrong"
+-       echo "*** version of Vorbis. If it is not finding Vorbis, 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 Vorbis was incorrectly installed"
+-       echo "*** or that you have moved Vorbis since it was installed."
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     VORBIS_CFLAGS=""
+-     VORBIS_LIBS=""
+-     VORBISFILE_LIBS=""
+-     VORBISENC_LIBS=""
+-
+-      { echo "$as_me:$LINENO: WARNING: Unable to configure vorbis, but ogg is there (???)" >&5
+-echo "$as_me: WARNING: Unable to configure vorbis, but ogg is there (???)" >&2;}
+-
+-  fi
+-
+-
+-
+-
+-  rm -f conf.vorbistest
+-
+-
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test -f conf.oggtest ; then
+-       :
+-     else
+-       echo "*** Could not run Ogg test program, checking why..."
+-       CFLAGS="$CFLAGS $OGG_CFLAGS"
+-       LIBS="$LIBS $OGG_LIBS"
+-       cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <stdio.h>
+-#include <ogg/ogg.h>
+-
+-int
+-main ()
+-{
+- return 0;
+-  ;
+-  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 Ogg or finding the wrong"
+-       echo "*** version of Ogg. If it is not finding Ogg, 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 Ogg was incorrectly installed"
+-       echo "*** or that you have moved Ogg since it was installed."
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     OGG_CFLAGS=""
+-     OGG_LIBS=""
+-
+-    { echo "$as_me:$LINENO: WARNING: Unable to configure vorbis!" >&5
+-echo "$as_me: WARNING: Unable to configure vorbis!" >&2;}
+-    have_vorbis=no
+-
+-  fi
+-
+-
+-  rm -f conf.oggtest
+-
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-if test "x$MSYS" = xyes ; then
+-  echo "$as_me:$LINENO: checking enable_audio=flac" >&5
+-echo $ECHO_N "checking enable_audio=flac... $ECHO_C" >&6
+-  if test "x$au_enable_flac" = xyes; then
+-    echo "$as_me:$LINENO: result: yes, configuring flac" >&5
+-echo "${ECHO_T}yes, configuring flac" >&6
+-    SYSEXTRAS="$SYSEXTRAS flac_a.c w32_libFLAC_dll.c w32_libOggFLAC_dll.c"
+-    if test "${ac_cv_header_FLAC_all_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for FLAC/all.h" >&5
+-echo $ECHO_N "checking for FLAC/all.h... $ECHO_C" >&6
+-if test "${ac_cv_header_FLAC_all_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_FLAC_all_h" >&5
+-echo "${ECHO_T}$ac_cv_header_FLAC_all_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking FLAC/all.h usability" >&5
+-echo $ECHO_N "checking FLAC/all.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <FLAC/all.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking FLAC/all.h presence" >&5
+-echo $ECHO_N "checking FLAC/all.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <FLAC/all.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: FLAC/all.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: FLAC/all.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: FLAC/all.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: FLAC/all.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: FLAC/all.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: FLAC/all.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: FLAC/all.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: FLAC/all.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: FLAC/all.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for FLAC/all.h" >&5
+-echo $ECHO_N "checking for FLAC/all.h... $ECHO_C" >&6
+-if test "${ac_cv_header_FLAC_all_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_FLAC_all_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_FLAC_all_h" >&5
+-echo "${ECHO_T}$ac_cv_header_FLAC_all_h" >&6
+-
+-fi
+-if test $ac_cv_header_FLAC_all_h = yes; then
+-
+-      EXTRADEFS="$EXTRADEFS -DAU_FLAC -DAU_FLAC_DLL"
+-
+-fi
+-
+-
+-    if test "${ac_cv_header_OggFLAC_all_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for OggFLAC/all.h" >&5
+-echo $ECHO_N "checking for OggFLAC/all.h... $ECHO_C" >&6
+-if test "${ac_cv_header_OggFLAC_all_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_OggFLAC_all_h" >&5
+-echo "${ECHO_T}$ac_cv_header_OggFLAC_all_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking OggFLAC/all.h usability" >&5
+-echo $ECHO_N "checking OggFLAC/all.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <OggFLAC/all.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking OggFLAC/all.h presence" >&5
+-echo $ECHO_N "checking OggFLAC/all.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <OggFLAC/all.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: OggFLAC/all.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: OggFLAC/all.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for OggFLAC/all.h" >&5
+-echo $ECHO_N "checking for OggFLAC/all.h... $ECHO_C" >&6
+-if test "${ac_cv_header_OggFLAC_all_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_OggFLAC_all_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_OggFLAC_all_h" >&5
+-echo "${ECHO_T}$ac_cv_header_OggFLAC_all_h" >&6
+-
+-fi
+-if test $ac_cv_header_OggFLAC_all_h = yes; then
+-
+-      EXTRADEFS="$EXTRADEFS -DAU_OGGFLAC -DAU_OGGFLAC_DLL"
+-
+-fi
+-
+-
+-  else
+-    echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-  fi
+-else
+-  echo "$as_me:$LINENO: checking enable_audio=flac" >&5
+-echo $ECHO_N "checking enable_audio=flac... $ECHO_C" >&6
+-  if test "x$au_enable_flac" = xyes; then
+-    echo "$as_me:$LINENO: result: yes, configuring flac" >&5
+-echo "${ECHO_T}yes, configuring flac" >&6
+-    SYSEXTRAS="$SYSEXTRAS flac_a.c"
+-
+-# Check whether --with-libFLAC or --without-libFLAC was given.
+-if test "${with_libFLAC+set}" = set; then
+-  withval="$with_libFLAC"
+-  libFLAC_prefix="$withval"
+-else
+-  libFLAC_prefix=""
+-fi;
+-
+-# Check whether --with-libFLAC-libraries or --without-libFLAC-libraries was given.
+-if test "${with_libFLAC_libraries+set}" = set; then
+-  withval="$with_libFLAC_libraries"
+-  libFLAC_libraries="$withval"
+-else
+-  libFLAC_libraries=""
+-fi;
+-
+-# Check whether --with-libFLAC-includes or --without-libFLAC-includes was given.
+-if test "${with_libFLAC_includes+set}" = set; then
+-  withval="$with_libFLAC_includes"
+-  libFLAC_includes="$withval"
+-else
+-  libFLAC_includes=""
+-fi;
+-# Check whether --enable-libFLACtest or --disable-libFLACtest was given.
+-if test "${enable_libFLACtest+set}" = set; then
+-  enableval="$enable_libFLACtest"
+-
+-else
+-  enable_libFLACtest=yes
+-fi;
+-
+-  if test "x$libFLAC_libraries" != "x" ; then
+-    LIBFLAC_LIBS="-L$libFLAC_libraries"
+-  elif test "x$libFLAC_prefix" != "x" ; then
+-    LIBFLAC_LIBS="-L$libFLAC_prefix/lib"
+-  elif test "x$prefix" != "xNONE" ; then
+-    LIBFLAC_LIBS="-L$prefix/lib"
+-  fi
+-
+-  LIBFLAC_LIBS="$LIBFLAC_LIBS -lFLAC -lm"
+-
+-  if test "x$libFLAC_includes" != "x" ; then
+-    LIBFLAC_CFLAGS="-I$libFLAC_includes"
+-  elif test "x$libFLAC_prefix" != "x" ; then
+-    LIBFLAC_CFLAGS="-I$libFLAC_prefix/include"
+-  elif test "$prefix" != "xNONE"; then
+-    LIBFLAC_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  echo "$as_me:$LINENO: checking for libFLAC" >&5
+-echo $ECHO_N "checking for libFLAC... $ECHO_C" >&6
+-  no_libFLAC=""
+-
+-
+-  if test "x$enable_libFLACtest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_CXXFLAGS="$CXXFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $LIBFLAC_CFLAGS"
+-    CXXFLAGS="$CXXFLAGS $LIBFLAC_CFLAGS"
+-    LIBS="$LIBS $LIBFLAC_LIBS"
+-      rm -f conf.libFLACtest
+-      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 <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <FLAC/format.h>
+-
+-int main ()
+-{
+-  system("touch conf.libFLACtest");
+-  return 0;
+-}
+-
+-
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-no_libFLAC=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
+-
+-  if test "x$no_libFLAC" = "x" ; then
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-      EXTRADEFS="$EXTRADEFS -DAU_FLAC"
+-      for f in $LIBFLAC_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-      LIBS="$LIBS $LIBFLAC_LIBS"
+-
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test -f conf.libFLACtest ; then
+-       :
+-     else
+-       echo "*** Could not run libFLAC test program, checking why..."
+-       CFLAGS="$CFLAGS $LIBFLAC_CFLAGS"
+-       LIBS="$LIBS $LIBFLAC_LIBS"
+-       cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <stdio.h>
+-#include <FLAC/format.h>
+-
+-int
+-main ()
+-{
+- return 0;
+-  ;
+-  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 libFLAC or finding the wrong"
+-       echo "*** version of libFLAC. If it is not finding libFLAC, 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 libFLAC was incorrectly installed"
+-       echo "*** or that you have moved libFLAC since it was installed. In the latter case, you"
+-       echo "*** may want to edit the libFLAC-config script: $LIBFLAC_CONFIG"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     LIBFLAC_CFLAGS=""
+-     LIBFLAC_LIBS=""
+-     :
+-  fi
+-
+-
+-  rm -f conf.libFLACtest
+-
+-
+-# Check whether --with-libOggFLAC or --without-libOggFLAC was given.
+-if test "${with_libOggFLAC+set}" = set; then
+-  withval="$with_libOggFLAC"
+-  libOggFLAC_prefix="$withval"
+-else
+-  libOggFLAC_prefix=""
+-fi;
+-
+-# Check whether --with-libOggFLAC-libraries or --without-libOggFLAC-libraries was given.
+-if test "${with_libOggFLAC_libraries+set}" = set; then
+-  withval="$with_libOggFLAC_libraries"
+-  libOggFLAC_libraries="$withval"
+-else
+-  libOggFLAC_libraries=""
+-fi;
+-
+-# Check whether --with-libOggFLAC-includes or --without-libOggFLAC-includes was given.
+-if test "${with_libOggFLAC_includes+set}" = set; then
+-  withval="$with_libOggFLAC_includes"
+-  libOggFLAC_includes="$withval"
+-else
+-  libOggFLAC_includes=""
+-fi;
+-# Check whether --enable-libOggFLACtest or --disable-libOggFLACtest was given.
+-if test "${enable_libOggFLACtest+set}" = set; then
+-  enableval="$enable_libOggFLACtest"
+-
+-else
+-  enable_libOggFLACtest=yes
+-fi;
+-
+-  if test "x$libOggFLAC_libraries" != "x" ; then
+-    LIBOGGFLAC_LIBS="-L$libOggFLAC_libraries"
+-  elif test "x$libOggFLAC_prefix" != "x" ; then
+-    LIBOGGFLAC_LIBS="-L$libOggFLAC_prefix/lib"
+-  elif test "x$prefix" != "xNONE" ; then
+-    LIBOGGFLAC_LIBS="-L$prefix/lib"
+-  fi
+-
+-  LIBOGGFLAC_LIBS="$LIBOGGFLAC_LIBS -lOggFLAC -lFLAC -lm"
+-
+-  if test "x$libOggFLAC_includes" != "x" ; then
+-    LIBOGGFLAC_CFLAGS="-I$libOggFLAC_includes"
+-  elif test "x$libOggFLAC_prefix" != "x" ; then
+-    LIBOGGFLAC_CFLAGS="-I$libOggFLAC_prefix/include"
+-  elif test "$prefix" != "xNONE"; then
+-    LIBOGGFLAC_CFLAGS="-I$prefix/include"
+-  fi
+-
+-  echo "$as_me:$LINENO: checking for libOggFLAC" >&5
+-echo $ECHO_N "checking for libOggFLAC... $ECHO_C" >&6
+-  no_libOggFLAC=""
+-
+-
+-  if test "x$enable_libOggFLACtest" = "xyes" ; then
+-    ac_save_CFLAGS="$CFLAGS"
+-    ac_save_CXXFLAGS="$CXXFLAGS"
+-    ac_save_LIBS="$LIBS"
+-    CFLAGS="$CFLAGS $LIBOGGFLAC_CFLAGS"
+-    CXXFLAGS="$CXXFLAGS $LIBOGGFLAC_CFLAGS"
+-    LIBS="$LIBS $LIBOGGFLAC_LIBS"
+-      rm -f conf.libOggFLACtest
+-      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 <stdio.h>
+-#include <stdlib.h>
+-#include <string.h>
+-#include <OggFLAC/stream_decoder.h>
+-
+-int main ()
+-{
+-  system("touch conf.libOggFLACtest");
+-  return 0;
+-}
+-
+-
+-_ACEOF
+-rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  :
+-else
+-  echo "$as_me: program exited with status $ac_status" >&5
+-echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-( exit $ac_status )
+-no_libOggFLAC=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
+-
+-  if test "x$no_libOggFLAC" = "x" ; then
+-     echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-
+-      EXTRADEFS="$EXTRADEFS -DAU_OGGFLAC"
+-      for f in $LIBOGGFLAC_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-      LIBS="$LIBS $LIBOGGFLAC_LIBS"
+-
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test -f conf.libOggFLACtest ; then
+-       :
+-     else
+-       echo "*** Could not run libOggFLAC test program, checking why..."
+-       CFLAGS="$CFLAGS $LIBOGGFLAC_CFLAGS"
+-       LIBS="$LIBS $LIBOGGFLAC_LIBS"
+-       cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <stdio.h>
+-#include <OggFLAC/stream_decoder.h>
+-
+-int
+-main ()
+-{
+- return 0;
+-  ;
+-  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 libOggFLAC or finding the wrong"
+-       echo "*** version of libOggFLAC. If it is not finding libOggFLAC, 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 libOggFLAC was incorrectly installed"
+-       echo "*** or that you have moved libOggFLAC since it was installed. In the latter case, you"
+-       echo "*** may want to edit the libOggFLAC-config script: $LIBOGGFLAC_CONFIG"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-       CFLAGS="$ac_save_CFLAGS"
+-       LIBS="$ac_save_LIBS"
+-     fi
+-     LIBOGGFLAC_CFLAGS=""
+-     LIBOGGFLAC_LIBS=""
+-     :
+-  fi
+-
+-
+-  rm -f conf.libOggFLACtest
+-
+-  else
+-    echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-  fi
+-fi
+-echo "$as_me:$LINENO: checking enable_audio=speex" >&5
+-echo $ECHO_N "checking enable_audio=speex... $ECHO_C" >&6
+-if test "x$au_enable_speex" = xyes; then
+-  if test "${have_speex+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-  #include <speex/speex.h>
+-  #include <ogg/ogg.h>
+-
+-int
+-main ()
+-{
+-
+-    SpeexBits *dummy;
+-
+-  ;
+-  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
+-  have_speex=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-have_speex=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-
+-  echo "$as_me:$LINENO: result: $have_speex" >&5
+-echo "${ECHO_T}$have_speex" >&6
+-  if test "x$have_speex" = xyes; then
+-    SYSEXTRAS="$SYSEXTRAS speex_a.c"
+-    EXTRALIBS="$EXTRALIBS -lspeex -logg"
+-    EXTRADEFS="$EXTRADEFS -DAU_SPEEX"
+-  fi
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-echo "$as_me:$LINENO: checking enable_audio=gogo" >&5
+-echo $ECHO_N "checking enable_audio=gogo... $ECHO_C" >&6
+-if test "x$au_enable_gogo" = xyes; then
+-  if test "x$MSYS" = "xyes"; then
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-  else
+-    { echo "$as_me:$LINENO: WARNING: May be gogo is not supported.  You need hack the gogo_a.c" >&5
+-echo "$as_me: WARNING: May be gogo is not supported.  You need hack the gogo_a.c" >&2;}
+-  fi
+-  if test "${ac_cv_header_gogo_gogo_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for gogo/gogo.h" >&5
+-echo $ECHO_N "checking for gogo/gogo.h... $ECHO_C" >&6
+-if test "${ac_cv_header_gogo_gogo_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_gogo_gogo_h" >&5
+-echo "${ECHO_T}$ac_cv_header_gogo_gogo_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking gogo/gogo.h usability" >&5
+-echo $ECHO_N "checking gogo/gogo.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <gogo/gogo.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking gogo/gogo.h presence" >&5
+-echo $ECHO_N "checking gogo/gogo.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <gogo/gogo.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: gogo/gogo.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: gogo/gogo.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: gogo/gogo.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: gogo/gogo.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: gogo/gogo.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: gogo/gogo.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: gogo/gogo.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: gogo/gogo.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: gogo/gogo.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for gogo/gogo.h" >&5
+-echo $ECHO_N "checking for gogo/gogo.h... $ECHO_C" >&6
+-if test "${ac_cv_header_gogo_gogo_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_gogo_gogo_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_gogo_gogo_h" >&5
+-echo "${ECHO_T}$ac_cv_header_gogo_gogo_h" >&6
+-
+-fi
+-if test $ac_cv_header_gogo_gogo_h = yes; then
+-
+-    have_gogo=yes
+-
+-fi
+-
+-
+-  SYSEXTRAS="$SYSEXTRAS gogo_a.c w32_gogo.c"
+-  EXTRADEFS="$EXTRADEFS -DAU_GOGO -DAU_GOGO_DLL"
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-if test "x$au_enable_none" = xyes; then
+-    EXTRADEFS="$EXTRADEFS -DAU_NONE -DAU_AUDRIV"
+-    SYSEXTRAS="$SYSEXTRAS audriv_a.c audriv_none.c"
+-fi
+-echo "$as_me:$LINENO: checking default output mode" >&5
+-echo $ECHO_N "checking default output mode... $ECHO_C" >&6
+-if test "x$DEFAULT_PLAYMODE" = x; then
+-  DEFAULT_PLAYMODE=`echo $enable_audio | sed 's/,.*//'`
+-fi
+-case ".$DEFAULT_PLAYMODE" in
+-  .default)  TIMIDITY_OUTPUT_ID=d ;;
+-  .oss)      TIMIDITY_OUTPUT_ID=d ;;
+-  .alsa)     TIMIDITY_OUTPUT_ID=s ;;
+-  .sun)      TIMIDITY_OUTPUT_ID=d ;;
+-  .hpux)     TIMIDITY_OUTPUT_ID=d ;;
+-  .irix)     TIMIDITY_OUTPUT_ID=d ;;
+-  .mme)      TIMIDITY_OUTPUT_ID=d ;;
+-  .sb_dsp)   TIMIDITY_OUTPUT_ID=d ;;
+-  .darwin)   TIMIDITY_OUTPUT_ID=d ;;
+-  .w32)      TIMIDITY_OUTPUT_ID=d ;;
+-  .alib)     TIMIDITY_OUTPUT_ID=A ;;
+-  .nas)      TIMIDITY_OUTPUT_ID=n ;;
+-  .arts)     TIMIDITY_OUTPUT_ID=R ;;
+-  .esd)      TIMIDITY_OUTPUT_ID=e ;;
+-  .portaudio)      TIMIDITY_OUTPUT_ID=p ;;
+-  .npipe)    TIMIDITY_OUTPUT_ID=N ;;
+-  .wav)      TIMIDITY_OUTPUT_ID=w ;;
+-  .au)       TIMIDITY_OUTPUT_ID=u ;;
+-  .aiff)     TIMIDITY_OUTPUT_ID=a ;;
+-  .list)     TIMIDITY_OUTPUT_ID=l ;;
+-  .vorbis)   TIMIDITY_OUTPUT_ID=v ;;
+-  .flac)     TIMIDITY_OUTPUT_ID=F ;;
+-  .speex)    TIMIDITY_OUTPUT_ID=S ;;
+-  .gogo)     TIMIDITY_OUTPUT_ID=g ;;
+-  .jack)     TIMIDITY_OUTPUT_ID=j ;;
+-  .ao)       TIMIDITY_OUTPUT_ID=O ;;
+-  *)         TIMIDITY_OUTPUT_ID= ;;
+-esac
+-echo "$as_me:$LINENO: result: $DEFAULT_PLAYMODE/$TIMIDITY_OUTPUT_ID" >&5
+-echo "${ECHO_T}$DEFAULT_PLAYMODE/$TIMIDITY_OUTPUT_ID" >&6
+-
+-
+-#
+-# Interface Section
+-#
+-
+-interface_targets='dynamic ncurses slang motif tcltk emacs vt100 xaw xskin gtk alsaseq winsyn winsyng portmidisyng npsyn'
+-
+-# Check whether --enable-interface or --disable-interface was given.
+-if test "${enable_interface+set}" = set; then
+-  enableval="$enable_interface"
+-   for i in `echo $enableval | sed 's/,/ /g'`; do
+-      eval "enable_$i=yes"
+-    done
+-fi;
+-
+-#  Dynamic link configuration
+-# Check whether --enable-dynamic or --disable-dynamic was given.
+-if test "${enable_dynamic+set}" = set; then
+-  enableval="$enable_dynamic"
+-       if test "x$enable_dynamic" = xyes; then
+-      enable_dynamic=dynamic
+-    elif test "x$enable_dynamic" != xno; then
+-      for i in `echo $enableval | sed 's/,/ /g'`; do
+-	eval "enable_$i=dynamic"
+-      done
+-    fi
+-fi;
+-
+-join_targets=
+-for i in $interface_targets; do
+-  eval "join_targets=$join_targets\$enable_$i"
+-done
+-
+-case ".$join_targets" in
+-.*dynamic*) NEEDDLOPEN=yes;;
+-*)	    NEEDDLOPEN=no;;
+-esac
+-
+-if test "x$GCC" = xyes; then SHCFLAGS="$SHCFLAGS -fPIC"; fi
+-case "x$enable_ump" in xyes|xdynamic) EXTRACFLAGS="$EXTRACFLAGS -DXP_UNIX $SHCFLAGS";; esac
+-
+-if test "$NEEDDLOPEN" = "yes"; then
+-  have_dl=no
+-
+-  echo "$as_me:$LINENO: checking for LoadLibrary" >&5
+-echo $ECHO_N "checking for LoadLibrary... $ECHO_C" >&6
+-if test "${wapi_cv_func_LoadLibrary+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <windows.h>
+-
+-
+-int
+-main ()
+-{
+-LoadLibrary(0);
+-  ;
+-  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
+-  wapi_cv_func_LoadLibrary=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-wapi_cv_func_LoadLibrary=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-
+-if eval "test \"`echo '$wapi_cv_func_'LoadLibrary`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-  have_dl=w32
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  test $wapi_cv_func_LoadLibrary = yes && have_dl=w32
+-
+-  if test "$have_dl" = "no"; then
+-    echo "$as_me:$LINENO: checking for shl_load" >&5
+-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6
+-if test "${ac_cv_func_shl_load+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 shl_load to an innocuous variant, in case <limits.h> declares shl_load.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define shl_load innocuous_shl_load
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char shl_load (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef shl_load
+-
+-/* 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 shl_load ();
+-/* 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_shl_load) || defined (__stub___shl_load)
+-choke me
+-#else
+-char (*f) () = shl_load;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != shl_load;
+-  ;
+-  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_shl_load=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_shl_load=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
+-echo "${ECHO_T}$ac_cv_func_shl_load" >&6
+-if test $ac_cv_func_shl_load = yes; then
+-  have_dl=hpux
+-fi
+-
+-  fi
+-  if test "$have_dl" = "no"; then
+-            echo "$as_me:$LINENO: checking for NSLinkModule" >&5
+-echo $ECHO_N "checking for NSLinkModule... $ECHO_C" >&6
+-if test "${ac_cv_func_NSLinkModule+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 NSLinkModule to an innocuous variant, in case <limits.h> declares NSLinkModule.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define NSLinkModule innocuous_NSLinkModule
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char NSLinkModule (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef NSLinkModule
+-
+-/* 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 NSLinkModule ();
+-/* 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_NSLinkModule) || defined (__stub___NSLinkModule)
+-choke me
+-#else
+-char (*f) () = NSLinkModule;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != NSLinkModule;
+-  ;
+-  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_NSLinkModule=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_NSLinkModule=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_NSLinkModule" >&5
+-echo "${ECHO_T}$ac_cv_func_NSLinkModule" >&6
+-if test $ac_cv_func_NSLinkModule = yes; then
+-  have_dl=dyld
+-fi
+-
+-  fi
+-  if test "$have_dl" = "no" -a "x$ac_cv_lib_dl_dlopen" = xyes; then
+-    have_dl=dlopen
+-  fi
+-  if test "$have_dl" = "no"; then
+-    echo "$as_me:$LINENO: checking for dlopen" >&5
+-echo $ECHO_N "checking for dlopen... $ECHO_C" >&6
+-if test "${ac_cv_func_dlopen+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 dlopen to an innocuous variant, in case <limits.h> declares dlopen.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define dlopen innocuous_dlopen
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char dlopen (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef dlopen
+-
+-/* 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 dlopen ();
+-/* 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_dlopen) || defined (__stub___dlopen)
+-choke me
+-#else
+-char (*f) () = dlopen;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != dlopen;
+-  ;
+-  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_dlopen=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_dlopen=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
+-echo "${ECHO_T}$ac_cv_func_dlopen" >&6
+-if test $ac_cv_func_dlopen = yes; then
+-  have_dl=dlopen
+-fi
+-
+-  fi
+-  if test "$have_dl" = "no"; then
+-    echo "$as_me:$LINENO: checking for dld_init" >&5
+-echo $ECHO_N "checking for dld_init... $ECHO_C" >&6
+-if test "${ac_cv_func_dld_init+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 dld_init to an innocuous variant, in case <limits.h> declares dld_init.
+-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+-#define dld_init innocuous_dld_init
+-
+-/* System header to define __stub macros and hopefully few prototypes,
+-    which can conflict with char dld_init (); below.
+-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+-    <limits.h> exists even on freestanding compilers.  */
+-
+-#ifdef __STDC__
+-# include <limits.h>
+-#else
+-# include <assert.h>
+-#endif
+-
+-#undef dld_init
+-
+-/* 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 dld_init ();
+-/* 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_dld_init) || defined (__stub___dld_init)
+-choke me
+-#else
+-char (*f) () = dld_init;
+-#endif
+-#ifdef __cplusplus
+-}
+-#endif
+-
+-int
+-main ()
+-{
+-return f != dld_init;
+-  ;
+-  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_dld_init=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_func_dld_init=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_func_dld_init" >&5
+-echo "${ECHO_T}$ac_cv_func_dld_init" >&6
+-if test $ac_cv_func_dld_init = yes; then
+-  have_dl=dld
+-fi
+-
+-  fi
+-  if test "$have_dl" = "no"; then
+-    echo "$as_me:$LINENO: checking for dld_init in -ldld" >&5
+-echo $ECHO_N "checking for dld_init in -ldld... $ECHO_C" >&6
+-if test "${ac_cv_lib_dld_dld_init+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ldld  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char dld_init ();
+-int
+-main ()
+-{
+-dld_init ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_dld_dld_init=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_dld_dld_init=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_init" >&5
+-echo "${ECHO_T}$ac_cv_lib_dld_dld_init" >&6
+-if test $ac_cv_lib_dld_dld_init = yes; then
+-  have_dl=dld;lib_dl_opt=-ldld
+-fi
+-
+-  fi
+-
+-  echo "$as_me:$LINENO: checking dynamic link method" >&5
+-echo $ECHO_N "checking dynamic link method... $ECHO_C" >&6
+-  case "$have_dl" in
+-    dlopen)
+-      echo "$as_me:$LINENO: result: use dl_dlopen.c" >&5
+-echo "${ECHO_T}use dl_dlopen.c" >&6
+-      SYSEXTRAS="$SYSEXTRAS dl_dlopen.c"
+-      echo "$as_me:$LINENO: checking whether your dlsym() needs a leading underscore" >&5
+-echo $ECHO_N "checking whether your dlsym() needs a leading underscore... $ECHO_C" >&6
+-if test "${timidity_cv_func_dlsym_underscore+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  case "$ac_cv_header_dlfcn_h" in
+-yes) i_dlfcn=define;;
+-*)   i_dlfcn=undef;;
+-esac
+-cat > dyna.c <<EOM
+-fred () { }
+-EOM
+-
+-cat > fred.c <<EOM
+-#include <stdio.h>
+-#$i_dlfcn I_DLFCN
+-#ifdef I_DLFCN
+-#include <dlfcn.h>      /* the dynamic linker include file for Sunos/Solaris */
+-#else
+-#include <sys/types.h>
+-#include <nlist.h>
+-#include <link.h>
+-#endif
+-
+-extern int fred() ;
+-
+-main()
+-{
+-    void * handle ;
+-    void * symbol ;
+-#ifndef RTLD_LAZY
+-    int mode = 1 ;
+-#else
+-    int mode = RTLD_LAZY ;
+-#endif
+-    handle = dlopen("./dyna.$so", mode) ;
+-    if (handle == NULL) {
+-	printf ("1\n") ;
+-	fflush (stdout) ;
+-	exit(0);
+-    }
+-    symbol = dlsym(handle, "fred") ;
+-    if (symbol == NULL) {
+-	/* try putting a leading underscore */
+-	symbol = dlsym(handle, "_fred") ;
+-	if (symbol == NULL) {
+-	    printf ("2\n") ;
+-	    fflush (stdout) ;
+-	    exit(0);
+-	}
+-	printf ("3\n") ;
+-    }
+-    else
+-	printf ("4\n") ;
+-    fflush (stdout) ;
+-    exit(0);
+-}
+-EOM
+-: Call the object file tmp-dyna.o in case dlext=o.
+-if ${CC-cc} $CFLAGS $SHCFLAGS $CPPFLAGS -c dyna.c > /dev/null 2>&1 &&
+-	mv dyna.o tmp-dyna.o > /dev/null 2>&1 &&
+-	$SHLD $SHLDFLAGS -o dyna.$so tmp-dyna.o > /dev/null 2>&1 &&
+-	${CC-cc} -o fred $CFLAGS $CPPFLAGS $LDFLAGS fred.c $LIBS $lib_dl_opt > /dev/null 2>&1; then
+-	xxx=`./fred`
+-	case $xxx in
+-	1)	{ echo "$as_me:$LINENO: WARNING: Test program failed using dlopen.  Perhaps you should not use dynamic loading." >&5
+-echo "$as_me: WARNING: Test program failed using dlopen.  Perhaps you should not use dynamic loading." >&2;}
+-		;;
+-	2)	{ echo "$as_me:$LINENO: WARNING: Test program failed using dlsym.  Perhaps you should not use dynamic loading." >&5
+-echo "$as_me: WARNING: Test program failed using dlsym.  Perhaps you should not use dynamic loading." >&2;}
+-		;;
+-	3)	timidity_cv_func_dlsym_underscore=yes
+-		;;
+-	4)	timidity_cv_func_dlsym_underscore=no
+-		;;
+-	esac
+-else
+-	{ echo "$as_me:$LINENO: WARNING: I can't compile and run the test program." >&5
+-echo "$as_me: WARNING: I can't compile and run the test program." >&2;}
+-fi
+-rm -f dyna.c dyna.o dyna.$so tmp-dyna.o fred.c fred.o fred
+-
+-fi
+-
+-case "x$timidity_cv_func_dlsym_underscore" in
+-xyes)
+-cat >>confdefs.h <<\_ACEOF
+-#define DLSYM_NEEDS_UNDERSCORE 1
+-_ACEOF
+-
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+-	;;
+-xno)
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-	;;
+-esac
+-
+-      ;;
+-    dld)
+-      echo "$as_me:$LINENO: result: use dl_dld.c" >&5
+-echo "${ECHO_T}use dl_dld.c" >&6
+-      SYSEXTRAS="$SYSEXTRAS dl_dld.c"
+-      ;;
+-    hpux)
+-      echo "$as_me:$LINENO: result: use dl_hpux.c" >&5
+-echo "${ECHO_T}use dl_hpux.c" >&6
+-      SYSEXTRAS="$SYSEXTRAS dl_hpux.c"
+-      LDFLAGS="$LDFLAGS -Wl,-E $LDFLAGS"
+-      ;;
+-    w32)
+-      echo "$as_me:$LINENO: result: use dl_w32.c" >&5
+-echo "${ECHO_T}use dl_w32.c" >&6
+-      SYSEXTRAS="$SYSEXTRAS dl_w32.c"
+-      ;;
+-    dyld)
+-      echo "$as_me:$LINENO: result: use dl_dyld.c" >&5
+-echo "${ECHO_T}use dl_dyld.c" >&6
+-      SYSEXTRAS="$SYSEXTRAS dl_dyld.c"
+-      ;;
+-    *)
+-      NEEDDLOPEN="no"
+-      { echo "$as_me:$LINENO: WARNING: no method to open a shared object" >&5
+-echo "$as_me: WARNING: no method to open a shared object" >&2;}
+-      ;;
+-  esac
+-fi
+-
+-if test "$NEEDDLOPEN" = "yes"; then
+-  cat >> confdefs.h <<EOF
+-#define IA_DYNAMIC 1
+-EOF
+-
+-
+-cat >>confdefs.h <<_ACEOF
+-#define SHARED_LIB_EXT ".$so"
+-_ACEOF
+-
+-      test "x$GCC" = xyes -a "x$timidity_cv_ccoption_rdynamic" = xyes  && timidity_LDFLAGS="-rdynamic"
+-fi
+-
+-
+-
+-if test "$NEEDDLOPEN" = "yes"; then
+-  NEEDDLOPEN_TRUE=
+-  NEEDDLOPEN_FALSE='#'
+-else
+-  NEEDDLOPEN_TRUE='#'
+-  NEEDDLOPEN_FALSE=
+-fi
+-
+-
+-# Check whether --enable-xdnd or --disable-xdnd was given.
+-if test "${enable_xdnd+set}" = set; then
+-  enableval="$enable_xdnd"
+-   if test "$enableval" = "yes"; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define XDND 1
+-_ACEOF
+-
+-    XDND_SRCS="xdnd.c"
+-    enable_xdnd=yes
+-    fi
+-
+-fi;
+-
+-
+-if test "x$enable_xdnd" = "xyes"; then
+-  ENABLE_XDND_TRUE=
+-  ENABLE_XDND_FALSE='#'
+-else
+-  ENABLE_XDND_TRUE='#'
+-  ENABLE_XDND_FALSE=
+-fi
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_NCURSES_TRUE=
+-  ENABLE_NCURSES_FALSE='#'
+-else
+-  ENABLE_NCURSES_TRUE='#'
+-  ENABLE_NCURSES_FALSE=
+-fi
+-
+-# Check whether --enable-ncurses or --disable-ncurses was given.
+-if test "${enable_ncurses+set}" = set; then
+-  enableval="$enable_ncurses"
+-  case "x$enable_ncurses" in xyes|xdynamic)
+-
+-
+-for ac_header in ncurses.h ncurses/curses.h curses.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-
+-
+-  case "$ac_cv_header_curses_h$ac_cv_header_ncurses_curses_h$ac_cv_header_ncurses_h" in
+-    *yes*);;
+-    *)	for i in /usr/include /usr/local/include; do
+-	  if test -f "$i/ncurses/curses.h" -a -f "$i/ncurses/unctrl.h"; then
+-	    { echo "$as_me:$LINENO: WARNING: ncurses test is failure.  Please check config.h and common.makefile later" >&5
+-echo "$as_me: WARNING: ncurses test is failure.  Please check config.h and common.makefile later" >&2;}
+-	    CPPFLAGS="$CPPFLAGS -I$i/ncurses"
+-	    break
+-	  fi
+-	done
+-	;;
+-    esac
+-
+-    echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
+-echo $ECHO_N "checking for initscr in -lncurses... $ECHO_C" >&6
+-if test "${ac_cv_lib_ncurses_initscr+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lncurses  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char initscr ();
+-int
+-main ()
+-{
+-initscr ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_ncurses_initscr=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_ncurses_initscr=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_initscr" >&5
+-echo "${ECHO_T}$ac_cv_lib_ncurses_initscr" >&6
+-if test $ac_cv_lib_ncurses_initscr = yes; then
+-  lib_curses_opt=-lncurses
+-else
+-   	echo "$as_me:$LINENO: checking for PDC_set_ctrl_break in -lcurses" >&5
+-echo $ECHO_N "checking for PDC_set_ctrl_break in -lcurses... $ECHO_C" >&6
+-if test "${ac_cv_lib_curses_PDC_set_ctrl_break+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lcurses $lib_user32_test $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char PDC_set_ctrl_break ();
+-int
+-main ()
+-{
+-PDC_set_ctrl_break ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_curses_PDC_set_ctrl_break=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_curses_PDC_set_ctrl_break=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_curses_PDC_set_ctrl_break" >&5
+-echo "${ECHO_T}$ac_cv_lib_curses_PDC_set_ctrl_break" >&6
+-if test $ac_cv_lib_curses_PDC_set_ctrl_break = yes; then
+-   lib_curses_opt=-lcurses
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define USE_PDCURSES 1
+-_ACEOF
+-
+-	    lib_user32_opt="$lib_user32_test"
+-
+-else
+-   	    echo "$as_me:$LINENO: checking for PDC_set_ctrl_break in -lpdcurses" >&5
+-echo $ECHO_N "checking for PDC_set_ctrl_break in -lpdcurses... $ECHO_C" >&6
+-if test "${ac_cv_lib_pdcurses_PDC_set_ctrl_break+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lpdcurses  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char PDC_set_ctrl_break ();
+-int
+-main ()
+-{
+-PDC_set_ctrl_break ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_pdcurses_PDC_set_ctrl_break=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_pdcurses_PDC_set_ctrl_break=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_pdcurses_PDC_set_ctrl_break" >&5
+-echo "${ECHO_T}$ac_cv_lib_pdcurses_PDC_set_ctrl_break" >&6
+-if test $ac_cv_lib_pdcurses_PDC_set_ctrl_break = yes; then
+-   lib_curses_opt=-lpdcurses
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define USE_PDCURSES 1
+-_ACEOF
+-
+-	      lib_user32_opt="$lib_user32_test"
+-
+-else
+-   	      case "$target" in
+-		*openbsd*)
+-		  echo "$as_me:$LINENO: checking for initscr in -lcurses" >&5
+-echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6
+-if test "${ac_cv_lib_curses_initscr+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lcurses  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char initscr ();
+-int
+-main ()
+-{
+-initscr ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_curses_initscr=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_curses_initscr=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_curses_initscr" >&5
+-echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6
+-if test $ac_cv_lib_curses_initscr = yes; then
+-  lib_curses_opt=-lcurses
+-else
+-   { echo "$as_me:$LINENO: WARNING: ncurses interface is not enabled" >&5
+-echo "$as_me: WARNING: ncurses interface is not enabled" >&2;}
+-		      enable_ncurses=no
+-fi
+-
+-		  ;;
+-		*)
+-		  if test "x$VCPP" = xyes || test "x$BORLANDC" = xyes || test "x$WATCOM_C" = xyes || test "x$DMC" = xyes || test "x$POCC" = xyes; then
+-		    lib_curses_opt=libpdcurses.lib
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define USE_PDCURSES 1
+-_ACEOF
+-
+-		  else
+-		    { echo "$as_me:$LINENO: WARNING: ncurses interface is not enabled" >&5
+-echo "$as_me: WARNING: ncurses interface is not enabled" >&2;}
+-		    enable_ncurses=no
+-		  fi
+-		  ;;
+-	      esac
+-
+-fi
+-
+-
+-fi
+-
+-
+-fi
+-
+-   ;; esac
+-fi;
+-case "x$enable_ncurses" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_NCURSES 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_NCURSES_TRUE=
+-  ENABLE_NCURSES_FALSE='#'
+-else
+-  ENABLE_NCURSES_TRUE='#'
+-  ENABLE_NCURSES_FALSE=
+-fi
+-
+-   LIBS="$LIBS $lib_curses_opt"
+-    case "$target" in
+-       *-*-freebsd123*)
+-         EXTRALIBS="$EXTRALIBS -lmytinfo"
+-         ;;
+-     esac
+-    INTERFACE_SRCS="$INTERFACE_SRCS ncurs_c.c"
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_ncurses.\$(so)"
+-   n_so_libs="$lib_curses_opt"
+-    case "$target" in
+-       *-*-freebsd123*)
+-         EXTRALIBS="$EXTRALIBS -lmytinfo"
+-         ;;
+-     esac
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_SLANG_TRUE=
+-  ENABLE_SLANG_FALSE='#'
+-else
+-  ENABLE_SLANG_TRUE='#'
+-  ENABLE_SLANG_FALSE=
+-fi
+-
+-# Check whether --enable-slang or --disable-slang was given.
+-if test "${enable_slang+set}" = set; then
+-  enableval="$enable_slang"
+-  case "x$enable_slang" in xyes|xdynamic)  echo "$as_me:$LINENO: checking for SLang_init_tty in -lslang" >&5
+-echo $ECHO_N "checking for SLang_init_tty in -lslang... $ECHO_C" >&6
+-if test "${ac_cv_lib_slang_SLang_init_tty+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lslang  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char SLang_init_tty ();
+-int
+-main ()
+-{
+-SLang_init_tty ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_slang_SLang_init_tty=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_slang_SLang_init_tty=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_slang_SLang_init_tty" >&5
+-echo "${ECHO_T}$ac_cv_lib_slang_SLang_init_tty" >&6
+-if test $ac_cv_lib_slang_SLang_init_tty = yes; then
+-  :
+-else
+-   enable_slang=no
+-      { echo "$as_me:$LINENO: WARNING: slang interface is not enabled" >&5
+-echo "$as_me: WARNING: slang interface is not enabled" >&2;}
+-
+-fi
+-
+-
+-
+-for ac_header in slang/slang.h slang.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-   ;; esac
+-fi;
+-case "x$enable_slang" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_SLANG 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_SLANG_TRUE=
+-  ENABLE_SLANG_FALSE='#'
+-else
+-  ENABLE_SLANG_TRUE='#'
+-  ENABLE_SLANG_FALSE=
+-fi
+-
+-   case "$target" in
+-       *openbsd*)
+-        echo "$as_me:$LINENO: checking for initscr in -ltermcap" >&5
+-echo $ECHO_N "checking for initscr in -ltermcap... $ECHO_C" >&6
+-if test "${ac_cv_lib_termcap_initscr+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ltermcap  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char initscr ();
+-int
+-main ()
+-{
+-initscr ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_termcap_initscr=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_termcap_initscr=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_initscr" >&5
+-echo "${ECHO_T}$ac_cv_lib_termcap_initscr" >&6
+-if test $ac_cv_lib_termcap_initscr = yes; then
+-   LIBS="$LIBS -lslang -ltermcap"
+-                       INTERFACE_SRCS="$INTERFACE_SRCS slang_c.c"
+-
+-                      { echo "$as_me:$LINENO: WARNING: slang interface is not enabled" >&5
+-echo "$as_me: WARNING: slang interface is not enabled" >&2;}
+-                       enable_slang=no
+-
+-fi
+-
+-        ;;
+-       *)
+-        LIBS="$LIBS -lslang"
+-        INTERFACE_SRCS="$INTERFACE_SRCS slang_c.c"
+-       ;;
+-    esac
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_slang.\$(so)"
+-   s_so_libs="-lslang"
+-    echo "$as_me:$LINENO: checking for initscr in -ltermcap" >&5
+-echo $ECHO_N "checking for initscr in -ltermcap... $ECHO_C" >&6
+-if test "${ac_cv_lib_termcap_initscr+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-ltermcap  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char initscr ();
+-int
+-main ()
+-{
+-initscr ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_termcap_initscr=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_termcap_initscr=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_initscr" >&5
+-echo "${ECHO_T}$ac_cv_lib_termcap_initscr" >&6
+-if test $ac_cv_lib_termcap_initscr = yes; then
+-  s_so_libs="$s_so_libs -ltermcap"
+-fi
+-
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_MOTIF_TRUE=
+-  ENABLE_MOTIF_FALSE='#'
+-else
+-  ENABLE_MOTIF_TRUE='#'
+-  ENABLE_MOTIF_FALSE=
+-fi
+-
+-# Check whether --enable-motif or --disable-motif was given.
+-if test "${enable_motif+set}" = set; then
+-  enableval="$enable_motif"
+-  case "x$enable_motif" in xyes|xdynamic)  if test "x$with_x" != xyes; then
+-	{ { echo "$as_me:$LINENO: error: motif: --with-x option must be specified" >&5
+-echo "$as_me: error: motif: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-    fi
+-    if test "x$have_xm" != xyes; then
+-      { echo "$as_me:$LINENO: WARNING: Motif library is not found." >&5
+-echo "$as_me: WARNING: Motif library is not found." >&2;}
+-      enable_motif=no
+-    fi
+-   ;; esac
+-fi;
+-case "x$enable_motif" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_MOTIF 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_MOTIF_TRUE=
+-  ENABLE_MOTIF_FALSE='#'
+-else
+-  ENABLE_MOTIF_TRUE='#'
+-  ENABLE_MOTIF_FALSE=
+-fi
+-
+-   lib_xm_opt=-lXm
+-    lib_xt_opt=-lXt
+-    lib_xext_opt=-lXext
+-    if test "x$have_xprelibs" = xyes; then
+-	lib_xprelibs_opt='-lSM -lICE'
+-    fi
+-    INTERFACE_SRCS="$INTERFACE_SRCS motif_c.c motif_i.c motif_p.c"
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_motif.\$(so)"
+-   if test x$have_xprelibs = xyes; then
+-      m_so_libs="-lXext -lSM -lICE"
+-    fi
+-    m_so_libs="$ldflags_x_opt -lXm -lXt $m_so_libs -lX11"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_TCLTK_TRUE=
+-  ENABLE_TCLTK_FALSE='#'
+-else
+-  ENABLE_TCLTK_TRUE='#'
+-  ENABLE_TCLTK_FALSE=
+-fi
+-
+-# Check whether --enable-tcltk or --disable-tcltk was given.
+-if test "${enable_tcltk+set}" = set; then
+-  enableval="$enable_tcltk"
+-  case "x$enable_tcltk" in xyes|xdynamic)  if test "x$with_x" != xyes; then
+-	{ { echo "$as_me:$LINENO: error: tcltk: --with-x option must be specified" >&5
+-echo "$as_me: error: tcltk: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-    fi
+-
+-        KEEPCPPFLAGS=$CPPFLAGS
+-    KEEPLDFLAGS=$LDFLAGS
+-    KEEPLIBS=$LIBS
+-
+-    CPPFLAGS="$tcl_include_dir $tk_includes $CPPFLAGS"
+-    LDFLAGS="$tcl_libdir $tk_libdir $LDFLAGS"
+-    LIBS="$LIBS $lib_dl_opt"
+-
+-    tcl_lib=
+-    tk_lib=
+-    for l in tcl tcl8.4 tcl84 tcl8.3 tcl8.0jp tcl7.6jp tcl80jp tcl76jp tcl8.0 tcl7.6 tcl80 tcl76; do
+-      case "x$tcl_lib" in x) as_ac_Lib=`echo "ac_cv_lib_$l''_Tcl_Init" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for Tcl_Init in -l$l" >&5
+-echo $ECHO_N "checking for Tcl_Init in -l$l... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Lib+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-l$l  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char Tcl_Init ();
+-int
+-main ()
+-{
+-Tcl_Init ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_Lib=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_Lib=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
+-if test `eval echo '${'$as_ac_Lib'}'` = yes; then
+-  tcl_lib=-l$l
+-fi
+-;; esac
+-    done
+-    LIBS="$LIBS $tcl_lib"
+-    for l in tk tk8.4 tcl84 tk8.3 tk8.0jp tk4.2jp tk80jp tk42jp tk8.0 tk4.2 tk80 tk42; do
+-      case "x$tk_lib" in x) as_ac_Lib=`echo "ac_cv_lib_$l''_Tk_Init" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for Tk_Init in -l$l" >&5
+-echo $ECHO_N "checking for Tk_Init in -l$l... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Lib+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-l$l  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char Tk_Init ();
+-int
+-main ()
+-{
+-Tk_Init ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  eval "$as_ac_Lib=yes"
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-eval "$as_ac_Lib=no"
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
+-if test `eval echo '${'$as_ac_Lib'}'` = yes; then
+-  tk_lib=-l$l
+-fi
+-;; esac
+-    done
+-
+-    LIBS=$KEEPLIBS
+-    if test "x$tcl_lib" = x -o "x$tk_lib" = x; then
+-      CPPFLAGS=$KEEPCPPFLAGS
+-      LDFLAGS=$KEEPLDFLAGS
+-      enable_tcltk=no
+-      { echo "$as_me:$LINENO: WARNING: tcl/tk is not enable" >&5
+-echo "$as_me: WARNING: tcl/tk is not enable" >&2;}
+-    else
+-      tcltk_dep='tclIndex'
+-    fi
+-   ;; esac
+-fi;
+-case "x$enable_tcltk" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_TCLTK 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_TCLTK_TRUE=
+-  ENABLE_TCLTK_FALSE='#'
+-else
+-  ENABLE_TCLTK_TRUE='#'
+-  ENABLE_TCLTK_FALSE=
+-fi
+-
+-   LIBS=`echo $LIBS | sed "s/-lX11/$tk_lib $tcl_lib -lX11/"`
+-    case "$target" in
+-      *-*-bsdi*)
+-	EXTRALIBS="$EXTRALIBS -lipc"
+-	;;
+-    esac
+-    INTERFACE_SRCS="$INTERFACE_SRCS tk_c.c"
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_tcltk.\$(so)"
+-   k_so_libs="$tcl_libdir $tk_libdir $tcl_lib $tk_lib $lib_dl_opt"
+-    case "$target" in
+-      *-*-bsdi*)
+-	k_so_libs="$k_so_libs -lipc"
+-	;;
+-    esac
+-    k_so_libs="$k_so_libs -lX11 -lm"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-if test "x$enable_tcltk" = "xdynamic"; then
+-  ENABLE_DYNAMIC_TCLTK_TRUE=
+-  ENABLE_DYNAMIC_TCLTK_FALSE='#'
+-else
+-  ENABLE_DYNAMIC_TCLTK_TRUE='#'
+-  ENABLE_DYNAMIC_TCLTK_FALSE=
+-fi
+-
+-
+-
+-
+-if false; then
+-  ENABLE_EMACS_TRUE=
+-  ENABLE_EMACS_FALSE='#'
+-else
+-  ENABLE_EMACS_TRUE='#'
+-  ENABLE_EMACS_FALSE=
+-fi
+-
+-# Check whether --enable-emacs or --disable-emacs was given.
+-if test "${enable_emacs+set}" = set; then
+-  enableval="$enable_emacs"
+-  case "x$enable_emacs" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_emacs" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_EMACS 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_EMACS_TRUE=
+-  ENABLE_EMACS_FALSE='#'
+-else
+-  ENABLE_EMACS_TRUE='#'
+-  ENABLE_EMACS_FALSE=
+-fi
+-
+-   ELFILES="$ELFILES timidity.el"
+-    INTERFACE_SRCS="$INTERFACE_SRCS emacs_c.c"
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_emacs.\$(so)"
+-   ELFILES="$ELFILES timidity.el"
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_VT100_TRUE=
+-  ENABLE_VT100_FALSE='#'
+-else
+-  ENABLE_VT100_TRUE='#'
+-  ENABLE_VT100_FALSE=
+-fi
+-
+-# Check whether --enable-vt100 or --disable-vt100 was given.
+-if test "${enable_vt100+set}" = set; then
+-  enableval="$enable_vt100"
+-  case "x$enable_vt100" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_vt100" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_VT100 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_VT100_TRUE=
+-  ENABLE_VT100_FALSE='#'
+-else
+-  ENABLE_VT100_TRUE='#'
+-  ENABLE_VT100_FALSE=
+-fi
+-
+-   INTERFACE_SRCS="$INTERFACE_SRCS vt100_c.c vt100.c"
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_vt100.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_XAW_TRUE=
+-  ENABLE_XAW_FALSE='#'
+-else
+-  ENABLE_XAW_TRUE='#'
+-  ENABLE_XAW_FALSE=
+-fi
+-
+-# Check whether --enable-xaw or --disable-xaw was given.
+-if test "${enable_xaw+set}" = set; then
+-  enableval="$enable_xaw"
+-  case "x$enable_xaw" in xyes|xdynamic)  if test "x$with_x" != xyes; then
+-	{ { echo "$as_me:$LINENO: error: xaw: --with-x option must be specified" >&5
+-echo "$as_me: error: xaw: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-    fi
+-    if test "x$have_xaw" = "xno"; then
+-      { echo "$as_me:$LINENO: WARNING: X Athena Widget library is not found." >&5
+-echo "$as_me: WARNING: X Athena Widget library is not found." >&2;}
+-      enable_xaw=no
+-    fi  ;; esac
+-fi;
+-case "x$enable_xaw" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_XAW 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_XAW_TRUE=
+-  ENABLE_XAW_FALSE='#'
+-else
+-  ENABLE_XAW_TRUE='#'
+-  ENABLE_XAW_FALSE=
+-fi
+-
+-       if test "x$have_xext" = xyes; then
+-      lib_xext_opt=-lXext
+-    fi
+-    if test "x$have_xprelibs" = xyes; then
+-      lib_xprelibs_opt='-lSM -lICE'
+-    fi
+-    lib_xmu_opt=-lXmu
+-    lib_xt_opt=-lXt
+-    case "$have_xaw" in
+-      "yes")
+-        lib_xaw_opt=-lXaw
+-	;;
+-      "3d")
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define XAW3D 1
+-_ACEOF
+-
+-        lib_xaw_opt=-lXaw3d
+-	;;
+-      "plus")
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define XAWPLUS 1
+-_ACEOF
+-
+-        lib_xaw_opt="-lXpm -lXawPlus"
+-	;;
+-      "next")
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define NEXTAW 1
+-_ACEOF
+-
+-        lib_xaw_opt=-lneXtaw
+-	;;
+-    esac
+-    INTERFACE_SRCS="$INTERFACE_SRCS xaw_c.c xaw_i.c x_trace.c $XDND_SRCS"
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_xaw.\$(so)"
+-   if test "x$have_xext" = xyes; then
+-      a_so_libs="-lXext -lX11"
+-    else
+-      a_so_libs="-lX11"
+-    fi
+-    case "$target" in
+-      *darwin*)
+-	a_so_libs="$a_so_libs -lcc_dynamic"
+-	;;
+-    esac
+-    if test "x$have_xprelibs" = xyes; then
+-      a_so_libs="-lSM -lICE $a_so_libs"
+-    fi
+-    if test "x$have_xaw" = xyes; then
+-      a_so_libs="-lXaw -lXmu -lXt $a_so_libs"
+-    elif test "x$have_xaw" = x3d; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define XAW3D 1
+-_ACEOF
+-
+-      a_so_libs="-lXaw3d -lXmu -lXt $a_so_libs"
+-    fi
+-    a_so_libs="$ldflags_x_opt $a_so_libs"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-if test "x$enable_xaw" = "xdynamic"; then
+-  ENABLE_DYNAMIC_XAW_TRUE=
+-  ENABLE_DYNAMIC_XAW_FALSE='#'
+-else
+-  ENABLE_DYNAMIC_XAW_TRUE='#'
+-  ENABLE_DYNAMIC_XAW_FALSE=
+-fi
+-
+-
+-
+-
+-if false; then
+-  ENABLE_XSKIN_TRUE=
+-  ENABLE_XSKIN_FALSE='#'
+-else
+-  ENABLE_XSKIN_TRUE='#'
+-  ENABLE_XSKIN_FALSE=
+-fi
+-
+-# Check whether --enable-xskin or --disable-xskin was given.
+-if test "${enable_xskin+set}" = set; then
+-  enableval="$enable_xskin"
+-  case "x$enable_xskin" in xyes|xdynamic)  if test "x$with_x" != xyes; then
+-	{ { echo "$as_me:$LINENO: error: xskin: --with-x option must be specified" >&5
+-echo "$as_me: error: xskin: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-    fi
+-   ;; esac
+-fi;
+-case "x$enable_xskin" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_XSKIN 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_XSKIN_TRUE=
+-  ENABLE_XSKIN_FALSE='#'
+-else
+-  ENABLE_XSKIN_TRUE='#'
+-  ENABLE_XSKIN_FALSE=
+-fi
+-
+-   INTERFACE_SRCS="$INTERFACE_SRCS xskin_c.c xskin_i.c xskin_loadBMP.c xskin_spectrum.c"
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_xskin.\$(so)"
+-   i_so_libs="$ldflags_x_opt -lX11"
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_GTK_TRUE=
+-  ENABLE_GTK_FALSE='#'
+-else
+-  ENABLE_GTK_TRUE='#'
+-  ENABLE_GTK_FALSE=
+-fi
+-
+-# Check whether --enable-gtk or --disable-gtk was given.
+-if test "${enable_gtk+set}" = set; then
+-  enableval="$enable_gtk"
+-  case "x$enable_gtk" in xyes|xdynamic)  # 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 <gtk/gtk.h>
+-#include <stdio.h>
+-#include <stdlib.h>
+-
+-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, &micro) != 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
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define HAVE_GTK_2 1
+-_ACEOF
+-
+-  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 <gtk/gtk.h>
+-#include <stdio.h>
+-
+-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=""
+-
+-# Check whether --with-gtk-prefix or --without-gtk-prefix was given.
+-if test "${with_gtk_prefix+set}" = set; then
+-  withval="$with_gtk_prefix"
+-  gtk_config_prefix="$withval"
+-else
+-  gtk_config_prefix=""
+-fi;
+-
+-# Check whether --with-gtk-exec-prefix or --without-gtk-exec-prefix was given.
+-if test "${with_gtk_exec_prefix+set}" = set; then
+-  withval="$with_gtk_exec_prefix"
+-  gtk_config_exec_prefix="$withval"
+-else
+-  gtk_config_exec_prefix=""
+-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;
+-
+-  for module in .
+-  do
+-      case "$module" in
+-         gthread)
+-             gtk_config_args="$gtk_config_args gthread"
+-         ;;
+-      esac
+-  done
+-
+-  if test x$gtk_config_exec_prefix != x ; then
+-     gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
+-     if test x${GTK_CONFIG+set} != xset ; then
+-        GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
+-     fi
+-  fi
+-  if test x$gtk_config_prefix != x ; then
+-     gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
+-     if test x${GTK_CONFIG+set} != xset ; then
+-        GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
+-     fi
+-  fi
+-
+-  # Extract the first word of "gtk-config", so it can be a program name with args.
+-set dummy gtk-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_GTK_CONFIG+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  case $GTK_CONFIG in
+-  [\\/]* | ?:[\\/]*)
+-  ac_cv_path_GTK_CONFIG="$GTK_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_GTK_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_GTK_CONFIG" && ac_cv_path_GTK_CONFIG="no"
+-  ;;
+-esac
+-fi
+-GTK_CONFIG=$ac_cv_path_GTK_CONFIG
+-
+-if test -n "$GTK_CONFIG"; then
+-  echo "$as_me:$LINENO: result: $GTK_CONFIG" >&5
+-echo "${ECHO_T}$GTK_CONFIG" >&6
+-else
+-  echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+-
+-  min_gtk_version=1.1.3
+-  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
+-  no_gtk=""
+-  if test "$GTK_CONFIG" = "no" ; then
+-    no_gtk=yes
+-  else
+-    GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
+-    GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
+-    gtk_config_major_version=`$GTK_CONFIG $gtk_config_args --version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`
+-    gtk_config_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'`
+-    gtk_config_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
+-           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 <gtk/gtk.h>
+-#include <stdio.h>
+-#include <stdlib.h>
+-
+-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, &micro) != 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*** 'gtk-config --version' 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 gtk-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 gtk-config was wrong, set the environment variable GTK_CONFIG\n");
+-      printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n");
+-      printf("*** before re-running configure\n");
+-    }
+-#if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION)
+-  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);
+-    }
+-#endif /* defined (GTK_MAJOR_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 gtk-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 GTK_CONFIG environment to point to the\n");
+-        printf("*** correct copy of gtk-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" >&5
+-echo "${ECHO_T}yes" >&6
+-     :
+-  else
+-     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+-     if test "$GTK_CONFIG" = "no" ; then
+-       echo "*** The gtk-config script installed by GTK could not be found"
+-       echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"
+-       echo "*** your path, or set the GTK_CONFIG environment variable to the"
+-       echo "*** full path to gtk-config."
+-     else
+-       if test -f conf.gtktest ; then
+-        :
+-       else
+-          echo "*** Could not run GTK test program, checking why..."
+-          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 <gtk/gtk.h>
+-#include <stdio.h>
+-
+-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"
+-          echo "***"
+-          echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"
+-          echo "*** came with the system with the command"
+-          echo "***"
+-          echo "***    rpm --erase --nodeps gtk gtk-devel"
+-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 was incorrectly installed"
+-          echo "*** or that you have moved GTK since it was installed. In the latter case, you"
+-          echo "*** may want to edit the gtk-config script: $GTK_CONFIG"
+-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=""
+-     enable_gtk=no
+-  fi
+-
+-
+-  rm -f conf.gtktest
+-
+-  fi
+-
+-
+-  rm -f conf.gtktest
+-  ;; esac
+-fi;
+-case "x$enable_gtk" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_GTK 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_GTK_TRUE=
+-  ENABLE_GTK_FALSE='#'
+-else
+-  ENABLE_GTK_TRUE='#'
+-  ENABLE_GTK_FALSE=
+-fi
+-
+-   LIBS="$LIBS $GTK_LIBS"
+-    for f in $GTK_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-    INTERFACE_SRCS="$INTERFACE_SRCS gtk_c.c gtk_i.c gtk_p.c"
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_gtk.\$(so)"
+-   if test "x$GCC" = xyes; then
+-		for i in $GTK_LIBS; do
+-	    case "x$i" in
+-		x-rdynamic) ;;
+-		*) g_so_libs="$g_so_libs $i" ;;
+-	    esac
+-	done
+-    else
+-	g_so_libs="$GTK_LIBS"
+-    fi
+-    for f in $GTK_CFLAGS; do
+-    case ".$f" in
+-	.-I?*|.-D?*)	CPPFLAGS="$CPPFLAGS $f" ;;
+-	*)		CFLAGS="$CFLAGS $f" ;;
+-    esac
+-done
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_SERVER_TRUE=
+-  ENABLE_SERVER_FALSE='#'
+-else
+-  ENABLE_SERVER_TRUE='#'
+-  ENABLE_SERVER_FALSE=
+-fi
+-
+-# Check whether --enable-server or --disable-server was given.
+-if test "${enable_server+set}" = set; then
+-  enableval="$enable_server"
+-  case "x$enable_server" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_server" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_SERVER 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_SERVER_TRUE=
+-  ENABLE_SERVER_FALSE='#'
+-else
+-  ENABLE_SERVER_TRUE='#'
+-  ENABLE_SERVER_FALSE=
+-fi
+-
+-   INTERFACE_SRCS="$INTERFACE_SRCS server_c.c"
+-
+-for ac_header in sys/soundcard.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking $ac_header usability" >&5
+-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking $ac_header presence" >&5
+-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <$ac_header>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  eval "$as_ac_Header=\$ac_header_preproc"
+-fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+-
+-fi
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+-_ACEOF
+-
+-fi
+-
+-done
+-
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_server.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_ALSASEQ_TRUE=
+-  ENABLE_ALSASEQ_FALSE='#'
+-else
+-  ENABLE_ALSASEQ_TRUE='#'
+-  ENABLE_ALSASEQ_FALSE=
+-fi
+-
+-# Check whether --enable-alsaseq or --disable-alsaseq was given.
+-if test "${enable_alsaseq+set}" = set; then
+-  enableval="$enable_alsaseq"
+-  case "x$enable_alsaseq" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_alsaseq" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_ALSASEQ 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_ALSASEQ_TRUE=
+-  ENABLE_ALSASEQ_FALSE='#'
+-else
+-  ENABLE_ALSASEQ_TRUE='#'
+-  ENABLE_ALSASEQ_FALSE=
+-fi
+-
+-   INTERFACE_SRCS="$INTERFACE_SRCS alsaseq_c.c"
+-    alsa_save_CFLAGS="$CFLAGS"
+-alsa_save_LDFLAGS="$LDFLAGS"
+-alsa_save_LIBS="$LIBS"
+-alsa_found=yes
+-
+-
+-# Check whether --with-alsa-prefix or --without-alsa-prefix was given.
+-if test "${with_alsa_prefix+set}" = set; then
+-  withval="$with_alsa_prefix"
+-  alsa_prefix="$withval"
+-else
+-  alsa_prefix=""
+-fi;
+-
+-
+-# Check whether --with-alsa-inc-prefix or --without-alsa-inc-prefix was given.
+-if test "${with_alsa_inc_prefix+set}" = set; then
+-  withval="$with_alsa_inc_prefix"
+-  alsa_inc_prefix="$withval"
+-else
+-  alsa_inc_prefix=""
+-fi;
+-
+-# Check whether --enable-alsatest or --disable-alsatest was given.
+-if test "${enable_alsatest+set}" = set; then
+-  enableval="$enable_alsatest"
+-  enable_alsatest=no
+-else
+-  enable_alsatest=yes
+-fi;
+-
+-echo "$as_me:$LINENO: checking for ALSA CFLAGS" >&5
+-echo $ECHO_N "checking for ALSA CFLAGS... $ECHO_C" >&6
+-if test "$alsa_inc_prefix" != "" ; then
+-	ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix"
+-	CFLAGS="$CFLAGS -I$alsa_inc_prefix"
+-fi
+-echo "$as_me:$LINENO: result: $ALSA_CFLAGS" >&5
+-echo "${ECHO_T}$ALSA_CFLAGS" >&6
+-
+-echo "$as_me:$LINENO: checking for ALSA LDFLAGS" >&5
+-echo $ECHO_N "checking for ALSA LDFLAGS... $ECHO_C" >&6
+-if test "$alsa_prefix" != "" ; then
+-	ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix"
+-	LDFLAGS="$LDFLAGS $ALSA_LIBS"
+-fi
+-
+-ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread"
+-LIBS=`echo $LIBS | sed 's/-lm//'`
+-LIBS=`echo $LIBS | sed 's/-ldl//'`
+-LIBS=`echo $LIBS | sed 's/-lpthread//'`
+-LIBS=`echo $LIBS | sed 's/  //'`
+-LIBS="$ALSA_LIBS $LIBS"
+-echo "$as_me:$LINENO: result: $ALSA_LIBS" >&5
+-echo "${ECHO_T}$ALSA_LIBS" >&6
+-
+-min_alsa_version=0.1.1
+-echo "$as_me:$LINENO: checking for libasound headers version >= $min_alsa_version" >&5
+-echo $ECHO_N "checking for libasound headers version >= $min_alsa_version... $ECHO_C" >&6
+-no_alsa=""
+-    alsa_min_major_version=`echo $min_alsa_version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`
+-    alsa_min_minor_version=`echo $min_alsa_version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'`
+-    alsa_min_micro_version=`echo $min_alsa_version | \
+-           sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'`
+-
+-
+-
+-
+-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
+-
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <alsa/asoundlib.h>
+-
+-int
+-main ()
+-{
+-
+-/* ensure backward compatibility */
+-#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
+-#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
+-#endif
+-#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
+-#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
+-#endif
+-#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
+-#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
+-#endif
+-
+-#  if(SND_LIB_MAJOR > $alsa_min_major_version)
+-  exit(0);
+-#  else
+-#    if(SND_LIB_MAJOR < $alsa_min_major_version)
+-#       error not present
+-#    endif
+-
+-#   if(SND_LIB_MINOR > $alsa_min_minor_version)
+-  exit(0);
+-#   else
+-#     if(SND_LIB_MINOR < $alsa_min_minor_version)
+-#          error not present
+-#      endif
+-
+-#      if(SND_LIB_SUBMINOR < $alsa_min_micro_version)
+-#        error not present
+-#      endif
+-#    endif
+-#  endif
+-exit(0);
+-
+-  ;
+-  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
+-  echo "$as_me:$LINENO: result: found." >&5
+-echo "${ECHO_T}found." >&6
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-#include <sys/asoundlib.h>
+-
+-int
+-main ()
+-{
+-
+-/* ensure backward compatibility */
+-#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR)
+-#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR
+-#endif
+-#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR)
+-#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR
+-#endif
+-#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR)
+-#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR
+-#endif
+-
+-#  if(SND_LIB_MAJOR > $alsa_min_major_version)
+-  exit(0);
+-#  else
+-#    if(SND_LIB_MAJOR < $alsa_min_major_version)
+-#       error not present
+-#    endif
+-
+-#   if(SND_LIB_MINOR > $alsa_min_minor_version)
+-  exit(0);
+-#   else
+-#     if(SND_LIB_MINOR < $alsa_min_minor_version)
+-#          error not present
+-#      endif
+-
+-#      if(SND_LIB_SUBMINOR < $alsa_min_micro_version)
+-#        error not present
+-#      endif
+-#    endif
+-#  endif
+-exit(0);
+-
+-  ;
+-  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
+-  echo "$as_me:$LINENO: result: found." >&5
+-echo "${ECHO_T}found." >&6
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-echo "$as_me:$LINENO: result: not present." >&5
+-echo "${ECHO_T}not present." >&6
+-   echo "$as_me:$LINENO: result: libasound was not found anywhere." >&5
+-echo "${ECHO_T}libasound was not found anywhere." >&6
+-   alsa_found=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-   echo "$as_me:$LINENO: result: Sufficiently new version of libasound not found." >&5
+-echo "${ECHO_T}Sufficiently new version of libasound not found." >&6
+-
+-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
+-
+-
+-
+-echo "$as_me:$LINENO: checking for snd_ctl_open in -lasound" >&5
+-echo $ECHO_N "checking for snd_ctl_open in -lasound... $ECHO_C" >&6
+-if test "${ac_cv_lib_asound_snd_ctl_open+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lasound  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char snd_ctl_open ();
+-int
+-main ()
+-{
+-snd_ctl_open ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_asound_snd_ctl_open=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_asound_snd_ctl_open=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_asound_snd_ctl_open" >&5
+-echo "${ECHO_T}$ac_cv_lib_asound_snd_ctl_open" >&6
+-if test $ac_cv_lib_asound_snd_ctl_open = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define HAVE_LIBASOUND 1
+-_ACEOF
+-
+-  LIBS="-lasound $LIBS"
+-
+-else
+-  echo "$as_me:$LINENO: result: No linkable libasound was found." >&5
+-echo "${ECHO_T}No linkable libasound was found." >&6
+-   alsa_found=no
+-
+-fi
+-
+-
+-if test "x$alsa_found" = "xyes" ; then
+-   :
+-   LIBS=`echo $LIBS | sed 's/-lasound//g'`
+-   LIBS=`echo $LIBS | sed 's/  //'`
+-   LIBS="-lasound $LIBS"
+-else
+-   :
+-   CFLAGS="$alsa_save_CFLAGS"
+-   LDFLAGS="$alsa_save_LDFLAGS"
+-   LIBS="$alsa_save_LIBS"
+-   ALSA_CFLAGS=""
+-   ALSA_LIBS=""
+-fi
+-
+-
+-
+-
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_alsaseq.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_WINSYN_TRUE=
+-  ENABLE_WINSYN_FALSE='#'
+-else
+-  ENABLE_WINSYN_TRUE='#'
+-  ENABLE_WINSYN_FALSE=
+-fi
+-
+-# Check whether --enable-winsyn or --disable-winsyn was given.
+-if test "${enable_winsyn+set}" = set; then
+-  enableval="$enable_winsyn"
+-  case "x$enable_winsyn" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_winsyn" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_WINSYN 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_WINSYN_TRUE=
+-  ENABLE_WINSYN_FALSE='#'
+-else
+-  ENABLE_WINSYN_TRUE='#'
+-  ENABLE_WINSYN_FALSE=
+-fi
+-
+-   WINSYN="yes"; INTERFACE_SRCS="$INTERFACE_SRCS winsyn_c.c rtsyn_common.c rtsyn_winmm.c"
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_winsyn.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_PORTMIDISYN_TRUE=
+-  ENABLE_PORTMIDISYN_FALSE='#'
+-else
+-  ENABLE_PORTMIDISYN_TRUE='#'
+-  ENABLE_PORTMIDISYN_FALSE=
+-fi
+-
+-# Check whether --enable-portmidisyn or --disable-portmidisyn was given.
+-if test "${enable_portmidisyn+set}" = set; then
+-  enableval="$enable_portmidisyn"
+-  case "x$enable_portmidisyn" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_portmidisyn" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_PORTMIDISYN 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_PORTMIDISYN_TRUE=
+-  ENABLE_PORTMIDISYN_FALSE='#'
+-else
+-  ENABLE_PORTMIDISYN_TRUE='#'
+-  ENABLE_PORTMIDISYN_FALSE=
+-fi
+-
+-   INTERFACE_SRCS="$INTERFACE_SRCS portmidisyn_c.c rtsyn_common.c rtsyn_portmidi.c"
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_portmidisyn.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_NPSYN_TRUE=
+-  ENABLE_NPSYN_FALSE='#'
+-else
+-  ENABLE_NPSYN_TRUE='#'
+-  ENABLE_NPSYN_FALSE=
+-fi
+-
+-# Check whether --enable-npsyn or --disable-npsyn was given.
+-if test "${enable_npsyn+set}" = set; then
+-  enableval="$enable_npsyn"
+-  case "x$enable_npsyn" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_npsyn" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_NPSYN 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_NPSYN_TRUE=
+-  ENABLE_NPSYN_FALSE='#'
+-else
+-  ENABLE_NPSYN_TRUE='#'
+-  ENABLE_NPSYN_FALSE=
+-fi
+-
+-   NPSYN="yes"; INTERFACE_SRCS="$INTERFACE_SRCS npsyn_c.c rtsyn_common.c rtsyn_npipe.c"
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_npsyn.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_W32G_SYN_TRUE=
+-  ENABLE_W32G_SYN_FALSE='#'
+-else
+-  ENABLE_W32G_SYN_TRUE='#'
+-  ENABLE_W32G_SYN_FALSE=
+-fi
+-
+-# Check whether --enable-winsyng or --disable-winsyng was given.
+-if test "${enable_winsyng+set}" = set; then
+-  enableval="$enable_winsyng"
+-  case "x$enable_winsyng" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_winsyng" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_W32G_SYN 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_W32G_SYN_TRUE=
+-  ENABLE_W32G_SYN_FALSE='#'
+-else
+-  ENABLE_W32G_SYN_TRUE='#'
+-  ENABLE_W32G_SYN_FALSE=
+-fi
+-
+-
+-  W32G_GUI=yes
+-  if test "x$VCPP" = xyes || test "x$BORLANDC" = xyes || test "x$WATCOM_C" = xyes || test "x$DMC" = xyes || test "x$POCC" = xyes; then
+-    INTERFACE_SRCS="$INTERFACE_SRCS w32g_ini.c w32g_pref.c w32g_syn.c w32g_utl.c winsyn_c.c rtsyn_common.c rtsyn_winmm.c"
+-    lib_w32gui_opt='gdi32.lib comctl32.lib comdlg32.lib ole32.lib'
+-    lib_user32_opt='user32.lib'
+-    if test "x$VCPP" = xyes; then
+-	  VCPP_LDFLAGS="$VCPP_LDFLAGS -subsystem:windows "
+-	fi
+-	if test "x$BORLANDC" = xyes; then
+-	  BORLANDC_START='C0W32.OBJ'
+-	  CFLAGS="$CFLAGS -tW"
+-	  lib_w32gui_opt="-aa $lib_w32gui_opt"
+-	fi
+-	if test "x$WATCOM_C" = xyes; then
+-	  CFLAGS="$CFLAGS -bw"
+-	  WATCOM_LDFLAGS="$WATCOM_LDFLAGS SYS nt_win"
+-	fi
+-	if test "x$DMC" = xyes; then
+-	  DLLFLAG="-WA"
+-	  lib_w32gui_opt="$lib_w32gui_opt -L/exet:nt/su:windows:4.0"
+-	fi
+-    if test "x$POCC" = xyes; then
+-	  POCC_LDFLAGS="$POCC_LDFLAGS -subsystem:windows "
+-    fi
+-  else
+-  	lib_w32gui_opt='-lgdi32 -lcomctl32 -lcomdlg32 -lole32'
+-    lib_user32_opt='-luser32'
+-    LDFLAGS="-mwindows $LDFLAGS"
+-    INTERFACE_SRCS="$INTERFACE_SRCS w32g_ini.c w32g_pref.c w32g_syn_escaped.c w32g_utl.c winsyn_c.c rtsyn_common.c rtsyn_winmm.c"
+-  fi
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_winsyng.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_W32GUI_TRUE=
+-  ENABLE_W32GUI_FALSE='#'
+-else
+-  ENABLE_W32GUI_TRUE='#'
+-  ENABLE_W32GUI_FALSE=
+-fi
+-
+-# Check whether --enable-w32gui or --disable-w32gui was given.
+-if test "${enable_w32gui+set}" = set; then
+-  enableval="$enable_w32gui"
+-  case "x$enable_w32gui" in xyes|xdynamic)  ;; esac
+-fi;
+-case "x$enable_w32gui" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_W32GUI 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_W32GUI_TRUE=
+-  ENABLE_W32GUI_FALSE='#'
+-else
+-  ENABLE_W32GUI_TRUE='#'
+-  ENABLE_W32GUI_FALSE=
+-fi
+-
+-
+-  W32G_GUI=yes
+-  if test "x$VCPP" = xyes || test "x$BORLANDC" = xyes || test "x$WATCOM_C" = xyes || test "x$DMC" = xyes || test "x$POCC" = xyes; then
+- 	INTERFACE_SRCS="$INTERFACE_SRCS w32g_c.c w32g_ini.c w32g_i.c w32g_playlist.c w32g_utl.c w32g_pref.c w32g_subwin.c w32g_subwin2.c w32g_subwin3.c w32g_ut2.c w32g_dib.c  wrdt_w32g.c w32g_mag.c"
+-    lib_w32gui_opt='gdi32.lib comctl32.lib comdlg32.lib ole32.lib'
+-    lib_user32_opt='user32.lib'
+-    if test "x$VCPP" = xyes; then
+-	  VCPP_LDFLAGS="$VCPP_LDFLAGS -subsystem:windows "
+-	fi
+-	if test "x$BORLANDC" = xyes; then
+-	  BORLANDC_START='C0W32.OBJ'
+-	  CFLAGS="$CFLAGS -tW"
+-	  lib_w32gui_opt="-aa $lib_w32gui_opt"
+-	fi
+-	if test "x$WATCOM_C" = xyes; then
+-	  CFLAGS="$CFLAGS -bw"
+-	  WATCOM_LDFLAGS="$WATCOM_LDFLAGS SYS nt_win"
+-	fi
+-	if test "x$DMC" = xyes; then
+-	  lib_w32gui_opt="$lib_w32gui_opt -L/SU:window"
+-	  DLLFLAG="-WA"
+-	fi
+-    if test "x$POCC" = xyes; then
+-	  POCC_LDFLAGS="$POCC_LDFLAGS -subsystem:windows "
+-    fi
+-  else
+-    lib_w32gui_opt='-lgdi32 -lcomctl32 -lcomdlg32 -lole32'
+-    lib_user32_opt='-luser32'
+-    LDFLAGS="-mwindows $LDFLAGS"
+-    INTERFACE_SRCS="$INTERFACE_SRCS w32g_c.c w32g_ini.c w32g_i.c w32g_playlist.c w32g_utl.c w32g_pref.c w32g_subwin_escaped.c w32g_subwin2.c w32g_subwin3.c w32g_ut2.c w32g_dib.c  wrdt_w32g.c w32g_mag.c"
+-  fi
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_w32gui.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-
+-
+-if false; then
+-  ENABLE_PLUGIN_TRUE=
+-  ENABLE_PLUGIN_FALSE='#'
+-else
+-  ENABLE_PLUGIN_TRUE='#'
+-  ENABLE_PLUGIN_FALSE=
+-fi
+-
+-# Check whether --enable-ump or --disable-ump was given.
+-if test "${enable_ump+set}" = set; then
+-  enableval="$enable_ump"
+-  case "x$enable_ump" in xyes|xdynamic)  if test ! -d ump; then
+-	{ { echo "$as_me:$LINENO: error: UMP Package is not exists.  Can't configure it." >&5
+-echo "$as_me: error: UMP Package is not exists.  Can't configure it." >&2;}
+-   { (exit 1); exit 1; }; }
+-    fi
+-    if test "${ac_cv_header_X11_xpm_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for X11/xpm.h" >&5
+-echo $ECHO_N "checking for X11/xpm.h... $ECHO_C" >&6
+-if test "${ac_cv_header_X11_xpm_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_X11_xpm_h" >&5
+-echo "${ECHO_T}$ac_cv_header_X11_xpm_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking X11/xpm.h usability" >&5
+-echo $ECHO_N "checking X11/xpm.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <X11/xpm.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking X11/xpm.h presence" >&5
+-echo $ECHO_N "checking X11/xpm.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <X11/xpm.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: X11/xpm.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: X11/xpm.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: X11/xpm.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: X11/xpm.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: X11/xpm.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: X11/xpm.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: X11/xpm.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: X11/xpm.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: X11/xpm.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for X11/xpm.h" >&5
+-echo $ECHO_N "checking for X11/xpm.h... $ECHO_C" >&6
+-if test "${ac_cv_header_X11_xpm_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_X11_xpm_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_X11_xpm_h" >&5
+-echo "${ECHO_T}$ac_cv_header_X11_xpm_h" >&6
+-
+-fi
+-if test $ac_cv_header_X11_xpm_h = yes; then
+-  :
+-else
+-  { { echo "$as_me:$LINENO: error: UMP Package needs xpm.h, but could not find it." >&5
+-echo "$as_me: error: UMP Package needs xpm.h, but could not find it." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-
+-    echo "$as_me:$LINENO: checking for XpmCreatePixmapFromData in -lXpm" >&5
+-echo $ECHO_N "checking for XpmCreatePixmapFromData in -lXpm... $ECHO_C" >&6
+-if test "${ac_cv_lib_Xpm_XpmCreatePixmapFromData+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lXpm  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char XpmCreatePixmapFromData ();
+-int
+-main ()
+-{
+-XpmCreatePixmapFromData ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Xpm_XpmCreatePixmapFromData=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Xpm_XpmCreatePixmapFromData=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&5
+-echo "${ECHO_T}$ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&6
+-if test $ac_cv_lib_Xpm_XpmCreatePixmapFromData = yes; then
+-  :
+-else
+-  { { echo "$as_me:$LINENO: error: UMP Package needs libXpm.a, but could not find it." >&5
+-echo "$as_me: error: UMP Package needs libXpm.a, but could not find it." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-    if test "x$have_xext" = xyes; then
+-      lib_xext_opt=-lXext
+-    fi
+-    if test "x$have_xprelibs" = xyes; then
+-      lib_xprelibs_opt='-lSM -lICE'
+-    fi
+-    lib_xmu_opt=-lXmu
+-    lib_xt_opt=-lXt
+-   ;; esac
+-fi;
+-case "x$enable_ump" in
+-xyes)
+-  cat >> confdefs.h <<EOF
+-#define IA_PLUGIN 1
+-EOF
+-
+-
+-
+-if true; then
+-  ENABLE_PLUGIN_TRUE=
+-  ENABLE_PLUGIN_FALSE='#'
+-else
+-  ENABLE_PLUGIN_TRUE='#'
+-  ENABLE_PLUGIN_FALSE=
+-fi
+-
+-
+-  ;;
+-xdynamic)
+-  dynamic_targets="$dynamic_targets if_ump.\$(so)"
+-
+-  ;;
+-*)
+-
+-  ;;
+-esac
+-
+-
+-
+-# Check whether --enable-windrv or --disable-windrv was given.
+-if test "${enable_windrv+set}" = set; then
+-  enableval="$enable_windrv"
+-   if test "$enableval" = "yes"; then
+-      if test "x$VCPP" != "xyes" && test "x$MINGWGCC" != "xyes" && test "x$BORLANDC" != "xyes" && test "x$WATCOM_C" != "xyes" && test "x$DMC" != "xyes" && test "x$POCC" != "xyes"; then
+-	{ { echo "$as_me:$LINENO: error: windrv: Only Support VC++ or Mingw or Borland C or Open Watcom PellesC and Digital Mars" >&5
+-echo "$as_me: error: windrv: Only Support VC++ or Mingw or Borland C or Open Watcom PellesC and Digital Mars" >&2;}
+-   { (exit 1); exit 1; }; }
+-	  elif test "x$WINSYN" != "xyes"; then
+-	{ { echo "$as_me:$LINENO: error: windrv: Driver must have winsyn interface" >&5
+-echo "$as_me: error: windrv: Driver must have winsyn interface" >&2;}
+-   { (exit 1); exit 1; }; }
+-	  else
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define WINDRV 1
+-_ACEOF
+-
+-    WINDRV=yes
+-    if test "x$WATCOM_C" = "xyes"; then DLLFLAG="-bd" ;fi
+-    if test "x$DMC" = "xyes"; then DLLFLAG="-WD" ;fi
+-    CFLAGS="$CFLAGS -DANOTHER_MAIN "
+-      fi
+-    fi
+-fi;
+-CFLAGS="$CFLAGS $DLLFLAG "
+-
+-# Check whether --enable-offix or --disable-offix was given.
+-if test "${enable_offix+set}" = set; then
+-  enableval="$enable_offix"
+-   if test "$enableval" = "yes"; then
+-      KEEPCPPFLAGS=$CPPFLAGS
+-      KEEPLIBS=$LIBS
+-      KEEPLDFLAGS=$LDFLAGS
+-      CPPFLAGS="$CPPFLAGS $offix_include_dir"
+-      LDFLAGS="$LDFLAGS $offix_lib_dir"
+-      LIBS="$LIBS $lib_xmu_opt $lib_xt_opt $lib_xprelibs_opt $lib_xext_opt -lX11"
+-      echo "$as_me:$LINENO: checking for DndInitialize in -lDnd" >&5
+-echo $ECHO_N "checking for DndInitialize in -lDnd... $ECHO_C" >&6
+-if test "${ac_cv_lib_Dnd_DndInitialize+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lDnd  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char DndInitialize ();
+-int
+-main ()
+-{
+-DndInitialize ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_Dnd_DndInitialize=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_Dnd_DndInitialize=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_Dnd_DndInitialize" >&5
+-echo "${ECHO_T}$ac_cv_lib_Dnd_DndInitialize" >&6
+-if test $ac_cv_lib_Dnd_DndInitialize = yes; then
+-
+-	LIBS=$KEEPLIBS
+-	lib_offix_opt="-lDnd"
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define OFFIX 1
+-_ACEOF
+-
+-
+-else
+-   LDFLAGS=$KEEPLDFLAGS
+-	CPPFLAGS=$KEEPCPPFLAGS
+-	LIBS=$KEEPLIBS
+-
+-fi
+-
+-    fi
+-
+-fi;
+-
+-# Check whether --enable-network or --disable-network was given.
+-if test "${enable_network+set}" = set; then
+-  enableval="$enable_network"
+-   if test "$enableval" = "yes"; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define SUPPORT_SOCKET 1
+-_ACEOF
+-
+-    fi
+-fi;
+-
+-
+-if test "x$enable_network" = "xyes"; then
+-  ENABLE_NETWORK_TRUE=
+-  ENABLE_NETWORK_FALSE='#'
+-else
+-  ENABLE_NETWORK_TRUE='#'
+-  ENABLE_NETWORK_FALSE=
+-fi
+-
+-
+-# Check whether --enable-spectrogram or --disable-spectrogram was given.
+-if test "${enable_spectrogram+set}" = set; then
+-  enableval="$enable_spectrogram"
+-   if test "$enableval" = "yes"; then
+-      if test "x$with_x" != xyes; then
+-	{ { echo "$as_me:$LINENO: error: spectrogram: --with-x option must be specified" >&5
+-echo "$as_me: error: spectrogram: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-      fi
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define SUPPORT_SOUNDSPEC 1
+-_ACEOF
+-
+-    fi
+-fi;
+-
+-
+-if test "x$enable_spectrogram" = "xyes"; then
+-  ENABLE_SOUND_SPEC_TRUE=
+-  ENABLE_SOUND_SPEC_FALSE='#'
+-else
+-  ENABLE_SOUND_SPEC_TRUE='#'
+-  ENABLE_SOUND_SPEC_FALSE=
+-fi
+-
+-
+-# Check whether --enable-spline or --disable-spline was given.
+-if test "${enable_spline+set}" = set; then
+-  enableval="$enable_spline"
+-   case "x$enableval" in
+-      xlinear)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEFAULT_RESAMPLATION resample_linear
+-_ACEOF
+-
+-	;;
+-      xcubic)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEFAULT_RESAMPLATION resample_cspline
+-_ACEOF
+-
+-	;;
+-      xlagrange)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEFAULT_RESAMPLATION resample_lagrange
+-_ACEOF
+-
+-	;;
+-      xnewton)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEFAULT_RESAMPLATION resample_newton
+-_ACEOF
+-
+-	;;
+-      xgauss)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEFAULT_RESAMPLATION resample_gauss
+-_ACEOF
+-
+-	;;
+-      xno)
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define DEFAULT_RESAMPLATION resample_none
+-_ACEOF
+-
+-	;;
+-      *)
+-	{ { echo "$as_me:$LINENO: error: Invalid method of --enable-spline" >&5
+-echo "$as_me: error: Invalid method of --enable-spline" >&2;}
+-   { (exit 1); exit 1; }; }
+-	;;
+-    esac
+-fi;
+-
+-# Check whether --enable-wrd or --disable-wrd was given.
+-if test "${enable_wrd+set}" = set; then
+-  enableval="$enable_wrd"
+-   if test "$enableval" = "yes"; then
+-      if test "x$with_x" != xyes; then
+-	{ { echo "$as_me:$LINENO: error: wrd: --with-x option must be specified" >&5
+-echo "$as_me: error: wrd: --with-x option must be specified" >&2;}
+-   { (exit 1); exit 1; }; }
+-      fi
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define WRDT_X 1
+-_ACEOF
+-
+-      enable_sherry_wrd=yes
+-      echo "$as_me:$LINENO: checking for zlibVersion in -lz" >&5
+-echo $ECHO_N "checking for zlibVersion in -lz... $ECHO_C" >&6
+-if test "${ac_cv_lib_z_zlibVersion+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lz  $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char zlibVersion ();
+-int
+-main ()
+-{
+-zlibVersion ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_z_zlibVersion=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_z_zlibVersion=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_z_zlibVersion" >&5
+-echo "${ECHO_T}$ac_cv_lib_z_zlibVersion" >&6
+-if test $ac_cv_lib_z_zlibVersion = yes; then
+-  :
+-else
+-  enable_sherry_wrd=no
+-fi
+-
+-      if test "${ac_cv_header_png_h+set}" = set; then
+-  echo "$as_me:$LINENO: checking for png.h" >&5
+-echo $ECHO_N "checking for png.h... $ECHO_C" >&6
+-if test "${ac_cv_header_png_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_png_h" >&5
+-echo "${ECHO_T}$ac_cv_header_png_h" >&6
+-else
+-  # Is the header compilable?
+-echo "$as_me:$LINENO: checking png.h usability" >&5
+-echo $ECHO_N "checking png.h usability... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_includes_default
+-#include <png.h>
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_header_compiler=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_header_compiler=no
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
+-
+-# Is the header present?
+-echo "$as_me:$LINENO: checking png.h presence" >&5
+-echo $ECHO_N "checking png.h presence... $ECHO_C" >&6
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-#include <png.h>
+-_ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } >/dev/null; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-  ac_header_preproc=no
+-fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
+-
+-# So?  What about this header?
+-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
+-  yes:no: )
+-    { echo "$as_me:$LINENO: WARNING: png.h: accepted by the compiler, rejected by the preprocessor!" >&5
+-echo "$as_me: WARNING: png.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: png.h: proceeding with the compiler's result" >&5
+-echo "$as_me: WARNING: png.h: proceeding with the compiler's result" >&2;}
+-    ac_header_preproc=yes
+-    ;;
+-  no:yes:* )
+-    { echo "$as_me:$LINENO: WARNING: png.h: present but cannot be compiled" >&5
+-echo "$as_me: WARNING: png.h: present but cannot be compiled" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: png.h:     check for missing prerequisite headers?" >&5
+-echo "$as_me: WARNING: png.h:     check for missing prerequisite headers?" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: png.h: see the Autoconf documentation" >&5
+-echo "$as_me: WARNING: png.h: see the Autoconf documentation" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: png.h:     section \"Present But Cannot Be Compiled\"" >&5
+-echo "$as_me: WARNING: png.h:     section \"Present But Cannot Be Compiled\"" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: png.h: proceeding with the preprocessor's result" >&5
+-echo "$as_me: WARNING: png.h: proceeding with the preprocessor's result" >&2;}
+-    { echo "$as_me:$LINENO: WARNING: png.h: in the future, the compiler will take precedence" >&5
+-echo "$as_me: WARNING: png.h: in the future, the compiler will take precedence" >&2;}
+-    (
+-      cat <<\_ASBOX
+-## ------------------------------- ##
+-## Report this to root at mput.dip.jp ##
+-## ------------------------------- ##
+-_ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
+-    ;;
+-esac
+-echo "$as_me:$LINENO: checking for png.h" >&5
+-echo $ECHO_N "checking for png.h... $ECHO_C" >&6
+-if test "${ac_cv_header_png_h+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_cv_header_png_h=$ac_header_preproc
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_header_png_h" >&5
+-echo "${ECHO_T}$ac_cv_header_png_h" >&6
+-
+-fi
+-if test $ac_cv_header_png_h = yes; then
+-  :
+-else
+-  enable_sherry_wrd=no
+-fi
+-
+-
+-      echo "$as_me:$LINENO: checking for png_init_io in -lpng" >&5
+-echo $ECHO_N "checking for png_init_io in -lpng... $ECHO_C" >&6
+-if test "${ac_cv_lib_png_png_init_io+set}" = set; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+-else
+-  ac_check_lib_save_LIBS=$LIBS
+-LIBS="-lpng -lz $LIBS"
+-cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-
+-/* Override any gcc2 internal prototype to avoid an error.  */
+-#ifdef __cplusplus
+-extern "C"
+-#endif
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+-char png_init_io ();
+-int
+-main ()
+-{
+-png_init_io ();
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
+-  ac_status=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; }; then
+-  ac_cv_lib_png_png_init_io=yes
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-ac_cv_lib_png_png_init_io=no
+-fi
+-rm -f conftest.err conftest.$ac_objext \
+-      conftest$ac_exeext conftest.$ac_ext
+-LIBS=$ac_check_lib_save_LIBS
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_lib_png_png_init_io" >&5
+-echo "${ECHO_T}$ac_cv_lib_png_png_init_io" >&6
+-if test $ac_cv_lib_png_png_init_io = yes; then
+-  :
+-else
+-  enable_sherry_wrd=no
+-fi
+-
+-      if test "$enable_sherry_wrd" = yes; then
+-
+-cat >>confdefs.h <<\_ACEOF
+-#define ENABLE_SHERRY 1
+-_ACEOF
+-
+-	lib_zip_opt=-lz
+-	lib_png_opt=-lpng
+-      else
+-	 { echo "$as_me:$LINENO: WARNING: Sherry WRD is disabled: png.h, libpng.a, libz.a are required" >&5
+-echo "$as_me: WARNING: Sherry WRD is disabled: png.h, libpng.a, libz.a are required" >&2;}
+-      fi
+-      if test "x$have_xext" = xyes; then
+-	lib_xext_opt=-lXext
+-      fi
+-    fi
+-fi;
+-
+-
+-
+-
+-#
+-# Finish up
+-#
+-
+-
+-
+-if test "x$enable_wrd" = "xyes"; then
+-  ENABLE_WRD_TRUE=
+-  ENABLE_WRD_FALSE='#'
+-else
+-  ENABLE_WRD_TRUE='#'
+-  ENABLE_WRD_FALSE=
+-fi
+-
+-
+-
+-if test "x$W32G_GUI" = xyes; then
+-  W32G_GUI_TRUE=
+-  W32G_GUI_FALSE='#'
+-else
+-  W32G_GUI_TRUE='#'
+-  W32G_GUI_FALSE=
+-fi
+-
+-
+-
+-if test "x$WINDRV" = xyes; then
+-  WINDRV_TRUE=
+-  WINDRV_FALSE='#'
+-else
+-  WINDRV_TRUE='#'
+-  WINDRV_FALSE=
+-fi
+-
+-
+-
+-if test "x$MSYS" = xyes; then
+-  MSYS_TRUE=
+-  MSYS_FALSE='#'
+-else
+-  MSYS_TRUE='#'
+-  MSYS_FALSE=
+-fi
+-
+-
+-
+-if test "x$VCPP" = xyes; then
+-  VCPP_TRUE=
+-  VCPP_FALSE='#'
+-else
+-  VCPP_TRUE='#'
+-  VCPP_FALSE=
+-fi
+-
+-
+-
+-if test "x$POCC" = xyes; then
+-  POCC_TRUE=
+-  POCC_FALSE='#'
+-else
+-  POCC_TRUE='#'
+-  POCC_FALSE=
+-fi
+-
+-
+-
+-if test "x$BORLANDC" = xyes; then
+-  BORLANDC_TRUE=
+-  BORLANDC_FALSE='#'
+-else
+-  BORLANDC_TRUE='#'
+-  BORLANDC_FALSE=
+-fi
+-
+-
+-
+-if test "x$WATCOM_C" = xyes; then
+-  WATCOM_C_TRUE=
+-  WATCOM_C_FALSE='#'
+-else
+-  WATCOM_C_TRUE='#'
+-  WATCOM_C_FALSE=
+-fi
+-
+-
+-
+-if test "x$DMC" = xyes; then
+-  DMC_TRUE=
+-  DMC_FALSE='#'
+-else
+-  DMC_TRUE='#'
+-  DMC_FALSE=
+-fi
+-
+-
+-
+-if test "x$MINGWGCC" = xyes; then
+-  MINGWGCC_TRUE=
+-  MINGWGCC_FALSE='#'
+-else
+-  MINGWGCC_TRUE='#'
+-  MINGWGCC_FALSE=
+-fi
+-
+-
+-
+-
+-if test "x$W32READDIR" = "xyes"; then
+-  W32READDIR_TRUE=
+-  W32READDIR_FALSE='#'
+-else
+-  W32READDIR_TRUE='#'
+-  W32READDIR_FALSE=
+-fi
+-
+-
+-rm -f wordtmp >/dev/null 2>&1
+-val=''
+-for f in $LDFLAGS; do
+-  if $contains "^$f"'$' wordtmp >/dev/null 2>&1; then
+-  :
+-else
+-  echo $f >>wordtmp; val="$val $f"
+-fi
+-
+-done
+-LDFLAGS="$val"
+-rm -f wordtmp >/dev/null 2>&1
+-
+-rm -f wordtmp >/dev/null 2>&1
+-val=''
+-for f in $SHLDFLAGS; do
+-  if $contains "^$f"'$' wordtmp >/dev/null 2>&1; then
+-  :
+-else
+-  echo $f >>wordtmp; val="$val $f"
+-fi
+-
+-done
+-SHLDFLAGS="$val"
+-rm -f wordtmp >/dev/null 2>&1
+-
+-rm -f wordtmp >/dev/null 2>&1
+-val=''
+-for f in $EXTRACFLAGS $CFLAGS; do
+-  if $contains "^$f"'$' wordtmp >/dev/null 2>&1; then
+-  :
+-else
+-  echo $f >>wordtmp; val="$val $f"
+-fi
+-
+-done
+-CFLAGS="$val"
+-rm -f wordtmp >/dev/null 2>&1
+-
+-rm -f wordtmp >/dev/null 2>&1
+-val=''
+-for f in $CPPFLAGS $EXTRADEFS; do
+-  if $contains "^$f"'$' wordtmp >/dev/null 2>&1; then
+-  :
+-else
+-  echo $f >>wordtmp; val="$val $f"
+-fi
+-
+-done
+-CPPFLAGS="$val"
+-rm -f wordtmp >/dev/null 2>&1
+-
+-
+-if test "x$oss_device" != x; then
+-
+-cat >>confdefs.h <<_ACEOF
+-#define OSS_DEVICE "$oss_device"
+-_ACEOF
+-
+-fi
+-
+-if test "x$TIMIDITY_OUTPUT_ID" != x; then
+-
+-cat >>confdefs.h <<_ACEOF
+-#define TIMIDITY_OUTPUT_ID "$TIMIDITY_OUTPUT_ID"
+-_ACEOF
+-
+-fi
+-
+-if test "x$with_x" = xyes; then
+-    LIBS=`echo $LIBS | sed "s/-lX11/$lib_offix_opt $lib_xm_opt $lib_xaw_opt $lib_xmu_opt $lib_xt_opt $lib_xprelibs_opt $lib_xext_opt -lX11/"`
+-fi
+-LIBS="$LIBS $lib_dl_opt $lib_png_opt $lib_zip_opt $lib_user32_opt $lib_w32gui_opt $EXTRALIBS"
+-SHLD="$SHLD $SHLDFLAGS"
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-                                                                                                                                                                          ac_config_files="$ac_config_files Makefile autoconf/Makefile common.makefile configs/Makefile doc/Makefile doc/C/Makefile doc/ja_JP.eucJP/Makefile interface/Makefile interface/motif_bitmaps/Makefile interface/bitmaps/Makefile interface/pixmaps/Makefile libarc/Makefile libunimod/Makefile timidity/Makefile windrv/Makefile utils/Makefile script/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
+-
+-DEFS=-DHAVE_CONFIG_H
+-
+-ac_libobjs=
+-ac_ltlibobjs=
+-for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+-  # 1. Remove the extension, and $U if already installed.
+-  ac_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
+-
+-
+-if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${XAW_INSTALL_RESOURCE_FILES_TRUE}" && test -z "${XAW_INSTALL_RESOURCE_FILES_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"XAW_INSTALL_RESOURCE_FILES\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"XAW_INSTALL_RESOURCE_FILES\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"AMDEP\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${NEEDGETOPT_TRUE}" && test -z "${NEEDGETOPT_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"NEEDGETOPT\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"NEEDGETOPT\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${NEEDDLOPEN_TRUE}" && test -z "${NEEDDLOPEN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"NEEDDLOPEN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"NEEDDLOPEN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_XDND_TRUE}" && test -z "${ENABLE_XDND_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_XDND\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_XDND\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_NCURSES_TRUE}" && test -z "${ENABLE_NCURSES_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_NCURSES\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_NCURSES\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_NCURSES_TRUE}" && test -z "${ENABLE_NCURSES_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_NCURSES\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_NCURSES\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_SLANG_TRUE}" && test -z "${ENABLE_SLANG_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_SLANG\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_SLANG\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_SLANG_TRUE}" && test -z "${ENABLE_SLANG_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_SLANG\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_SLANG\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_MOTIF_TRUE}" && test -z "${ENABLE_MOTIF_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_MOTIF\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_MOTIF\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_MOTIF_TRUE}" && test -z "${ENABLE_MOTIF_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_MOTIF\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_MOTIF\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_TCLTK_TRUE}" && test -z "${ENABLE_TCLTK_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_TCLTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_TCLTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_TCLTK_TRUE}" && test -z "${ENABLE_TCLTK_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_TCLTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_TCLTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_DYNAMIC_TCLTK_TRUE}" && test -z "${ENABLE_DYNAMIC_TCLTK_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_DYNAMIC_TCLTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_DYNAMIC_TCLTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_EMACS_TRUE}" && test -z "${ENABLE_EMACS_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_EMACS\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_EMACS\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_EMACS_TRUE}" && test -z "${ENABLE_EMACS_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_EMACS\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_EMACS\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_VT100_TRUE}" && test -z "${ENABLE_VT100_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_VT100\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_VT100\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_VT100_TRUE}" && test -z "${ENABLE_VT100_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_VT100\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_VT100\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_XAW_TRUE}" && test -z "${ENABLE_XAW_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_XAW\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_XAW\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_XAW_TRUE}" && test -z "${ENABLE_XAW_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_XAW\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_XAW\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_DYNAMIC_XAW_TRUE}" && test -z "${ENABLE_DYNAMIC_XAW_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_DYNAMIC_XAW\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_DYNAMIC_XAW\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_XSKIN_TRUE}" && test -z "${ENABLE_XSKIN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_XSKIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_XSKIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_XSKIN_TRUE}" && test -z "${ENABLE_XSKIN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_XSKIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_XSKIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_GTK_TRUE}" && test -z "${ENABLE_GTK_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_GTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_GTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_GTK_TRUE}" && test -z "${ENABLE_GTK_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_GTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_GTK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_SERVER_TRUE}" && test -z "${ENABLE_SERVER_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_SERVER\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_SERVER\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_SERVER_TRUE}" && test -z "${ENABLE_SERVER_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_SERVER\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_SERVER\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_ALSASEQ_TRUE}" && test -z "${ENABLE_ALSASEQ_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_ALSASEQ\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_ALSASEQ\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_ALSASEQ_TRUE}" && test -z "${ENABLE_ALSASEQ_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_ALSASEQ\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_ALSASEQ\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_WINSYN_TRUE}" && test -z "${ENABLE_WINSYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_WINSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_WINSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_WINSYN_TRUE}" && test -z "${ENABLE_WINSYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_WINSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_WINSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_PORTMIDISYN_TRUE}" && test -z "${ENABLE_PORTMIDISYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_PORTMIDISYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_PORTMIDISYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_PORTMIDISYN_TRUE}" && test -z "${ENABLE_PORTMIDISYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_PORTMIDISYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_PORTMIDISYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_NPSYN_TRUE}" && test -z "${ENABLE_NPSYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_NPSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_NPSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_NPSYN_TRUE}" && test -z "${ENABLE_NPSYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_NPSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_NPSYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_W32G_SYN_TRUE}" && test -z "${ENABLE_W32G_SYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_W32G_SYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_W32G_SYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_W32G_SYN_TRUE}" && test -z "${ENABLE_W32G_SYN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_W32G_SYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_W32G_SYN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_W32GUI_TRUE}" && test -z "${ENABLE_W32GUI_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_W32GUI\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_W32GUI\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_W32GUI_TRUE}" && test -z "${ENABLE_W32GUI_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_W32GUI\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_W32GUI\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_PLUGIN_TRUE}" && test -z "${ENABLE_PLUGIN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_PLUGIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_PLUGIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_PLUGIN_TRUE}" && test -z "${ENABLE_PLUGIN_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_PLUGIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_PLUGIN\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_NETWORK_TRUE}" && test -z "${ENABLE_NETWORK_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_NETWORK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_NETWORK\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_SOUND_SPEC_TRUE}" && test -z "${ENABLE_SOUND_SPEC_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_SOUND_SPEC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_SOUND_SPEC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${ENABLE_WRD_TRUE}" && test -z "${ENABLE_WRD_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_WRD\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"ENABLE_WRD\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${W32G_GUI_TRUE}" && test -z "${W32G_GUI_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"W32G_GUI\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"W32G_GUI\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${WINDRV_TRUE}" && test -z "${WINDRV_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"WINDRV\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"WINDRV\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${MSYS_TRUE}" && test -z "${MSYS_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"MSYS\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"MSYS\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${VCPP_TRUE}" && test -z "${VCPP_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"VCPP\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"VCPP\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${POCC_TRUE}" && test -z "${POCC_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"POCC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"POCC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${BORLANDC_TRUE}" && test -z "${BORLANDC_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"BORLANDC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"BORLANDC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${WATCOM_C_TRUE}" && test -z "${WATCOM_C_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"WATCOM_C\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"WATCOM_C\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${DMC_TRUE}" && test -z "${DMC_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"DMC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"DMC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${MINGWGCC_TRUE}" && test -z "${MINGWGCC_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"MINGWGCC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"MINGWGCC\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-if test -z "${W32READDIR_TRUE}" && test -z "${W32READDIR_FALSE}"; then
+-  { { echo "$as_me:$LINENO: error: conditional \"W32READDIR\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&5
+-echo "$as_me: error: conditional \"W32READDIR\" was never defined.
+-Usually this means the macro was only invoked conditionally." >&2;}
+-   { (exit 1); exit 1; }; }
+-fi
+-
+-: ${CONFIG_STATUS=./config.status}
+-ac_clean_files_save=$ac_clean_files
+-ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+-{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
+-echo "$as_me: creating $CONFIG_STATUS" >&6;}
+-cat >$CONFIG_STATUS <<_ACEOF
+-#! $SHELL
+-# Generated by $as_me.
+-# Run this file to recreate the current configuration.
+-# Compiler output produced by configure, useful for debugging
+-# configure, is in config.log if it exists.
+-
+-debug=false
+-ac_cs_recheck=false
+-ac_cs_silent=false
+-SHELL=\${CONFIG_SHELL-$SHELL}
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-## --------------------- ##
+-## M4sh Initialization.  ##
+-## --------------------- ##
+-
+-# Be Bourne compatible
+-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+-  emulate sh
+-  NULLCMD=:
+-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+-  # is contrary to our usage.  Disable this feature.
+-  alias -g '${1+"$@"}'='"$@"'
+-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+-  set -o posix
+-fi
+-DUALCASE=1; export DUALCASE # for MKS sh
+-
+-# Support unset when possible.
+-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+-  as_unset=unset
+-else
+-  as_unset=false
+-fi
+-
+-
+-# Work around bugs in pre-3.0 UWIN ksh.
+-$as_unset ENV MAIL MAILPATH
+-PS1='$ '
+-PS2='> '
+-PS4='+ '
+-
+-# NLS nuisances.
+-for as_var in \
+-  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
+-  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
+-  LC_TELEPHONE LC_TIME
+-do
+-  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
+-    eval $as_var=C; export $as_var
+-  else
+-    $as_unset $as_var
+-  fi
+-done
+-
+-# Required to use basename.
+-if expr a : '\(a\)' >/dev/null 2>&1; then
+-  as_expr=expr
+-else
+-  as_expr=false
+-fi
+-
+-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
+-  as_basename=basename
+-else
+-  as_basename=false
+-fi
+-
+-
+-# Name of the executable.
+-as_me=`$as_basename "$0" ||
+-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+-	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-
+-
+-# PATH needs CR, and LINENO needs CR and PATH.
+-# Avoid depending upon Character Ranges.
+-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+-as_cr_digits='0123456789'
+-as_cr_alnum=$as_cr_Letters$as_cr_digits
+-
+-# The user is always right.
+-if test "${PATH_SEPARATOR+set}" != set; then
+-  echo "#! /bin/sh" >conf$$.sh
+-  echo  "exit 0"   >>conf$$.sh
+-  chmod +x conf$$.sh
+-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+-    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
+-fi
+-
+-
+-  as_lineno_1=$LINENO
+-  as_lineno_2=$LINENO
+-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+-  test "x$as_lineno_1" != "x$as_lineno_2" &&
+-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
+-  # Find who we are.  Look in the path if we contain no path at all
+-  # relative or not.
+-  case $0 in
+-    *[\\/]* ) as_myself=$0 ;;
+-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+-done
+-
+-       ;;
+-  esac
+-  # We did not find ourselves, most probably we were run as `sh COMMAND'
+-  # in which case we are not to be found in the path.
+-  if test "x$as_myself" = x; then
+-    as_myself=$0
+-  fi
+-  if test ! -f "$as_myself"; then
+-    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
+-echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
+-   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
+-    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for as_base in sh bash ksh sh5; do
+-	 case $as_dir in
+-	 /*)
+-	   if ("$as_dir/$as_base" -c '
+-  as_lineno_1=$LINENO
+-  as_lineno_2=$LINENO
+-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+-  test "x$as_lineno_1" != "x$as_lineno_2" &&
+-  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
+-	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
+-	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
+-       done
+-done
+-;;
+-  esac
+-
+-  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
+-  # uniformly replaced by the line number.  The first 'sed' inserts a
+-  # line-number line before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
+-  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
+-    sed '
+-      N
+-      s,$,-,
+-      : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
+-      t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
+-    ' >$as_me.lineno &&
+-  chmod +x $as_me.lineno ||
+-    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
+-echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
+-   { (exit 1); exit 1; }; }
+-
+-  # Don't try to exec as it changes $[0], causing all sort of problems
+-  # (the dirname of $[0] is not the place where we might find the
+-  # original and so on.  Autoconf is especially sensible to this).
+-  . ./$as_me.lineno
+-  # Exit status is that of the last command.
+-  exit
+-}
+-
+-
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
+-esac
+-
+-if expr a : '\(a\)' >/dev/null 2>&1; then
+-  as_expr=expr
+-else
+-  as_expr=false
+-fi
+-
+-rm -f conf$$ conf$$.exe conf$$.file
+-echo >conf$$.file
+-if ln -s conf$$.file conf$$ 2>/dev/null; then
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
+-  if test -f conf$$.exe; then
+-    # Don't use ln at all; we don't have any links
+-    as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
+-elif ln conf$$.file conf$$ 2>/dev/null; then
+-  as_ln_s=ln
+-else
+-  as_ln_s='cp -p'
+-fi
+-rm -f conf$$ conf$$.exe conf$$.file
+-
+-if mkdir -p . 2>/dev/null; then
+-  as_mkdir_p=:
+-else
+-  test -d ./-p && rmdir ./-p
+-  as_mkdir_p=false
+-fi
+-
+-as_executable_p="test -f"
+-
+-# Sed expression to map a string onto a valid CPP name.
+-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+-
+-# Sed expression to map a string onto a valid variable name.
+-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+-
+-
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+-
+-exec 6>&1
+-
+-# Open the log real soon, to keep \$[0] and so on meaningful, and to
+-# report actual input values of CONFIG_FILES etc. instead of their
+-# values after options handling.  Logging --version etc. is OK.
+-exec 5>>config.log
+-{
+-  echo
+-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+-## Running $as_me. ##
+-_ASBOX
+-} >&5
+-cat >&5 <<_CSEOF
+-
+-This file was extended by TiMidity++ $as_me 2.13.2, which was
+-generated by GNU Autoconf 2.59.  Invocation command line was
+-
+-  CONFIG_FILES    = $CONFIG_FILES
+-  CONFIG_HEADERS  = $CONFIG_HEADERS
+-  CONFIG_LINKS    = $CONFIG_LINKS
+-  CONFIG_COMMANDS = $CONFIG_COMMANDS
+-  $ $0 $@
+-
+-_CSEOF
+-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
+-echo >&5
+-_ACEOF
+-
+-# Files that config.status was made for.
+-if test -n "$ac_config_files"; then
+-  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
+-fi
+-
+-if test -n "$ac_config_headers"; then
+-  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
+-fi
+-
+-if test -n "$ac_config_links"; then
+-  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
+-fi
+-
+-if test -n "$ac_config_commands"; then
+-  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
+-fi
+-
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-ac_cs_usage="\
+-\`$as_me' instantiates files from templates according to the
+-current configuration.
+-
+-Usage: $0 [OPTIONS] [FILE]...
+-
+-  -h, --help       print this help, then exit
+-  -V, --version    print version number, then exit
+-  -q, --quiet      do not print progress messages
+-  -d, --debug      don't remove temporary files
+-      --recheck    update $as_me by reconfiguring in the same conditions
+-  --file=FILE[:TEMPLATE]
+-		   instantiate the configuration file FILE
+-  --header=FILE[:TEMPLATE]
+-		   instantiate the configuration header FILE
+-
+-Configuration files:
+-$config_files
+-
+-Configuration headers:
+-$config_headers
+-
+-Configuration commands:
+-$config_commands
+-
+-Report bugs to <bug-autoconf at gnu.org>."
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<_ACEOF
+-ac_cs_version="\\
+-TiMidity++ config.status 2.13.2
+-configured by $0, generated by GNU Autoconf 2.59,
+-  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
+-
+-Copyright (C) 2003 Free Software Foundation, Inc.
+-This config.status script is free software; the Free Software Foundation
+-gives unlimited permission to copy, distribute and modify it."
+-srcdir=$srcdir
+-INSTALL="$INSTALL"
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-# If no file are specified by the user, then we need to provide default
+-# value.  By we need to know if files were specified by the user.
+-ac_need_defaults=:
+-while test $# != 0
+-do
+-  case $1 in
+-  --*=*)
+-    ac_option=`expr "x$1" : 'x\([^=]*\)='`
+-    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
+-    ac_shift=:
+-    ;;
+-  -*)
+-    ac_option=$1
+-    ac_optarg=$2
+-    ac_shift=shift
+-    ;;
+-  *) # This is not an option, so the user has probably given explicit
+-     # arguments.
+-     ac_option=$1
+-     ac_need_defaults=false;;
+-  esac
+-
+-  case $ac_option in
+-  # Handling of the options.
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+-    ac_cs_recheck=: ;;
+-  --version | --vers* | -V )
+-    echo "$ac_cs_version"; exit 0 ;;
+-  --he | --h)
+-    # Conflict between --help and --header
+-    { { echo "$as_me:$LINENO: error: ambiguous option: $1
+-Try \`$0 --help' for more information." >&5
+-echo "$as_me: error: ambiguous option: $1
+-Try \`$0 --help' for more information." >&2;}
+-   { (exit 1); exit 1; }; };;
+-  --help | --hel | -h )
+-    echo "$ac_cs_usage"; exit 0 ;;
+-  --debug | --d* | -d )
+-    debug=: ;;
+-  --file | --fil | --fi | --f )
+-    $ac_shift
+-    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
+-    ac_need_defaults=false;;
+-  --header | --heade | --head | --hea )
+-    $ac_shift
+-    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
+-    ac_need_defaults=false;;
+-  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+-  | -silent | --silent | --silen | --sile | --sil | --si | --s)
+-    ac_cs_silent=: ;;
+-
+-  # This is an error.
+-  -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&5
+-echo "$as_me: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&2;}
+-   { (exit 1); exit 1; }; } ;;
+-
+-  *) ac_config_targets="$ac_config_targets $1" ;;
+-
+-  esac
+-  shift
+-done
+-
+-ac_configure_extra_args=
+-
+-if $ac_cs_silent; then
+-  exec 6>/dev/null
+-  ac_configure_extra_args="$ac_configure_extra_args --silent"
+-fi
+-
+-_ACEOF
+-cat >>$CONFIG_STATUS <<_ACEOF
+-if \$ac_cs_recheck; then
+-  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
+-  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+-fi
+-
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<_ACEOF
+-#
+-# INIT-COMMANDS section.
+-#
+-
+-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+-
+-_ACEOF
+-
+-
+-
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-for ac_config_target in $ac_config_targets
+-do
+-  case "$ac_config_target" in
+-  # Handling of arguments.
+-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+-  "autoconf/Makefile" ) CONFIG_FILES="$CONFIG_FILES autoconf/Makefile" ;;
+-  "common.makefile" ) CONFIG_FILES="$CONFIG_FILES common.makefile" ;;
+-  "configs/Makefile" ) CONFIG_FILES="$CONFIG_FILES configs/Makefile" ;;
+-  "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
+-  "doc/C/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/C/Makefile" ;;
+-  "doc/ja_JP.eucJP/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/ja_JP.eucJP/Makefile" ;;
+-  "interface/Makefile" ) CONFIG_FILES="$CONFIG_FILES interface/Makefile" ;;
+-  "interface/motif_bitmaps/Makefile" ) CONFIG_FILES="$CONFIG_FILES interface/motif_bitmaps/Makefile" ;;
+-  "interface/bitmaps/Makefile" ) CONFIG_FILES="$CONFIG_FILES interface/bitmaps/Makefile" ;;
+-  "interface/pixmaps/Makefile" ) CONFIG_FILES="$CONFIG_FILES interface/pixmaps/Makefile" ;;
+-  "libarc/Makefile" ) CONFIG_FILES="$CONFIG_FILES libarc/Makefile" ;;
+-  "libunimod/Makefile" ) CONFIG_FILES="$CONFIG_FILES libunimod/Makefile" ;;
+-  "timidity/Makefile" ) CONFIG_FILES="$CONFIG_FILES timidity/Makefile" ;;
+-  "windrv/Makefile" ) CONFIG_FILES="$CONFIG_FILES windrv/Makefile" ;;
+-  "utils/Makefile" ) CONFIG_FILES="$CONFIG_FILES utils/Makefile" ;;
+-  "script/Makefile" ) CONFIG_FILES="$CONFIG_FILES script/Makefile" ;;
+-  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
+-  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+-  "interface.h" ) CONFIG_HEADERS="$CONFIG_HEADERS interface.h" ;;
+-  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
+-echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
+-   { (exit 1); exit 1; }; };;
+-  esac
+-done
+-
+-# If the user did not use the arguments to specify the items to instantiate,
+-# then the envvar interface is used.  Set only those that are not.
+-# We use the long form for the default assignment because of an extremely
+-# bizarre bug on SunOS 4.1.3.
+-if $ac_need_defaults; then
+-  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+-  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
+-  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
+-fi
+-
+-# Have a temporary directory for convenience.  Make it in the build tree
+-# simply because there is no reason to put it here, and in addition,
+-# creating and moving files from /tmp can sometimes cause problems.
+-# Create a temporary directory, and hook for its removal unless debugging.
+-$debug ||
+-{
+-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
+-  trap '{ (exit 1); exit 1; }' 1 2 13 15
+-}
+-
+-# Create a (secure) tmp directory for tmp files.
+-
+-{
+-  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
+-  test -n "$tmp" && test -d "$tmp"
+-}  ||
+-{
+-  tmp=./confstat$$-$RANDOM
+-  (umask 077 && mkdir $tmp)
+-} ||
+-{
+-   echo "$me: cannot create a temporary directory in ." >&2
+-   { (exit 1); exit 1; }
+-}
+-
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<_ACEOF
+-
+-#
+-# CONFIG_FILES section.
+-#
+-
+-# No need to generate the scripts if there are no CONFIG_FILES.
+-# This happens for instance when ./config.status config.h
+-if test -n "\$CONFIG_FILES"; then
+-  # Protect against being on the right side of a sed subst in config.status.
+-  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
+-   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
+-s, at SHELL@,$SHELL,;t t
+-s, at PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
+-s, at PACKAGE_NAME@,$PACKAGE_NAME,;t t
+-s, at PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
+-s, at PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
+-s, at PACKAGE_STRING@,$PACKAGE_STRING,;t t
+-s, at PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
+-s, at exec_prefix@,$exec_prefix,;t t
+-s, at prefix@,$prefix,;t t
+-s, at program_transform_name@,$program_transform_name,;t t
+-s, at bindir@,$bindir,;t t
+-s, at sbindir@,$sbindir,;t t
+-s, at libexecdir@,$libexecdir,;t t
+-s, at datadir@,$datadir,;t t
+-s, at sysconfdir@,$sysconfdir,;t t
+-s, at sharedstatedir@,$sharedstatedir,;t t
+-s, at localstatedir@,$localstatedir,;t t
+-s, at libdir@,$libdir,;t t
+-s, at includedir@,$includedir,;t t
+-s, at oldincludedir@,$oldincludedir,;t t
+-s, at infodir@,$infodir,;t t
+-s, at mandir@,$mandir,;t t
+-s, at build_alias@,$build_alias,;t t
+-s, at host_alias@,$host_alias,;t t
+-s, at target_alias@,$target_alias,;t t
+-s, at DEFS@,$DEFS,;t t
+-s, at ECHO_C@,$ECHO_C,;t t
+-s, at ECHO_N@,$ECHO_N,;t t
+-s, at ECHO_T@,$ECHO_T,;t t
+-s, at LIBS@,$LIBS,;t t
+-s, at build@,$build,;t t
+-s, at build_cpu@,$build_cpu,;t t
+-s, at build_vendor@,$build_vendor,;t t
+-s, at build_os@,$build_os,;t t
+-s, at host@,$host,;t t
+-s, at host_cpu@,$host_cpu,;t t
+-s, at host_vendor@,$host_vendor,;t t
+-s, at host_os@,$host_os,;t t
+-s, at target@,$target,;t t
+-s, at target_cpu@,$target_cpu,;t t
+-s, at target_vendor@,$target_vendor,;t t
+-s, at target_os@,$target_os,;t t
+-s, at INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
+-s, at INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
+-s, at INSTALL_DATA@,$INSTALL_DATA,;t t
+-s, at CYGPATH_W@,$CYGPATH_W,;t t
+-s, at PACKAGE@,$PACKAGE,;t t
+-s, at VERSION@,$VERSION,;t t
+-s, at ACLOCAL@,$ACLOCAL,;t t
+-s, at AUTOCONF@,$AUTOCONF,;t t
+-s, at AUTOMAKE@,$AUTOMAKE,;t t
+-s, at AUTOHEADER@,$AUTOHEADER,;t t
+-s, at MAKEINFO@,$MAKEINFO,;t t
+-s, at AMTAR@,$AMTAR,;t t
+-s, at install_sh@,$install_sh,;t t
+-s, at STRIP@,$STRIP,;t t
+-s, at ac_ct_STRIP@,$ac_ct_STRIP,;t t
+-s, at INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
+-s, at AWK@,$AWK,;t t
+-s, at SET_MAKE@,$SET_MAKE,;t t
+-s, at am__leading_dot@,$am__leading_dot,;t t
+-s, at MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
+-s, at MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t
+-s, at MAINT@,$MAINT,;t t
+-s, at XAW_INSTALL_RESOURCE_FILES_TRUE@,$XAW_INSTALL_RESOURCE_FILES_TRUE,;t t
+-s, at XAW_INSTALL_RESOURCE_FILES_FALSE@,$XAW_INSTALL_RESOURCE_FILES_FALSE,;t t
+-s, at xawresdir@,$xawresdir,;t t
+-s, at EMACS@,$EMACS,;t t
+-s, at lispdir@,$lispdir,;t t
+-s, at CC@,$CC,;t t
+-s, at CFLAGS@,$CFLAGS,;t t
+-s, at LDFLAGS@,$LDFLAGS,;t t
+-s, at CPPFLAGS@,$CPPFLAGS,;t t
+-s, at ac_ct_CC@,$ac_ct_CC,;t t
+-s, at EXEEXT@,$EXEEXT,;t t
+-s, at OBJEXT@,$OBJEXT,;t t
+-s, at DEPDIR@,$DEPDIR,;t t
+-s, at am__include@,$am__include,;t t
+-s, at am__quote@,$am__quote,;t t
+-s, at AMDEP_TRUE@,$AMDEP_TRUE,;t t
+-s, at AMDEP_FALSE@,$AMDEP_FALSE,;t t
+-s, at AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
+-s, at CCDEPMODE@,$CCDEPMODE,;t t
+-s, at am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
+-s, at am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
+-s, at CPP@,$CPP,;t t
+-s, at EGREP@,$EGREP,;t t
+-s, at RANLIB@,$RANLIB,;t t
+-s, at ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
+-s, at LN_S@,$LN_S,;t t
+-s, at X_CFLAGS@,$X_CFLAGS,;t t
+-s, at X_PRE_LIBS@,$X_PRE_LIBS,;t t
+-s, at X_LIBS@,$X_LIBS,;t t
+-s, at X_EXTRA_LIBS@,$X_EXTRA_LIBS,;t t
+-s, at LIBOBJS@,$LIBOBJS,;t t
+-s, at NEEDGETOPT_TRUE@,$NEEDGETOPT_TRUE,;t t
+-s, at NEEDGETOPT_FALSE@,$NEEDGETOPT_FALSE,;t t
+-s, at ALSA_CFLAGS@,$ALSA_CFLAGS,;t t
+-s, at ALSA_LIBS@,$ALSA_LIBS,;t t
+-s, at ARTSCCONFIG@,$ARTSCCONFIG,;t t
+-s, at ARTSLIBS@,$ARTSLIBS,;t t
+-s, at ARTSINCL@,$ARTSINCL,;t t
+-s, at ESD_CONFIG@,$ESD_CONFIG,;t t
+-s, at ESD_CFLAGS@,$ESD_CFLAGS,;t t
+-s, at ESD_LIBS@,$ESD_LIBS,;t t
+-s, at AO_CFLAGS@,$AO_CFLAGS,;t t
+-s, at AO_LIBS@,$AO_LIBS,;t t
+-s, at VORBIS_CFLAGS@,$VORBIS_CFLAGS,;t t
+-s, at VORBIS_LIBS@,$VORBIS_LIBS,;t t
+-s, at VORBISFILE_LIBS@,$VORBISFILE_LIBS,;t t
+-s, at VORBISENC_LIBS@,$VORBISENC_LIBS,;t t
+-s, at OGG_CFLAGS@,$OGG_CFLAGS,;t t
+-s, at OGG_LIBS@,$OGG_LIBS,;t t
+-s, at LIBFLAC_CFLAGS@,$LIBFLAC_CFLAGS,;t t
+-s, at LIBFLAC_LIBS@,$LIBFLAC_LIBS,;t t
+-s, at LIBOGGFLAC_CFLAGS@,$LIBOGGFLAC_CFLAGS,;t t
+-s, at LIBOGGFLAC_LIBS@,$LIBOGGFLAC_LIBS,;t t
+-s, at NEEDDLOPEN_TRUE@,$NEEDDLOPEN_TRUE,;t t
+-s, at NEEDDLOPEN_FALSE@,$NEEDDLOPEN_FALSE,;t t
+-s, at ENABLE_XDND_TRUE@,$ENABLE_XDND_TRUE,;t t
+-s, at ENABLE_XDND_FALSE@,$ENABLE_XDND_FALSE,;t t
+-s, at ENABLE_NCURSES_TRUE@,$ENABLE_NCURSES_TRUE,;t t
+-s, at ENABLE_NCURSES_FALSE@,$ENABLE_NCURSES_FALSE,;t t
+-s, at n_so_libs@,$n_so_libs,;t t
+-s, at ENABLE_SLANG_TRUE@,$ENABLE_SLANG_TRUE,;t t
+-s, at ENABLE_SLANG_FALSE@,$ENABLE_SLANG_FALSE,;t t
+-s, at s_so_libs@,$s_so_libs,;t t
+-s, at ENABLE_MOTIF_TRUE@,$ENABLE_MOTIF_TRUE,;t t
+-s, at ENABLE_MOTIF_FALSE@,$ENABLE_MOTIF_FALSE,;t t
+-s, at m_so_libs@,$m_so_libs,;t t
+-s, at ENABLE_TCLTK_TRUE@,$ENABLE_TCLTK_TRUE,;t t
+-s, at ENABLE_TCLTK_FALSE@,$ENABLE_TCLTK_FALSE,;t t
+-s, at k_so_libs@,$k_so_libs,;t t
+-s, at ENABLE_DYNAMIC_TCLTK_TRUE@,$ENABLE_DYNAMIC_TCLTK_TRUE,;t t
+-s, at ENABLE_DYNAMIC_TCLTK_FALSE@,$ENABLE_DYNAMIC_TCLTK_FALSE,;t t
+-s, at ENABLE_EMACS_TRUE@,$ENABLE_EMACS_TRUE,;t t
+-s, at ENABLE_EMACS_FALSE@,$ENABLE_EMACS_FALSE,;t t
+-s, at e_so_libs@,$e_so_libs,;t t
+-s, at ENABLE_VT100_TRUE@,$ENABLE_VT100_TRUE,;t t
+-s, at ENABLE_VT100_FALSE@,$ENABLE_VT100_FALSE,;t t
+-s, at T_so_libs@,$T_so_libs,;t t
+-s, at ENABLE_XAW_TRUE@,$ENABLE_XAW_TRUE,;t t
+-s, at ENABLE_XAW_FALSE@,$ENABLE_XAW_FALSE,;t t
+-s, at a_so_libs@,$a_so_libs,;t t
+-s, at ENABLE_DYNAMIC_XAW_TRUE@,$ENABLE_DYNAMIC_XAW_TRUE,;t t
+-s, at ENABLE_DYNAMIC_XAW_FALSE@,$ENABLE_DYNAMIC_XAW_FALSE,;t t
+-s, at ENABLE_XSKIN_TRUE@,$ENABLE_XSKIN_TRUE,;t t
+-s, at ENABLE_XSKIN_FALSE@,$ENABLE_XSKIN_FALSE,;t t
+-s, at i_so_libs@,$i_so_libs,;t t
+-s, at ENABLE_GTK_TRUE@,$ENABLE_GTK_TRUE,;t t
+-s, at ENABLE_GTK_FALSE@,$ENABLE_GTK_FALSE,;t t
+-s, at PKG_CONFIG@,$PKG_CONFIG,;t t
+-s, at GTK_CONFIG@,$GTK_CONFIG,;t t
+-s, at GTK_CFLAGS@,$GTK_CFLAGS,;t t
+-s, at GTK_LIBS@,$GTK_LIBS,;t t
+-s, at g_so_libs@,$g_so_libs,;t t
+-s, at ENABLE_SERVER_TRUE@,$ENABLE_SERVER_TRUE,;t t
+-s, at ENABLE_SERVER_FALSE@,$ENABLE_SERVER_FALSE,;t t
+-s, at r_so_libs@,$r_so_libs,;t t
+-s, at ENABLE_ALSASEQ_TRUE@,$ENABLE_ALSASEQ_TRUE,;t t
+-s, at ENABLE_ALSASEQ_FALSE@,$ENABLE_ALSASEQ_FALSE,;t t
+-s, at A_so_libs@,$A_so_libs,;t t
+-s, at ENABLE_WINSYN_TRUE@,$ENABLE_WINSYN_TRUE,;t t
+-s, at ENABLE_WINSYN_FALSE@,$ENABLE_WINSYN_FALSE,;t t
+-s, at W_so_libs@,$W_so_libs,;t t
+-s, at ENABLE_PORTMIDISYN_TRUE@,$ENABLE_PORTMIDISYN_TRUE,;t t
+-s, at ENABLE_PORTMIDISYN_FALSE@,$ENABLE_PORTMIDISYN_FALSE,;t t
+-s, at P_so_libs@,$P_so_libs,;t t
+-s, at ENABLE_NPSYN_TRUE@,$ENABLE_NPSYN_TRUE,;t t
+-s, at ENABLE_NPSYN_FALSE@,$ENABLE_NPSYN_FALSE,;t t
+-s, at ENABLE_W32G_SYN_TRUE@,$ENABLE_W32G_SYN_TRUE,;t t
+-s, at ENABLE_W32G_SYN_FALSE@,$ENABLE_W32G_SYN_FALSE,;t t
+-s, at ENABLE_W32GUI_TRUE@,$ENABLE_W32GUI_TRUE,;t t
+-s, at ENABLE_W32GUI_FALSE@,$ENABLE_W32GUI_FALSE,;t t
+-s, at w_so_libs@,$w_so_libs,;t t
+-s, at ENABLE_PLUGIN_TRUE@,$ENABLE_PLUGIN_TRUE,;t t
+-s, at ENABLE_PLUGIN_FALSE@,$ENABLE_PLUGIN_FALSE,;t t
+-s, at p_so_libs@,$p_so_libs,;t t
+-s, at ENABLE_NETWORK_TRUE@,$ENABLE_NETWORK_TRUE,;t t
+-s, at ENABLE_NETWORK_FALSE@,$ENABLE_NETWORK_FALSE,;t t
+-s, at ENABLE_SOUND_SPEC_TRUE@,$ENABLE_SOUND_SPEC_TRUE,;t t
+-s, at ENABLE_SOUND_SPEC_FALSE@,$ENABLE_SOUND_SPEC_FALSE,;t t
+-s, at ENABLE_WRD_TRUE@,$ENABLE_WRD_TRUE,;t t
+-s, at ENABLE_WRD_FALSE@,$ENABLE_WRD_FALSE,;t t
+-s, at W32G_GUI_TRUE@,$W32G_GUI_TRUE,;t t
+-s, at W32G_GUI_FALSE@,$W32G_GUI_FALSE,;t t
+-s, at WINDRV_TRUE@,$WINDRV_TRUE,;t t
+-s, at WINDRV_FALSE@,$WINDRV_FALSE,;t t
+-s, at MSYS_TRUE@,$MSYS_TRUE,;t t
+-s, at MSYS_FALSE@,$MSYS_FALSE,;t t
+-s, at VCPP_TRUE@,$VCPP_TRUE,;t t
+-s, at VCPP_FALSE@,$VCPP_FALSE,;t t
+-s, at POCC_TRUE@,$POCC_TRUE,;t t
+-s, at POCC_FALSE@,$POCC_FALSE,;t t
+-s, at BORLANDC_TRUE@,$BORLANDC_TRUE,;t t
+-s, at BORLANDC_FALSE@,$BORLANDC_FALSE,;t t
+-s, at WATCOM_C_TRUE@,$WATCOM_C_TRUE,;t t
+-s, at WATCOM_C_FALSE@,$WATCOM_C_FALSE,;t t
+-s, at DMC_TRUE@,$DMC_TRUE,;t t
+-s, at DMC_FALSE@,$DMC_FALSE,;t t
+-s, at MINGWGCC_TRUE@,$MINGWGCC_TRUE,;t t
+-s, at MINGWGCC_FALSE@,$MINGWGCC_FALSE,;t t
+-s, at W32READDIR_TRUE@,$W32READDIR_TRUE,;t t
+-s, at W32READDIR_FALSE@,$W32READDIR_FALSE,;t t
+-s, at BORLANDC_START@,$BORLANDC_START,;t t
+-s, at BORLANDC_LDFLAGS@,$BORLANDC_LDFLAGS,;t t
+-s, at timidity_LDFLAGS@,$timidity_LDFLAGS,;t t
+-s, at WATCOM_LDFLAGS@,$WATCOM_LDFLAGS,;t t
+-s, at DMC_LDFLAGS@,$DMC_LDFLAGS,;t t
+-s, at VCPP_LDFLAGS@,$VCPP_LDFLAGS,;t t
+-s, at POCC_LDFLAGS@,$POCC_LDFLAGS,;t t
+-s, at SYSEXTRAS@,$SYSEXTRAS,;t t
+-s, at EXTRALIBS@,$EXTRALIBS,;t t
+-s, at NETSRCS@,$NETSRCS,;t t
+-s, at ELFILES@,$ELFILES,;t t
+-s, at SHLD@,$SHLD,;t t
+-s, at SHCFLAGS@,$SHCFLAGS,;t t
+-s, at dynamic_targets@,$dynamic_targets,;t t
+-s, at so@,$so,;t t
+-s, at WISH@,$WISH,;t t
+-s, at tcltk_dep@,$tcltk_dep,;t t
+-s, at INTERFACE_SRCS@,$INTERFACE_SRCS,;t t
+-s, at pkgdatadir@,$pkgdatadir,;t t
+-s, at pkglibdir@,$pkglibdir,;t t
+-s, at LTLIBOBJS@,$LTLIBOBJS,;t t
+-CEOF
+-
+-_ACEOF
+-
+-  cat >>$CONFIG_STATUS <<\_ACEOF
+-  # Split the substitutions into bite-sized pieces for seds with
+-  # small command number limits, like on Digital OSF/1 and HP-UX.
+-  ac_max_sed_lines=48
+-  ac_sed_frag=1 # Number of current file.
+-  ac_beg=1 # First line for current file.
+-  ac_end=$ac_max_sed_lines # Line after last line for current file.
+-  ac_more_lines=:
+-  ac_sed_cmds=
+-  while $ac_more_lines; do
+-    if test $ac_beg -gt 1; then
+-      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    else
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    fi
+-    if test ! -s $tmp/subs.frag; then
+-      ac_more_lines=false
+-    else
+-      # The purpose of the label and of the branching condition is to
+-      # speed up the sed processing (if there are no `@' at all, there
+-      # is no need to browse any of the substitutions).
+-      # These are the two extra sed commands mentioned above.
+-      (echo ':t
+-  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
+-      if test -z "$ac_sed_cmds"; then
+-	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+-      else
+-	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+-      fi
+-      ac_sed_frag=`expr $ac_sed_frag + 1`
+-      ac_beg=$ac_end
+-      ac_end=`expr $ac_end + $ac_max_sed_lines`
+-    fi
+-  done
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
+-  fi
+-fi # test -n "$CONFIG_FILES"
+-
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+-  case $ac_file in
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
+-  esac
+-
+-  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
+-  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$ac_file" : 'X\(//\)[^/]' \| \
+-	 X"$ac_file" : 'X\(//\)$' \| \
+-	 X"$ac_file" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$ac_file" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$as_dir" : 'X\(//\)[^/]' \| \
+-	 X"$as_dir" : 'X\(//\)$' \| \
+-	 X"$as_dir" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$as_dir" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+-  ac_builddir=.
+-
+-if test "$ac_dir" != .; then
+-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+-  # A "../" for each directory in $ac_dir_suffix.
+-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
+-
+-case $srcdir in
+-  .)  # No --srcdir option.  We are building in place.
+-    ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
+-    ac_srcdir=$srcdir$ac_dir_suffix;
+-    ac_top_srcdir=$srcdir ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
+-
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
+-esac
+-
+-
+-  case $INSTALL in
+-  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+-  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
+-  esac
+-
+-  if test x"$ac_file" != x-; then
+-    { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-    rm -f "$ac_file"
+-  fi
+-  # Let's still pretend it is `configure' which instantiates (i.e., don't
+-  # use $as_me), people would be surprised to read:
+-  #    /* config.h.  Generated by config.status.  */
+-  if test x"$ac_file" = x-; then
+-    configure_input=
+-  else
+-    configure_input="$ac_file.  "
+-  fi
+-  configure_input=$configure_input"Generated from `echo $ac_file_in |
+-				     sed 's,.*/,,'` by configure."
+-
+-  # First look for the input files in the build tree, otherwise in the
+-  # src tree.
+-  ac_file_inputs=`IFS=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
+-_ACEOF
+-cat >>$CONFIG_STATUS <<_ACEOF
+-  sed "$ac_vpsub
+-$extrasub
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-:t
+-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+-s, at configure_input@,$configure_input,;t t
+-s, at srcdir@,$ac_srcdir,;t t
+-s, at abs_srcdir@,$ac_abs_srcdir,;t t
+-s, at top_srcdir@,$ac_top_srcdir,;t t
+-s, at abs_top_srcdir@,$ac_abs_top_srcdir,;t t
+-s, at builddir@,$ac_builddir,;t t
+-s, at abs_builddir@,$ac_abs_builddir,;t t
+-s, at top_builddir@,$ac_top_builddir,;t t
+-s, at abs_top_builddir@,$ac_abs_top_builddir,;t t
+-s, at INSTALL@,$ac_INSTALL,;t t
+-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
+-  rm -f $tmp/stdin
+-  if test x"$ac_file" != x-; then
+-    mv $tmp/out $ac_file
+-  else
+-    cat $tmp/out
+-    rm -f $tmp/out
+-  fi
+-
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_HEADER section.
+-#
+-
+-# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
+-# NAME is the cpp macro being defined and VALUE is the value it is being given.
+-#
+-# ac_d sets the value in "#define NAME VALUE" lines.
+-ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)'
+-ac_dB='[	 ].*$,\1#\2'
+-ac_dC=' '
+-ac_dD=',;t'
+-# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
+-ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)'
+-ac_uB='$,\1#\2define\3'
+-ac_uC=' '
+-ac_uD=',;t'
+-
+-for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+-  case $ac_file in
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
+-  esac
+-
+-  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-
+-  # First look for the input files in the build tree, otherwise in the
+-  # src tree.
+-  ac_file_inputs=`IFS=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 # Do quote $f, to prevent DOS paths from being IFS'd.
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
+-  # Remove the trailing spaces.
+-  sed 's/[	 ]*$//' $ac_file_inputs >$tmp/in
+-
+-_ACEOF
+-
+-# Transform confdefs.h into two sed scripts, `conftest.defines' and
+-# `conftest.undefs', that substitutes the proper values into
+-# config.h.in to produce config.h.  The first handles `#define'
+-# templates, and the second `#undef' templates.
+-# And first: Protect against being on the right side of a sed subst in
+-# config.status.  Protect against being in an unquoted here document
+-# in config.status.
+-rm -f conftest.defines conftest.undefs
+-# Using a here document instead of a string reduces the quoting nightmare.
+-# Putting comments in sed scripts is not portable.
+-#
+-# `end' is used to avoid that the second main sed command (meant for
+-# 0-ary CPP macros) applies to n-ary macro definitions.
+-# See the Autoconf documentation for `clear'.
+-cat >confdef2sed.sed <<\_ACEOF
+-s/[\\&,]/\\&/g
+-s,[\\$`],\\&,g
+-t clear
+-: clear
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*\)\(([^)]*)\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
+-t end
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
+-: end
+-_ACEOF
+-# If some macros were called several times there might be several times
+-# the same #defines, which is useless.  Nevertheless, we may not want to
+-# sort them, since we want the *last* AC-DEFINE to be honored.
+-uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
+-sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
+-rm -f confdef2sed.sed
+-
+-# This sed command replaces #undef with comments.  This is necessary, for
+-# example, in the case of _POSIX_SOURCE, which is predefined and required
+-# on some systems where configure will not decide to define it.
+-cat >>conftest.undefs <<\_ACEOF
+-s,^[	 ]*#[	 ]*undef[	 ][	 ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
+-_ACEOF
+-
+-# Break up conftest.defines because some shells have a limit on the size
+-# of here documents, and old seds have small limits too (100 cmds).
+-echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
+-echo '  if grep "^[	 ]*#[	 ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
+-echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
+-echo '  :' >>$CONFIG_STATUS
+-rm -f conftest.tail
+-while grep . conftest.defines >/dev/null
+-do
+-  # Write a limited-size here document to $tmp/defines.sed.
+-  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
+-  # Speed up: don't consider the non `#define' lines.
+-  echo '/^[	 ]*#[	 ]*define/!b' >>$CONFIG_STATUS
+-  # Work around the forget-to-reset-the-flag bug.
+-  echo 't clr' >>$CONFIG_STATUS
+-  echo ': clr' >>$CONFIG_STATUS
+-  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
+-  echo 'CEOF
+-  sed -f $tmp/defines.sed $tmp/in >$tmp/out
+-  rm -f $tmp/in
+-  mv $tmp/out $tmp/in
+-' >>$CONFIG_STATUS
+-  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
+-  rm -f conftest.defines
+-  mv conftest.tail conftest.defines
+-done
+-rm -f conftest.defines
+-echo '  fi # grep' >>$CONFIG_STATUS
+-echo >>$CONFIG_STATUS
+-
+-# Break up conftest.undefs because some shells have a limit on the size
+-# of here documents, and old seds have small limits too (100 cmds).
+-echo '  # Handle all the #undef templates' >>$CONFIG_STATUS
+-rm -f conftest.tail
+-while grep . conftest.undefs >/dev/null
+-do
+-  # Write a limited-size here document to $tmp/undefs.sed.
+-  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
+-  # Speed up: don't consider the non `#undef'
+-  echo '/^[	 ]*#[	 ]*undef/!b' >>$CONFIG_STATUS
+-  # Work around the forget-to-reset-the-flag bug.
+-  echo 't clr' >>$CONFIG_STATUS
+-  echo ': clr' >>$CONFIG_STATUS
+-  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
+-  echo 'CEOF
+-  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
+-  rm -f $tmp/in
+-  mv $tmp/out $tmp/in
+-' >>$CONFIG_STATUS
+-  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
+-  rm -f conftest.undefs
+-  mv conftest.tail conftest.undefs
+-done
+-rm -f conftest.undefs
+-
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-  # Let's still pretend it is `configure' which instantiates (i.e., don't
+-  # use $as_me), people would be surprised to read:
+-  #    /* config.h.  Generated by config.status.  */
+-  if test x"$ac_file" = x-; then
+-    echo "/* Generated by configure.  */" >$tmp/config.h
+-  else
+-    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
+-  fi
+-  cat $tmp/in >>$tmp/config.h
+-  rm -f $tmp/in
+-  if test x"$ac_file" != x-; then
+-    if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
+-      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
+-echo "$as_me: $ac_file is unchanged" >&6;}
+-    else
+-      ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$ac_file" : 'X\(//\)[^/]' \| \
+-	 X"$ac_file" : 'X\(//\)$' \| \
+-	 X"$ac_file" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$ac_file" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-      { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$as_dir" : 'X\(//\)[^/]' \| \
+-	 X"$as_dir" : 'X\(//\)$' \| \
+-	 X"$as_dir" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$as_dir" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+-      rm -f $ac_file
+-      mv $tmp/config.h $ac_file
+-    fi
+-  else
+-    cat $tmp/config.h
+-    rm -f $tmp/config.h
+-  fi
+-# Compute $ac_file's index in $config_headers.
+-_am_stamp_count=1
+-for _am_header in $config_headers :; do
+-  case $_am_header in
+-    $ac_file | $ac_file:* )
+-      break ;;
+-    * )
+-      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+-  esac
+-done
+-echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
+-$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X$ac_file : 'X\(//\)[^/]' \| \
+-	 X$ac_file : 'X\(//\)$' \| \
+-	 X$ac_file : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X$ac_file |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`/stamp-h$_am_stamp_count
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_COMMANDS section.
+-#
+-for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
+-  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
+-  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
+-$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$ac_dest" : 'X\(//\)[^/]' \| \
+-	 X"$ac_dest" : 'X\(//\)$' \| \
+-	 X"$ac_dest" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$ac_dest" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$as_dir" : 'X\(//\)[^/]' \| \
+-	 X"$as_dir" : 'X\(//\)$' \| \
+-	 X"$as_dir" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$as_dir" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+-  ac_builddir=.
+-
+-if test "$ac_dir" != .; then
+-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+-  # A "../" for each directory in $ac_dir_suffix.
+-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
+-
+-case $srcdir in
+-  .)  # No --srcdir option.  We are building in place.
+-    ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
+-    ac_srcdir=$srcdir$ac_dir_suffix;
+-    ac_top_srcdir=$srcdir ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
+-
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
+-esac
+-
+-
+-  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
+-echo "$as_me: executing $ac_dest commands" >&6;}
+-  case $ac_dest in
+-    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
+-  # Strip MF so we end up with the name of the file.
+-  mf=`echo "$mf" | sed -e 's/:.*$//'`
+-  # Check whether this is an Automake generated Makefile or not.
+-  # We used to match only the files named `Makefile.in', but
+-  # some people rename them; so instead we look at the file content.
+-  # Grep'ing the first line is not enough: some people post-process
+-  # each Makefile.in and add a new line on top of each file to say so.
+-  # So let's grep whole file.
+-  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
+-    dirpart=`(dirname "$mf") 2>/dev/null ||
+-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$mf" : 'X\(//\)[^/]' \| \
+-	 X"$mf" : 'X\(//\)$' \| \
+-	 X"$mf" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$mf" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  else
+-    continue
+-  fi
+-  grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
+-  # Extract the definition of DEP_FILES from the Makefile without
+-  # running `make'.
+-  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
+-  test -z "$DEPDIR" && continue
+-  # When using ansi2knr, U may be empty or an underscore; expand it
+-  U=`sed -n -e '/^U = / s///p' < "$mf"`
+-  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
+-  # We invoke sed twice because it is the simplest approach to
+-  # changing $(DEPDIR) to its actual value in the expansion.
+-  for file in `sed -n -e '
+-    /^DEP_FILES = .*\\\\$/ {
+-      s/^DEP_FILES = //
+-      :loop
+-	s/\\\\$//
+-	p
+-	n
+-	/\\\\$/ b loop
+-      p
+-    }
+-    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
+-       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
+-    # Make sure the directory exists.
+-    test -f "$dirpart/$file" && continue
+-    fdir=`(dirname "$file") 2>/dev/null ||
+-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$file" : 'X\(//\)[^/]' \| \
+-	 X"$file" : 'X\(//\)$' \| \
+-	 X"$file" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$file" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    { if $as_mkdir_p; then
+-    mkdir -p $dirpart/$fdir
+-  else
+-    as_dir=$dirpart/$fdir
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$as_dir" : 'X\(//\)[^/]' \| \
+-	 X"$as_dir" : 'X\(//\)$' \| \
+-	 X"$as_dir" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$as_dir" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+-  	  /^X\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
+-echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+-    # echo "creating $dirpart/$file"
+-    echo '# dummy' > "$dirpart/$file"
+-  done
+-done
+- ;;
+-  esac
+-done
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-{ (exit 0); exit 0; }
+-_ACEOF
+-chmod +x $CONFIG_STATUS
+-ac_clean_files=$ac_clean_files_save
+-
+-
+-# configure is writing to config.log, and then calls config.status.
+-# config.status does its own redirection, appending to config.log.
+-# Unfortunately, on DOS this fails, as config.log is still kept open
+-# by configure, so config.status won't be able to write to it; its
+-# output is simply discarded.  So we exec the FD to /dev/null,
+-# effectively closing config.log, so it can be properly (re)opened and
+-# appended to by config.status.  When coming back to configure, we
+-# need to make the FD available again.
+-if test "$no_create" != yes; then
+-  ac_cs_success=:
+-  ac_config_status_args=
+-  test "$silent" = yes &&
+-    ac_config_status_args="$ac_config_status_args --quiet"
+-  exec 5>/dev/null
+-  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
+-  exec 5>>config.log
+-  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+-  # would make configure fail if this is the last instruction.
+-  $ac_cs_success || { (exit 1); exit 1; }
+-fi
+-
+diff --git a/doc/C/Makefile.in b/doc/C/Makefile.in
+deleted file mode 100644
+index 11fbf9e..0000000
+--- a/doc/C/Makefile.in
++++ /dev/null
+@@ -1,435 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2004 Masanao Izumo <iz at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ../..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-
+-EXTRA_DIST = \
+-	timidity.1 \
+-	timidity.cfg.5 \
+-	CHANGES.02i \
+-	FAQ \
+-	README.dl \
+-	README.sf \
+-	README.tk \
+-	README.xskin \
+-	README.xaw \
+-	README.alsaseq \
+-	README.m2m \
+-	README.mts \
+-	README.w32
+-
+-subdir = doc/C
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  doc/C/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ../..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-
+-include $(top_builddir)/common.makefile
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/doc/Makefile.in b/doc/Makefile.in
+deleted file mode 100644
+index 22ff6b8..0000000
+--- a/doc/Makefile.in
++++ /dev/null
+@@ -1,765 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2004 Masanao Izumo <iz at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-SUFFIXES = .1 .5 .txt .ps
+-
+-SUBDIRS = C ja_JP.eucJP
+-lang_target = C
+-
+-man_MANS = \
+-	timidity.1 \
+-	timidity.cfg.5
+-
+-
+-EXTRA_DIST = 
+-subdir = doc
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-
+-NROFF = nroff
+-MANS = $(man_MANS)
+-
+-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
+-	ps-recursive install-info-recursive uninstall-info-recursive \
+-	all-recursive install-data-recursive install-exec-recursive \
+-	installdirs-recursive install-recursive uninstall-recursive \
+-	check-recursive installcheck-recursive
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-DIST_SUBDIRS = $(SUBDIRS)
+-all: all-recursive
+-
+-.SUFFIXES:
+-.SUFFIXES: .1 .5 .txt .ps
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  doc/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-
+-man1dir = $(mandir)/man1
+-install-man1: $(man1_MANS) $(man_MANS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(man1dir)
+-	@list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
+-	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+-	for i in $$l2; do \
+-	  case "$$i" in \
+-	    *.1*) list="$$list $$i" ;; \
+-	  esac; \
+-	done; \
+-	for i in $$list; do \
+-	  if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+-	  else file=$$i; fi; \
+-	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+-	  case "$$ext" in \
+-	    1*) ;; \
+-	    *) ext='1' ;; \
+-	  esac; \
+-	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+-	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
+-	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+-	  echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \
+-	  $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \
+-	done
+-uninstall-man1:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
+-	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+-	for i in $$l2; do \
+-	  case "$$i" in \
+-	    *.1*) list="$$list $$i" ;; \
+-	  esac; \
+-	done; \
+-	for i in $$list; do \
+-	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+-	  case "$$ext" in \
+-	    1*) ;; \
+-	    *) ext='1' ;; \
+-	  esac; \
+-	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+-	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
+-	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+-	  echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \
+-	  rm -f $(DESTDIR)$(man1dir)/$$inst; \
+-	done
+-
+-man5dir = $(mandir)/man5
+-install-man5: $(man5_MANS) $(man_MANS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(man5dir)
+-	@list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
+-	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+-	for i in $$l2; do \
+-	  case "$$i" in \
+-	    *.5*) list="$$list $$i" ;; \
+-	  esac; \
+-	done; \
+-	for i in $$list; do \
+-	  if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+-	  else file=$$i; fi; \
+-	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+-	  case "$$ext" in \
+-	    5*) ;; \
+-	    *) ext='5' ;; \
+-	  esac; \
+-	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+-	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
+-	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+-	  echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst"; \
+-	  $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst; \
+-	done
+-uninstall-man5:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
+-	l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+-	for i in $$l2; do \
+-	  case "$$i" in \
+-	    *.5*) list="$$list $$i" ;; \
+-	  esac; \
+-	done; \
+-	for i in $$list; do \
+-	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+-	  case "$$ext" in \
+-	    5*) ;; \
+-	    *) ext='5' ;; \
+-	  esac; \
+-	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+-	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
+-	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+-	  echo " rm -f $(DESTDIR)$(man5dir)/$$inst"; \
+-	  rm -f $(DESTDIR)$(man5dir)/$$inst; \
+-	done
+-
+-# This directory's subdirectories are mostly independent; you can cd
+-# into them and run `make' without going through this Makefile.
+-# To change the values of `make' variables: instead of editing Makefiles,
+-# (1) if the variable is set in `config.status', edit `config.status'
+-#     (which will cause the Makefiles to be regenerated when you run `make');
+-# (2) otherwise, pass the desired values on the `make' command line.
+-$(RECURSIVE_TARGETS):
+-	@set fnord $$MAKEFLAGS; amf=$$2; \
+-	dot_seen=no; \
+-	target=`echo $@ | sed s/-recursive//`; \
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  echo "Making $$target in $$subdir"; \
+-	  if test "$$subdir" = "."; then \
+-	    dot_seen=yes; \
+-	    local_target="$$target-am"; \
+-	  else \
+-	    local_target="$$target"; \
+-	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+-	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+-	done; \
+-	if test "$$dot_seen" = "no"; then \
+-	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+-	fi; test -z "$$fail"
+-
+-mostlyclean-recursive clean-recursive distclean-recursive \
+-maintainer-clean-recursive:
+-	@set fnord $$MAKEFLAGS; amf=$$2; \
+-	dot_seen=no; \
+-	case "$@" in \
+-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+-	  *) list='$(SUBDIRS)' ;; \
+-	esac; \
+-	rev=''; for subdir in $$list; do \
+-	  if test "$$subdir" = "."; then :; else \
+-	    rev="$$subdir $$rev"; \
+-	  fi; \
+-	done; \
+-	rev="$$rev ."; \
+-	target=`echo $@ | sed s/-recursive//`; \
+-	for subdir in $$rev; do \
+-	  echo "Making $$target in $$subdir"; \
+-	  if test "$$subdir" = "."; then \
+-	    local_target="$$target-am"; \
+-	  else \
+-	    local_target="$$target"; \
+-	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+-	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+-	done && test -z "$$fail"
+-tags-recursive:
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+-	done
+-ctags-recursive:
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+-	done
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	if (etags --etags-include --version) >/dev/null 2>&1; then \
+-	  include_option=--etags-include; \
+-	else \
+-	  include_option=--include; \
+-	fi; \
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  if test "$$subdir" = .; then :; else \
+-	    test -f $$subdir/TAGS && \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
+-	  fi; \
+-	done; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  if test "$$subdir" = .; then :; else \
+-	    test -d $(distdir)/$$subdir \
+-	    || mkdir $(distdir)/$$subdir \
+-	    || exit 1; \
+-	    (cd $$subdir && \
+-	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$(top_distdir)" \
+-	        distdir=../$(distdir)/$$subdir \
+-	        distdir) \
+-	      || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-recursive
+-all-am: Makefile $(MANS)
+-installdirs: installdirs-recursive
+-installdirs-am:
+-	$(mkinstalldirs) $(DESTDIR)$(man1dir) $(DESTDIR)$(man5dir)
+-
+-install: install-recursive
+-install-exec: install-exec-recursive
+-install-data: install-data-recursive
+-uninstall: uninstall-recursive
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-recursive
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-recursive
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-recursive
+-
+-distclean-am: clean-am distclean-generic distclean-tags
+-
+-dvi: dvi-recursive
+-
+-dvi-am:
+-
+-info: info-recursive
+-
+-info-am:
+-
+-install-data-am: install-man
+-
+-install-exec-am:
+-
+-install-info: install-info-recursive
+-
+-install-man: install-man1 install-man5
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-recursive
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-recursive
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-recursive
+-
+-pdf-am:
+-
+-ps: ps-recursive
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am uninstall-man
+-
+-uninstall-info: uninstall-info-recursive
+-
+-uninstall-man: uninstall-man1 uninstall-man5
+-
+-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
+-	clean-generic clean-recursive ctags ctags-recursive distclean \
+-	distclean-generic distclean-recursive distclean-tags distdir \
+-	dvi dvi-am dvi-recursive info info-am info-recursive install \
+-	install-am install-data install-data-am install-data-recursive \
+-	install-exec install-exec-am install-exec-recursive \
+-	install-info install-info-am install-info-recursive install-man \
+-	install-man1 install-man5 install-recursive install-strip \
+-	installcheck installcheck-am installdirs installdirs-am \
+-	installdirs-recursive maintainer-clean maintainer-clean-generic \
+-	maintainer-clean-recursive mostlyclean mostlyclean-generic \
+-	mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \
+-	ps-recursive tags tags-recursive uninstall uninstall-am \
+-	uninstall-info-am uninstall-info-recursive uninstall-man \
+-	uninstall-man1 uninstall-man5 uninstall-recursive
+-
+-
+-.1.txt:
+-	groff -man -Tlatin1 -P-b -P-u $< >$@
+-.1.ps:
+-	groff -man $< >$@
+-.5.txt:
+-	groff -man -Tlatin1 -P-b -P-u $< >$@
+-.5.ps:
+-	groff -man $< >$@
+-
+-timidity.1:
+-	rm -f timidity.1; $(LN_S) $(srcdir)/$(lang_target)/timidity.1 .
+-
+-timidity.cfg.5:
+-	rm -f timidity.cfg.5; $(LN_S) $(srcdir)/$(lang_target)/timidity.cfg.5 .
+-
+-remake-mans:
+-	rm -f timidity.1; $(LN_S) $(srcdir)/$(lang_target)/timidity.1 .
+-	rm -f timidity.cfg.5; $(LN_S) $(srcdir)/$(lang_target)/timidity.cfg.5 .
+-
+-install.man:
+-	$(MAKE) remake-mans lang_target=C; $(MAKE) install-man
+-
+-install.manj:
+-	$(MAKE) remake-mans lang_target=ja_JP.eucJP; $(MAKE) install-man
+-
+-clean:
+-	rm -f timidity.1
+-	rm -f timidity.cfg.5
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/doc/ja_JP.eucJP/Makefile.in b/doc/ja_JP.eucJP/Makefile.in
+deleted file mode 100644
+index 5a9435e..0000000
+--- a/doc/ja_JP.eucJP/Makefile.in
++++ /dev/null
+@@ -1,433 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2004 Masanao Izumo <iz at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ../..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-
+-EXTRA_DIST = \
+-	timidity.1 \
+-	timidity.cfg.5 \
+-	README.dl \
+-	README.sf \
+-	README.tk \
+-	README.xskin \
+-	README.xaw \
+-	README.alsaseq \
+-	README.m2m \
+-	README.mts \
+-	README.w32
+-
+-subdir = doc/ja_JP.eucJP
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  doc/ja_JP.eucJP/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ../..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-
+-include $(top_builddir)/common.makefile
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/interface/Makefile.in b/interface/Makefile.in
+deleted file mode 100644
+index f61fdd1..0000000
+--- a/interface/Makefile.in
++++ /dev/null
+@@ -1,1322 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2008 Masanao Izumo <iz at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-SUFFIXES = .ptcl .tcl . at so@
+-
+-SUBDIRS = motif_bitmaps bitmaps pixmaps
+-
+-INCLUDES = \
+-	-I$(top_srcdir)/timidity \
+-	-I$(top_srcdir)/libarc \
+-	-I$(top_srcdir)/utils
+-
+-
+-noinst_LIBRARIES = libinterface.a
+-
+- at W32G_GUI_TRUE@libinterface_a_SOURCES = 
+- at W32G_GUI_FALSE@libinterface_a_SOURCES = \
+- at W32G_GUI_FALSE@	dumb_c.c \
+- at W32G_GUI_FALSE@	wrdt_dumb.c \
+- at W32G_GUI_FALSE@	wrdt_tty.c
+-
+-
+-EXTRA_libinterface_a_SOURCES = \
+-	ncurs_c.c \
+-	slang_c.c \
+-	motif.h \
+-	motif_c.c \
+-	motif_i.c \
+-	motif_p.c \
+-	tk_c.c \
+-	emacs_c.c \
+-	vt100.h \
+-	vt100.c \
+-	vt100_c.c \
+-	x_trace.c \
+-	x_trace.h \
+-	xaw.h \
+-	xaw_c.c \
+-	xaw_i.c \
+-	xaw_redef.c \
+-	TiMidity.ad \
+-	TiMidity-uj.ad \
+-	xdnd.c \
+-	xdnd.h \
+-	xskin.h \
+-	xskin_c.c \
+-	xskin_i.c \
+-	xskin_loadBMP.c \
+-	xskin_spectrum.c \
+-	wrdt_x.c \
+-	x_sherry.c \
+-	x_sherry.h \
+-	x_wrdwindow.c \
+-	x_wrdwindow.h \
+-	VTPrsTbl.c \
+-	VTparse.h \
+-	x_mag.c \
+-	x_mag.h \
+-	dynamic_c.c \
+-	mac_c.c \
+-	mac_c.h \
+-	mac_mag.c \
+-	mac_mag.h \
+-	mac_trace.c \
+-	mac_wrdwindow.c \
+-	mac_wrdwindow.h \
+-	wrdt_mac.c \
+-	wrdt_wcon.c \
+-	gtk_c.c \
+-	gtk_h.h \
+-	gtk_i.c \
+-	gtk_p.c \
+-	soundspec.c \
+-	soundspec.h \
+-	x_sherry.c \
+-	x_sherry.h \
+-	server_c.c \
+-	server_defs.h \
+-	alsaseq_c.c \
+-	w32g.h \
+-	w32g_c.c \
+-	w32g_ini.c \
+-	w32g_rec.h \
+-	w32g_res.h \
+-	w32g_res.rc \
+-	w32g_utl.c \
+-	w32g_utl.h \
+-	w32g_ut2.c \
+-	w32g_ut2.h \
+-	w32g_i.c \
+-	w32g_playlist.c \
+-	w32g_pref.c \
+-	w32g_pref.h \
+-	w32g_subwin.c \
+-	w32g_subwin.h \
+-	w32g_syn.c \
+-	w32g_btn.bmp \
+-	w32g_icon.ico \
+-	w32g_sleep.bmp \
+-	w32g_subbtn.bmp \
+-	w32g_subwin2.c \
+-	w32g_wrd.h \
+-	wrdt_w32g.c \
+-	w32g_subwin3.c \
+-	w32g_tracer.h \
+-	w32g_tracer.bmp \
+-	w32g_mag.c \
+-	w32g_mag.h \
+-	w32g_dib.c \
+-	w32g_dib.h \
+-	winsyn_c.c \
+-	npsyn_c.c \
+-	rtsyn.h \
+-	rtsyn_common.c \
+-	rtsyn_winmm.c \
+-	rtsyn_portmidi.c \
+-	rtsyn_npipe.c\
+-	portmidisyn_c.c
+-
+-
+- at ENABLE_WRD_TRUE@WRD_OBJS = \
+- at ENABLE_WRD_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_WRD_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_WRD_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_WRD_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_WRD_TRUE@	x_sherry.$(OBJEXT)
+-
+-
+- at ENABLE_XDND_TRUE@XDND_SO = xdnd.${so}
+-
+- at MSYS_TRUE@@W32G_GUI_FALSE at WRD_WINCON_OBJS = wrdt_wcon.$(OBJEXT)
+-
+- at NEEDDLOPEN_TRUE@DYNAMIC_OBJS = dynamic_c.$(OBJEXT)
+-
+- at ENABLE_SOUND_SPEC_TRUE@SOUND_SPEC_OBJS = \
+- at ENABLE_SOUND_SPEC_TRUE@	soundspec.$(OBJEXT)
+-
+-
+- at ENABLE_W32GUI_TRUE@W32GUI_DEPS = w32g_res.res
+-
+- at ENABLE_W32G_SYN_TRUE@W32GUI_DEPS = w32g_res.res
+-
+-INTERFACE_OBJS = $(INTERFACE_SRCS:.c=.$(OBJEXT))
+-
+-libinterface_LIBADD = \
+-	$(INTERFACE_OBJS) \
+-	$(WRD_OBJS) \
+-	$(WRD_WINCON_OBJS) \
+-	$(DYNAMIC_OBJS) \
+-	$(SOUND_SPEC_OBJS)
+-
+-
+-libinterface_a_LIBADD = $(libinterface_LIBADD)
+-
+-libinterface_dep = \
+-	$(top_builddir)/interface.h \
+-	$(libinterface_a_LIBADD) \
+-	$(tcltk_dep) \
+-	$(W32GUI_DEPS)
+-
+-
+-# Tcl interface sources
+-TCLSRCS = tkmidity.ptcl tkpanel.tcl browser.tcl misc.tcl
+-# Tcl/Tk sources
+-TCLF = tkmidity.tcl tkpanel.tcl browser.tcl misc.tcl
+-ALLTCLF = $(TCLF) tclIndex
+-
+-EXTRA_DIST = \
+-	escape_sjis.pl \
+-	tkmidity.ptcl \
+-	tkpanel.tcl \
+-	browser.tcl \
+-	misc.tcl \
+-	timidity.el \
+-	tclIndex
+-
+- at ENABLE_DYNAMIC_TCLTK_TRUE@install_tk = install.tk
+-
+- at ENABLE_TCLTK_TRUE@install_tk = install.tk
+- at ENABLE_DYNAMIC_XAW_TRUE@install_xaw = install.xaw
+-
+- at ENABLE_XAW_TRUE@install_xaw = install.xaw
+-
+-# ELFILES = @ELFILES@ # autoconf already define this
+- at ENABLE_EMACS_TRUE@install_el = install.el
+-
+-#BRCC32 = c:/borland/bcc55/bin/brcc32.exe
+-#BRCC32_FLAGS = -ic:/borland/bcc55/include
+-#w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+-#	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp
+-#	perl -pe 's/(^FONT.*".*").*$$/$$1/' w32g_res.rc >w32g_res_bc.rc
+-#	$(BRCC32) $(BRCC32_FLAGS) w32g_res_bc.rc
+-#	windres -o tmp.res -O coff w32g_res_bc.RES
+-#	mv tmp.res w32g_res.res
+-#	rm w32g_res_bc.RES
+-
+-# dynamic_targets = @dynamic_targets@ # autoconf already define this
+- at NEEDDLOPEN_TRUE@install_dynamics = install.dynamics
+-subdir = interface
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-LIBRARIES = $(noinst_LIBRARIES)
+-
+-libinterface_a_AR = $(AR) cru
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT))
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT))
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT))
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_FALSE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_FALSE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_FALSE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_FALSE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_TRUE@	soundspec.$(OBJEXT)
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE at libinterface_a_DEPENDENCIES = \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	$(INTERFACE_SRCS:.c=.$(OBJEXT)) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_x.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_wrdwindow.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	VTPrsTbl.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_mag.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	x_sherry.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	wrdt_wcon.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	dynamic_c.$(OBJEXT) \
+- at ENABLE_SOUND_SPEC_TRUE@@ENABLE_WRD_TRUE@@MSYS_TRUE@@NEEDDLOPEN_TRUE@@W32G_GUI_FALSE@	soundspec.$(OBJEXT)
+-am__libinterface_a_SOURCES_DIST = dumb_c.c wrdt_dumb.c wrdt_tty.c
+- at W32G_GUI_TRUE@am_libinterface_a_OBJECTS =
+- at W32G_GUI_FALSE@am_libinterface_a_OBJECTS = dumb_c.$(OBJEXT) \
+- at W32G_GUI_FALSE@	wrdt_dumb.$(OBJEXT) wrdt_tty.$(OBJEXT)
+-libinterface_a_OBJECTS = $(am_libinterface_a_OBJECTS)
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/autoconf/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/VTPrsTbl.Po ./$(DEPDIR)/alsaseq_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/dumb_c.Po ./$(DEPDIR)/dynamic_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/emacs_c.Po ./$(DEPDIR)/gtk_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/gtk_i.Po ./$(DEPDIR)/gtk_p.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_c.Po ./$(DEPDIR)/mac_mag.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_trace.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_wrdwindow.Po ./$(DEPDIR)/motif_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/motif_i.Po ./$(DEPDIR)/motif_p.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ncurs_c.Po ./$(DEPDIR)/npsyn_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/portmidisyn_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/rtsyn_common.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/rtsyn_npipe.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/rtsyn_portmidi.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/rtsyn_winmm.Po ./$(DEPDIR)/server_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/slang_c.Po ./$(DEPDIR)/soundspec.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/tk_c.Po ./$(DEPDIR)/vt100.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/vt100_c.Po ./$(DEPDIR)/w32g_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_dib.Po ./$(DEPDIR)/w32g_i.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_ini.Po ./$(DEPDIR)/w32g_mag.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_playlist.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_pref.Po ./$(DEPDIR)/w32g_subwin.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_subwin2.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_subwin3.Po ./$(DEPDIR)/w32g_syn.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_ut2.Po ./$(DEPDIR)/w32g_utl.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/winsyn_c.Po ./$(DEPDIR)/wrdt_dumb.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/wrdt_mac.Po ./$(DEPDIR)/wrdt_tty.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/wrdt_w32g.Po ./$(DEPDIR)/wrdt_wcon.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/wrdt_x.Po ./$(DEPDIR)/x_mag.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/x_sherry.Po ./$(DEPDIR)/x_trace.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/x_wrdwindow.Po ./$(DEPDIR)/xaw_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/xaw_i.Po ./$(DEPDIR)/xaw_redef.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/xdnd.Po ./$(DEPDIR)/xskin_c.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/xskin_i.Po ./$(DEPDIR)/xskin_loadBMP.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/xskin_spectrum.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DIST_SOURCES = $(am__libinterface_a_SOURCES_DIST) \
+-	$(EXTRA_libinterface_a_SOURCES)
+-
+-RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
+-	ps-recursive install-info-recursive uninstall-info-recursive \
+-	all-recursive install-data-recursive install-exec-recursive \
+-	installdirs-recursive install-recursive uninstall-recursive \
+-	check-recursive installcheck-recursive
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-DIST_SUBDIRS = $(SUBDIRS)
+-SOURCES = $(libinterface_a_SOURCES) $(EXTRA_libinterface_a_SOURCES)
+-
+-all: all-recursive
+-
+-.SUFFIXES:
+-.SUFFIXES: .ptcl .tcl . at so@ .$(so) .c .o .obj
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  interface/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-
+-AR = ar
+-
+-clean-noinstLIBRARIES:
+-	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/VTPrsTbl.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/alsaseq_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dumb_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dynamic_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/emacs_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gtk_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gtk_i.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gtk_p.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_mag.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_trace.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_wrdwindow.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/motif_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/motif_i.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/motif_p.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ncurs_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/npsyn_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/portmidisyn_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rtsyn_common.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rtsyn_npipe.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rtsyn_portmidi.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rtsyn_winmm.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/server_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/slang_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/soundspec.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tk_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/vt100.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/vt100_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_dib.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_i.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_ini.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_mag.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_playlist.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_pref.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_subwin.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_subwin2.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_subwin3.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_syn.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_ut2.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_utl.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/winsyn_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt_dumb.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt_mac.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt_tty.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt_w32g.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt_wcon.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt_x.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/x_mag.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/x_sherry.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/x_trace.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/x_wrdwindow.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xaw_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xaw_i.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xaw_redef.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xdnd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xskin_c.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xskin_i.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xskin_loadBMP.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xskin_spectrum.Po at am__quote@
+-
+-distclean-depend:
+-	-rm -rf ./$(DEPDIR)
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-uninstall-info-am:
+-
+-# This directory's subdirectories are mostly independent; you can cd
+-# into them and run `make' without going through this Makefile.
+-# To change the values of `make' variables: instead of editing Makefiles,
+-# (1) if the variable is set in `config.status', edit `config.status'
+-#     (which will cause the Makefiles to be regenerated when you run `make');
+-# (2) otherwise, pass the desired values on the `make' command line.
+-$(RECURSIVE_TARGETS):
+-	@set fnord $$MAKEFLAGS; amf=$$2; \
+-	dot_seen=no; \
+-	target=`echo $@ | sed s/-recursive//`; \
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  echo "Making $$target in $$subdir"; \
+-	  if test "$$subdir" = "."; then \
+-	    dot_seen=yes; \
+-	    local_target="$$target-am"; \
+-	  else \
+-	    local_target="$$target"; \
+-	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+-	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+-	done; \
+-	if test "$$dot_seen" = "no"; then \
+-	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
+-	fi; test -z "$$fail"
+-
+-mostlyclean-recursive clean-recursive distclean-recursive \
+-maintainer-clean-recursive:
+-	@set fnord $$MAKEFLAGS; amf=$$2; \
+-	dot_seen=no; \
+-	case "$@" in \
+-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+-	  *) list='$(SUBDIRS)' ;; \
+-	esac; \
+-	rev=''; for subdir in $$list; do \
+-	  if test "$$subdir" = "."; then :; else \
+-	    rev="$$subdir $$rev"; \
+-	  fi; \
+-	done; \
+-	rev="$$rev ."; \
+-	target=`echo $@ | sed s/-recursive//`; \
+-	for subdir in $$rev; do \
+-	  echo "Making $$target in $$subdir"; \
+-	  if test "$$subdir" = "."; then \
+-	    local_target="$$target-am"; \
+-	  else \
+-	    local_target="$$target"; \
+-	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+-	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+-	done && test -z "$$fail"
+-tags-recursive:
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+-	done
+-ctags-recursive:
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+-	done
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	if (etags --etags-include --version) >/dev/null 2>&1; then \
+-	  include_option=--etags-include; \
+-	else \
+-	  include_option=--include; \
+-	fi; \
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  if test "$$subdir" = .; then :; else \
+-	    test -f $$subdir/TAGS && \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
+-	  fi; \
+-	done; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  if test "$$subdir" = .; then :; else \
+-	    test -d $(distdir)/$$subdir \
+-	    || mkdir $(distdir)/$$subdir \
+-	    || exit 1; \
+-	    (cd $$subdir && \
+-	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$(top_distdir)" \
+-	        distdir=../$(distdir)/$$subdir \
+-	        distdir) \
+-	      || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-recursive
+-all-am: Makefile $(LIBRARIES)
+-installdirs: installdirs-recursive
+-installdirs-am:
+-
+-install: install-recursive
+-install-exec: install-exec-recursive
+-install-data: install-data-recursive
+-uninstall: uninstall-recursive
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-recursive
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-recursive
+-
+-clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+-
+-distclean: distclean-recursive
+-
+-distclean-am: clean-am distclean-compile distclean-depend \
+-	distclean-generic distclean-tags
+-
+-dvi: dvi-recursive
+-
+-dvi-am:
+-
+-info: info-recursive
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am: install-exec-local
+-
+-install-info: install-info-recursive
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-recursive
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-recursive
+-
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
+-
+-pdf: pdf-recursive
+-
+-pdf-am:
+-
+-ps: ps-recursive
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-uninstall-info: uninstall-info-recursive
+-
+-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
+-	clean-generic clean-noinstLIBRARIES clean-recursive ctags \
+-	ctags-recursive distclean distclean-compile distclean-depend \
+-	distclean-generic distclean-recursive distclean-tags distdir \
+-	dvi dvi-am dvi-recursive info info-am info-recursive install \
+-	install-am install-data install-data-am install-data-recursive \
+-	install-exec install-exec-am install-exec-local \
+-	install-exec-recursive install-info install-info-am \
+-	install-info-recursive install-man install-recursive \
+-	install-strip installcheck installcheck-am installdirs \
+-	installdirs-am installdirs-recursive maintainer-clean \
+-	maintainer-clean-generic maintainer-clean-recursive mostlyclean \
+-	mostlyclean-compile mostlyclean-generic mostlyclean-recursive \
+-	pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \
+-	tags-recursive uninstall uninstall-am uninstall-info-am \
+-	uninstall-info-recursive uninstall-recursive
+-
+-
+-libinterface.a: $(libinterface_a_OBJECTS) $(libinterface_a_DEPENDENCIES) $(libinterface_dep)
+- at VCPP_TRUE@	rm -f libinterface.a
+- at VCPP_TRUE@	rm -f interface.lib
+- at VCPP_TRUE@	link -lib $(libinterface_a_OBJECTS) $(libinterface_LIBADD) -out:interface.lib
+- at VCPP_TRUE@	if test -f interface.lib ; then touch $@ ; fi
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f libinterface.a
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f interface.lib
+- at BORLANDC_TRUE@@VCPP_FALSE@	for foo in   $(libinterface_a_OBJECTS) $(libinterface_LIBADD) ;do \
+- at BORLANDC_TRUE@@VCPP_FALSE@	  tlib interface.lib +$$foo; \
+- at BORLANDC_TRUE@@VCPP_FALSE@	done
+- at BORLANDC_TRUE@@VCPP_FALSE@	if test -f interface.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f libinterface.a
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f interface.lib
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	for foo in   $(libinterface_a_OBJECTS) $(libinterface_LIBADD) ;do \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	  wlib -q interface.lib +$$foo; \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	done
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	if test -f interface.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libinterface.a
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f interface.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	start lib -c interface.lib  $(libinterface_a_OBJECTS) $(libinterface_LIBADD)
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f interface.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libinterface.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f interface.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	polib -OUT:interface.lib  $(libinterface_a_OBJECTS) $(libinterface_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f interface.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libinterface.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(AR) cru libinterface.a $(libinterface_a_OBJECTS) $(libinterface_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(RANLIB) libinterface.a
+-
+-.ptcl.tcl:
+-	sed -e 's@%TCL_DIR%@$(TCL_DIR)@g' $< > $@
+-clean:
+-	rm -f tkmidity.tcl
+-	rm -f *.$(OBJEXT)
+-	rm -f *.$(so)
+-	rm -f *.res
+-	rm -f *.RES
+-	rm -f *escaped.c
+-	rm -f *.a
+-	rm -f *.lib
+-
+-tclIndex: $(TCLSRCS)
+-	rm -f tclIndex
+-	echo 'auto_mkindex . *.tcl; exit' | $(WISH)
+-
+-install.tk: $(ALLTCLF) install.bitmaps
+-	test -d $(DESTDIR)$(TCL_DIR) || mkdir -p $(DESTDIR)$(TCL_DIR)
+-	for f in $(ALLTCLF) ''; do case ".$$f" in .);; *) $(INSTALL_DATA) $$f $(DESTDIR)$(TCL_DIR);; esac; done
+-
+-install.xaw:
+- at XAW_INSTALL_RESOURCE_FILES_TRUE@	test -d ${DESTDIR}${XAWRES} || mkdir -p ${DESTDIR}${XAWRES}
+- at XAW_INSTALL_RESOURCE_FILES_TRUE@	test -d ${DESTDIR}${XAWRES_JA} || mkdir -p ${DESTDIR}${XAWRES_JA}
+- at XAW_INSTALL_RESOURCE_FILES_TRUE@	cp ${top_srcdir}/interface/TiMidity.ad ${DESTDIR}${XAWRES}/TiMidity
+- at XAW_INSTALL_RESOURCE_FILES_TRUE@	cp ${top_srcdir}/interface/TiMidity-uj.ad ${DESTDIR}${XAWRES_JA}/TiMidity
+-
+-install.bitmaps:
+-	cd bitmaps; $(MAKE) install.bitmaps
+-
+-install.el: $(ELFILES)
+-	test -d $(DESTDIR)$(ELISP_DIR) || mkdir -p $(DESTDIR)$(ELISP_DIR)
+-	for f in $(ELFILES) ''; do case ".$$f" in .);; *) $(INSTALL_DATA) $$f $(DESTDIR)$(ELISP_DIR);; esac; done
+-
+- at VCPP_TRUE@w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+- at VCPP_TRUE@	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp 
+- at VCPP_TRUE@	rc -l0x11 w32g_res.rc
+- at VCPP_FALSE@@WATCOM_C_TRUE at w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+- at VCPP_FALSE@@WATCOM_C_TRUE@	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp 
+- at VCPP_FALSE@@WATCOM_C_TRUE@	rc -l0x11 w32g_res.rc
+- at DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+- at DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp 
+- at DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rc -D__NT__ -l0x11 w32g_res.rc
+- at DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+- at DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp 
+- at DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	porc  w32g_res.rc
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	perl -pe 's/(^FONT.*".*").*$$/$$1/' w32g_res.rc >w32g_res_bc.rc
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	brcc32 -iC:/Borland/BDS/4.0/include w32g_res_bc.rc
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	mv w32g_res_bc.RES w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm w32g_res_bc.rc
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at w32g_syn_escaped.c:w32g_syn.c escape_sjis.pl
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	escape_sjis.pl < w32g_syn.c > w32g_syn_escaped.c
+-
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at w32g_subwin_escaped.c:w32g_subwin.c escape_sjis.pl
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	escape_sjis.pl < w32g_subwin.c > w32g_subwin_escaped.c
+-
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at w32g_res.res: w32g_res.h w32g_rec.h w32g_res.rc \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_btn.bmp w32g_icon.ico w32g_sleep.bmp w32g_subbtn.bmp \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	escape_sjis.pl
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	escape_sjis.pl <w32g_res.rc >w32g_res_escaped.rc
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	windres -o $@ -O coff w32g_res.rc 2>&1|grep escape - >/dev/null && \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	windres -o $@ -O coff w32g_res_escaped.rc || echo
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm w32g_res_escaped.rc
+-#n_so_libs = @n_so_libs@
+-#s_so_libs = @s_so_libs@
+-#m_so_libs = @m_so_libs@
+-#k_so_libs = @k_so_libs@
+-#e_so_libs = @e_so_libs@
+-#T_so_libs = @T_so_libs@
+-#a_so_libs = @a_so_libs@
+-#i_so_libs = @i_so_libs@
+-#g_so_libs = @g_so_libs@
+-
+- at NEEDDLOPEN_TRUE@all-am: $(dynamic_targets)
+-
+- at NEEDDLOPEN_TRUE@install.dynamics: $(dynamic_targets)
+- at NEEDDLOPEN_TRUE@	test -d $(DESTDIR)$(SHLIB_DIR) || mkdir -p $(DESTDIR)$(SHLIB_DIR)
+- at NEEDDLOPEN_TRUE@	for f in $(dynamic_targets) ''; do case ".$$f" in .);; *) $(INSTALL_PROGRAM) $$f $(DESTDIR)$(SHLIB_DIR) ;; esac; done
+-
+- at NEEDDLOPEN_TRUE@.c.$(so):
+- at NEEDDLOPEN_TRUE@	$(COMPILE) $(SHCFLAGS) -c $< -o $@
+-
+- at NEEDDLOPEN_TRUE@bitset.$(so): $(top_srcdir)/utils/bitset.c
+- at NEEDDLOPEN_TRUE@	$(COMPILE) $(SHCFLAGS) -o $@ -c $<
+-
+- at NEEDDLOPEN_TRUE@timer.$(so): $(top_srcdir)/utils/timer.c
+- at NEEDDLOPEN_TRUE@	$(COMPILE) $(SHCFLAGS) -o $@ -c $<
+-
+- at NEEDDLOPEN_TRUE@url_buff.$(so): $(top_srcdir)/libarc/url_buff.c
+- at NEEDDLOPEN_TRUE@	$(COMPILE) $(SHCFLAGS) -o $@ -c $<
+-
+- at NEEDDLOPEN_TRUE@support.$(so): $(top_srcdir)/utils/support.c
+- at NEEDDLOPEN_TRUE@	$(COMPILE) $(SHCFLAGS) -o $@ -c $<
+-
+- at NEEDDLOPEN_TRUE@if_ncurses.$(so): ncurs_c.$(so) support.$(so) bitset.$(so) timer.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ ncurs_c.$(so) support.$(so) bitset.$(so) timer.$(so) $(n_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_slang.$(so): slang_c.$(so) support.$(so) timer.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ slang_c.$(so) support.$(so) timer.$(so) $(s_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_motif.$(so): motif_c.$(so) support.$(so) motif_i.$(so) motif_p.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ motif_c.$(so) support.$(so) motif_i.$(so) motif_p.$(so) $(m_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_tcltk.$(so): tk_c.$(so) support.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ tk_c.$(so) support.$(so) $(k_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_emacs.$(so): emacs_c.$(so) support.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ emacs_c.$(so) support.$(so) $(e_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_vt100.$(so): vt100_c.$(so) support.$(so) vt100.$(so) bitset.$(so) timer.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ vt100_c.$(so) support.$(so) vt100.$(so) bitset.$(so) timer.$(so) $(T_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_xaw.$(so): xaw_c.$(so) support.$(so) xaw_i.$(so) x_trace.${so} timer.$(so) ${XDND_SO}
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ xaw_c.$(so) support.$(so) xaw_i.$(so) x_trace.${so} timer.$(so) ${XDND_SO} $(a_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_xskin.$(so): xskin_c.$(so) support.$(so) xskin_i.$(so) xskin_loadBMP.$(so) xskin_spectrum.$(so) url_buff.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ xskin_c.$(so) support.$(so) xskin_i.$(so) xskin_loadBMP.$(so) xskin_spectrum.$(so) url_buff.$(so) $(i_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_gtk.$(so): gtk_c.$(so) support.$(so) gtk_i.$(so) gtk_p.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ gtk_c.$(so) support.$(so) gtk_i.$(so) gtk_p.$(so) $(g_so_libs)
+-
+- at NEEDDLOPEN_TRUE@if_server.$(so): server_c.$(so) support.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ server_c.$(so) support.$(so)
+-
+- at NEEDDLOPEN_TRUE@if_alsaseq.$(so): alsaseq_c.$(so) support.$(so)
+- at NEEDDLOPEN_TRUE@	$(SHLD) -o $@ alsaseq_c.$(so) support.$(so)
+-
+-clean-compile:
+-	-rm -f *.$(so)
+-	-rm -f *.res
+-	-rm -f *.RES
+-
+-install-exec-local: $(install_tk) $(install_xaw) $(install_el) $(install_dynamics)
+-
+-########## End of Makefile
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/interface/bitmaps/Makefile.in b/interface/bitmaps/Makefile.in
+deleted file mode 100644
+index 09fa8e4..0000000
+--- a/interface/bitmaps/Makefile.in
++++ /dev/null
+@@ -1,503 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ../..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-BITMAPS = \
+-	arrow.xbm \
+-	back.xbm \
+-	check.xbm \
+-	fast.xbm \
+-	fwrd.xbm \
+-	keydown.xbm \
+-	keyup.xbm \
+-	off.xbm \
+-	on.xbm \
+-	next.xbm \
+-	pause.xbm \
+-	play.xbm \
+-	prev.xbm \
+-	quit.xbm \
+-	slow.xbm \
+-	stop.xbm \
+-	random.xbm \
+-	repeat.xbm \
+-	timidity.xbm
+-
+-
+-EXTRA_DIST = $(BITMAPS)
+-subdir = interface/bitmaps
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  interface/bitmaps/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ../..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/../..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-
+-install.bitmaps: $(BITMAPS)
+-	test -d $(DESTDIR)$(BITMAP_DIR) || mkdir -p $(DESTDIR)$(BITMAP_DIR)
+-	for f in $(BITMAPS) ''; do case ".$$f" in .);; *) $(INSTALL) -m 644 $$f $(DESTDIR)$(BITMAP_DIR);; esac; done
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/interface/motif_bitmaps/Makefile.in b/interface/motif_bitmaps/Makefile.in
+deleted file mode 100644
+index 3e98fae..0000000
+--- a/interface/motif_bitmaps/Makefile.in
++++ /dev/null
+@@ -1,488 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ../..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-BITMAPS = \
+-	back.xbm \
+-	fwd.xbm \
+-	next.xbm \
+-	pause.xbm \
+-	prev.xbm \
+-	quit.xbm \
+-	restart.xbm \
+-	timidity.xbm
+-
+-
+-EXTRA_DIST = $(BITMAPS)
+-subdir = interface/motif_bitmaps
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  interface/motif_bitmaps/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ../..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/../..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/interface/pixmaps/Makefile.in b/interface/pixmaps/Makefile.in
+deleted file mode 100644
+index 700ba95..0000000
+--- a/interface/pixmaps/Makefile.in
++++ /dev/null
+@@ -1,498 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ../..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-PIXMAPS = \
+-	ff.xpm \
+-	loud.xpm \
+-	nextdisc.xpm \
+-	nexttrk.xpm \
+-	playpaus.xpm \
+-	prevdisc.xpm \
+-	prevtrk.xpm \
+-	quiet.xpm \
+-	quit.xpm \
+-	rew.xpm \
+-	stop.xpm \
+-	open.xpm \
+-	fast.xpm \
+-	slow.xpm \
+-	restart.xpm \
+-	keyup.xpm \
+-	keydown.xpm \
+-	timidity.xpm
+-
+-
+-EXTRA_DIST = $(PIXMAPS)
+-subdir = interface/pixmaps
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  interface/pixmaps/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ../..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/../..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/libarc/Makefile.in b/libarc/Makefile.in
+deleted file mode 100644
+index 167c516..0000000
+--- a/libarc/Makefile.in
++++ /dev/null
+@@ -1,717 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-INCLUDES = \
+-	-I$(top_srcdir)/timidity \
+-	-I$(top_srcdir)/utils \
+-	$(EXTRAINCS)
+-
+-
+-noinst_LIBRARIES = libarc.a
+-
+-libarc_a_SOURCES = \
+-	arc.c \
+-	arc.h \
+-	arc_lzh.c \
+-	arc_mime.c \
+-	arc_tar.c \
+-	arc_zip.c \
+-	deflate.c \
+-	explode.c \
+-	explode.h \
+-	inflate.c \
+-	unlzh.c \
+-	unlzh.h \
+-	url.c \
+-	url.h \
+-	url_b64decode.c \
+-	url_buff.c \
+-	url_cache.c \
+-	url_dir.c \
+-	url_file.c \
+-	url_hqxdecode.c \
+-	url_inflate.c \
+-	url_mem.c \
+-	url_pipe.c \
+-	url_qsdecode.c \
+-	url_uudecode.c \
+-	zip.h
+-
+-
+-EXTRA_libarc_a_SOURCES = \
+-	url_http.c \
+-	url_ftp.c \
+-	url_news.c \
+-	url_newsgroup.c
+-
+-
+- at ENABLE_NETWORK_TRUE@NET_OBJS = \
+- at ENABLE_NETWORK_TRUE@	url_http.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@	url_ftp.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@	url_news.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@	url_newsgroup.$(OBJEXT)
+-
+-
+-libarc_a_LIBADD = $(NET_OBJS)
+-subdir = libarc
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-LIBRARIES = $(noinst_LIBRARIES)
+-
+-libarc_a_AR = $(AR) cru
+- at ENABLE_NETWORK_TRUE@libarc_a_DEPENDENCIES = url_http.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@	url_ftp.$(OBJEXT) url_news.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@	url_newsgroup.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@libarc_a_DEPENDENCIES =
+-am_libarc_a_OBJECTS = arc.$(OBJEXT) arc_lzh.$(OBJEXT) arc_mime.$(OBJEXT) \
+-	arc_tar.$(OBJEXT) arc_zip.$(OBJEXT) deflate.$(OBJEXT) \
+-	explode.$(OBJEXT) inflate.$(OBJEXT) unlzh.$(OBJEXT) \
+-	url.$(OBJEXT) url_b64decode.$(OBJEXT) url_buff.$(OBJEXT) \
+-	url_cache.$(OBJEXT) url_dir.$(OBJEXT) url_file.$(OBJEXT) \
+-	url_hqxdecode.$(OBJEXT) url_inflate.$(OBJEXT) url_mem.$(OBJEXT) \
+-	url_pipe.$(OBJEXT) url_qsdecode.$(OBJEXT) \
+-	url_uudecode.$(OBJEXT)
+-libarc_a_OBJECTS = $(am_libarc_a_OBJECTS)
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/autoconf/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/arc.Po ./$(DEPDIR)/arc_lzh.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/arc_mime.Po ./$(DEPDIR)/arc_tar.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/arc_zip.Po ./$(DEPDIR)/deflate.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/explode.Po ./$(DEPDIR)/inflate.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/unlzh.Po ./$(DEPDIR)/url.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_b64decode.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_buff.Po ./$(DEPDIR)/url_cache.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_dir.Po ./$(DEPDIR)/url_file.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_ftp.Po ./$(DEPDIR)/url_hqxdecode.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_http.Po ./$(DEPDIR)/url_inflate.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_mem.Po ./$(DEPDIR)/url_news.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_newsgroup.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_pipe.Po ./$(DEPDIR)/url_qsdecode.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/url_uudecode.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DIST_SOURCES = $(libarc_a_SOURCES) $(EXTRA_libarc_a_SOURCES)
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-SOURCES = $(libarc_a_SOURCES) $(EXTRA_libarc_a_SOURCES)
+-
+-all: all-am
+-
+-.SUFFIXES:
+-.SUFFIXES: .c .o .obj
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  libarc/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-
+-AR = ar
+-
+-clean-noinstLIBRARIES:
+-	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/arc.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/arc_lzh.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/arc_mime.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/arc_tar.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/arc_zip.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/deflate.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/explode.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/inflate.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/unlzh.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_b64decode.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_buff.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_cache.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_dir.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_file.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_ftp.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_hqxdecode.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_http.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_inflate.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_mem.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_news.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_newsgroup.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_pipe.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_qsdecode.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/url_uudecode.Po at am__quote@
+-
+-distclean-depend:
+-	-rm -rf ./$(DEPDIR)
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-uninstall-info-am:
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile $(LIBRARIES)
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-compile distclean-depend \
+-	distclean-generic distclean-tags
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-noinstLIBRARIES ctags distclean distclean-compile \
+-	distclean-depend distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-man install-strip installcheck \
+-	installcheck-am installdirs maintainer-clean \
+-	maintainer-clean-generic mostlyclean mostlyclean-compile \
+-	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am
+-
+-
+-libarc.a: $(libarc_a_OBJECTS) $(libarc_a_DEPENDENCIES)
+- at VCPP_TRUE@	rm -f libarc.a
+- at VCPP_TRUE@	rm -f arc.lib
+- at VCPP_TRUE@	link -lib $(libarc_a_OBJECTS) $(libarc_a_LIBADD) -out:arc.lib
+- at VCPP_TRUE@	if test -f arc.lib ; then touch $@ ; fi
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f libarc.a
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f arc.lib
+- at BORLANDC_TRUE@@VCPP_FALSE@	for foo in $(libarc_a_OBJECTS) $(libarc_a_LIBADD);do \
+- at BORLANDC_TRUE@@VCPP_FALSE@	  tlib arc.lib +$$foo; \
+- at BORLANDC_TRUE@@VCPP_FALSE@	done
+- at BORLANDC_TRUE@@VCPP_FALSE@	if test -f arc.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f libarc.a
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f arc.lib
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	for foo in $(libarc_a_OBJECTS) $(libarc_a_LIBADD);do \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	  wlib -q arc.lib +$$foo; \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	done
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	if test -f arc.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libarc.a
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f arc.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	start lib -c arc.lib  $(libarc_a_OBJECTS) $(libarc_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f arc.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libarc.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f arc.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	polib -OUT:arc.lib  $(libarc_a_OBJECTS) $(libarc_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f arc.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	-rm -f libarc.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(libarc_a_AR) libarc.a $(libarc_a_OBJECTS) $(libarc_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(RANLIB) libarc.a
+-
+-clean:
+-	rm -f *.$(OBJEXT)
+-	rm -f *.$(so)
+-	rm -f *.a
+-	rm -f *.lib
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/libunimod/Makefile.in b/libunimod/Makefile.in
+deleted file mode 100644
+index 29c76c2..0000000
+--- a/libunimod/Makefile.in
++++ /dev/null
+@@ -1,693 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-INCLUDES = \
+-	-I$(top_srcdir) \
+-	-I$(top_srcdir)/timidity \
+-	-I$(top_srcdir)/utils \
+-	-I$(top_srcdir)/libarc \
+-	$(EXTRAINCS)
+-
+-
+-noinst_LIBRARIES = libunimod.a
+-
+-libunimod_a_SOURCES = \
+-	load_669.c \
+-	load_amf.c \
+-	load_dsm.c \
+-	load_far.c \
+-	load_gdm.c \
+-	load_imf.c \
+-	load_it.c \
+-	load_m15.c \
+-	load_med.c \
+-	load_mod.c \
+-	load_mtm.c \
+-	load_okt.c \
+-	load_s3m.c \
+-	load_stm.c \
+-	load_stx.c \
+-	load_ult.c \
+-	load_uni.c \
+-	load_xm.c \
+-	mloader.c \
+-	mlutil.c \
+-	mmsup.c \
+-	munitrk.c \
+-	unimod.h \
+-	unimod_priv.h
+-
+-subdir = libunimod
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-LIBRARIES = $(noinst_LIBRARIES)
+-
+-libunimod_a_AR = $(AR) cru
+-libunimod_a_LIBADD =
+-am_libunimod_a_OBJECTS = load_669.$(OBJEXT) load_amf.$(OBJEXT) \
+-	load_dsm.$(OBJEXT) load_far.$(OBJEXT) load_gdm.$(OBJEXT) \
+-	load_imf.$(OBJEXT) load_it.$(OBJEXT) load_m15.$(OBJEXT) \
+-	load_med.$(OBJEXT) load_mod.$(OBJEXT) load_mtm.$(OBJEXT) \
+-	load_okt.$(OBJEXT) load_s3m.$(OBJEXT) load_stm.$(OBJEXT) \
+-	load_stx.$(OBJEXT) load_ult.$(OBJEXT) load_uni.$(OBJEXT) \
+-	load_xm.$(OBJEXT) mloader.$(OBJEXT) mlutil.$(OBJEXT) \
+-	mmsup.$(OBJEXT) munitrk.$(OBJEXT)
+-libunimod_a_OBJECTS = $(am_libunimod_a_OBJECTS)
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/autoconf/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/load_669.Po ./$(DEPDIR)/load_amf.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_dsm.Po ./$(DEPDIR)/load_far.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_gdm.Po ./$(DEPDIR)/load_imf.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_it.Po ./$(DEPDIR)/load_m15.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_med.Po ./$(DEPDIR)/load_mod.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_mtm.Po ./$(DEPDIR)/load_okt.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_s3m.Po ./$(DEPDIR)/load_stm.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_stx.Po ./$(DEPDIR)/load_ult.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/load_uni.Po ./$(DEPDIR)/load_xm.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mloader.Po ./$(DEPDIR)/mlutil.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mmsup.Po ./$(DEPDIR)/munitrk.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DIST_SOURCES = $(libunimod_a_SOURCES)
+-DIST_COMMON = $(top_srcdir)/common.makefile.in AUTHORS Makefile.am \
+-	Makefile.in
+-SOURCES = $(libunimod_a_SOURCES)
+-
+-all: all-am
+-
+-.SUFFIXES:
+-.SUFFIXES: .c .o .obj
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  libunimod/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-
+-AR = ar
+-
+-clean-noinstLIBRARIES:
+-	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_669.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_amf.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_dsm.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_far.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_gdm.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_imf.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_it.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_m15.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_med.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_mod.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_mtm.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_okt.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_s3m.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_stm.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_stx.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_ult.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_uni.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/load_xm.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mloader.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mlutil.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mmsup.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/munitrk.Po at am__quote@
+-
+-distclean-depend:
+-	-rm -rf ./$(DEPDIR)
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-uninstall-info-am:
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile $(LIBRARIES)
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-compile distclean-depend \
+-	distclean-generic distclean-tags
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-noinstLIBRARIES ctags distclean distclean-compile \
+-	distclean-depend distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-man install-strip installcheck \
+-	installcheck-am installdirs maintainer-clean \
+-	maintainer-clean-generic mostlyclean mostlyclean-compile \
+-	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am
+-
+-
+-libunimod.a: $(libunimod_a_OBJECTS) $(libunimod_a_DEPENDENCIES)
+- at VCPP_TRUE@	rm -f libunimod.a
+- at VCPP_TRUE@	rm -f unimod.lib
+- at VCPP_TRUE@	link -lib $(libunimod_a_OBJECTS) -out:unimod.lib
+- at VCPP_TRUE@	if test -f unimod.lib ; then touch $@ ; fi
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f libunimod.a
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f unimod.lib
+- at BORLANDC_TRUE@@VCPP_FALSE@	for foo in  $(libunimod_a_OBJECTS);do \
+- at BORLANDC_TRUE@@VCPP_FALSE@	  tlib unimod.lib +$$foo; \
+- at BORLANDC_TRUE@@VCPP_FALSE@	done
+- at BORLANDC_TRUE@@VCPP_FALSE@	if test -f unimod.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f libunimod.a
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f unimod.lib
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	for foo in  $(libunimod_a_OBJECTS);do \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	  wlib -q unimod.lib +$$foo; \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	done
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	if test -f unimod.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libunimod.a
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f unimod.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	start lib -c unimod.lib  $(libunimod_a_OBJECTS)
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f unimod.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libunimod.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f unimod.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	polib -OUT:unimod.lib  $(libunimod_a_OBJECTS)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f unimod.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	-rm -f libunimod.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(libunimod_a_AR) libunimod.a $(libunimod_a_OBJECTS) $(libunimod_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(RANLIB) libunimod.a
+-
+-clean:
+-	rm -f *.$(OBJEXT)
+-	rm -f *.$(so)
+-	rm -f *.a
+-	rm -f *.lib
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/script/Makefile.in b/script/Makefile.in
+deleted file mode 100644
+index 5d25603..0000000
+--- a/script/Makefile.in
++++ /dev/null
+@@ -1,426 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2004 Masanao Izumo <iz at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-
+-EXTRA_DIST = \
+-	dllutl.rb \
+-	lspatch.pl \
+-	readme.txt \
+-	wcc386_w.sh \
+-	wpp386_w.sh \
+-	unix2dos.sh
+-
+-subdir = script
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-DIST_SOURCES =
+-DIST_COMMON = Makefile.am Makefile.in
+-all: all-am
+-
+-.SUFFIXES:
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  script/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-uninstall-info-am:
+-tags: TAGS
+-TAGS:
+-
+-ctags: CTAGS
+-CTAGS:
+-
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-generic
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: all all-am check check-am clean clean-generic distclean \
+-	distclean-generic distdir dvi dvi-am info info-am install \
+-	install-am install-data install-data-am install-exec \
+-	install-exec-am install-info install-info-am install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
+-	uninstall-info-am
+-
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/timidity/Makefile.in b/timidity/Makefile.in
+deleted file mode 100644
+index 8779624..0000000
+--- a/timidity/Makefile.in
++++ /dev/null
+@@ -1,1989 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2007 Masanao Izumo <iz at onicos.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-INCLUDES = \
+-	-I$(top_srcdir) \
+-	-I$(top_srcdir)/libarc \
+-	-I$(top_srcdir)/libunimod \
+-	-I$(top_srcdir)/interface \
+-	-I$(top_srcdir)/utils \
+-	$(EXTRAINCS)
+-
+-
+-bin_PROGRAMS = timidity
+-
+-noinst_PROGRAMS = calcnewt
+-
+-timidity_SOURCES = \
+-	aenc.h \
+-	aiff_a.c \
+-	aq.c \
+-	aq.h \
+-	au_a.c \
+-	audio_cnv.c \
+-	audio_cnv.h \
+-	common.c \
+-	common.h \
+-	controls.c \
+-	controls.h \
+-	dlutils.h \
+-	effect.c \
+-	filter.c \
+-	filter.h \
+-	freq.c \
+-	freq.h \
+-	instrum.c \
+-	instrum.h \
+-	list_a.c \
+-	loadtab.c \
+-	m2m.c \
+-	mfi.c \
+-	mid-j.defs \
+-	mid.defs \
+-	miditrace.c \
+-	miditrace.h \
+-	midi_a.c \
+-	mix.c \
+-	mix.h \
+-	mod.c \
+-	mod.h \
+-	mod2midi.c \
+-	mod2midi.h \
+-	modmid_a.c \
+-	mt19937ar.c \
+-	mt19937ar.h \
+-	optcode.c \
+-	optcode.h \
+-	output.c \
+-	output.h \
+-	playmidi.c \
+-	playmidi.h \
+-	quantity.c \
+-	quantity.h \
+-	raw_a.c \
+-	rcp.c \
+-	readmidi.c \
+-	readmidi.h \
+-	recache.c \
+-	recache.h \
+-	resample.c \
+-	resample.h \
+-	reverb.c \
+-	reverb.h \
+-	sbkconv.c \
+-	sffile.c \
+-	sffile.h \
+-	sfitem.c \
+-	sfitem.h \
+-	sflayer.h \
+-	smfconv.c \
+-	smfconv.h \
+-	smplfile.c \
+-	sndfont.c \
+-	sysdep.h \
+-	tables.c \
+-	tables.h \
+-	timidity.c \
+-	timidity.h \
+-	version.c \
+-	wave_a.c \
+-	wrd.h \
+-	wrd_read.c \
+-	wrdt.c
+-
+-
+-EXTRA_timidity_SOURCES = \
+-	alsa_a.c \
+-	ao_a.c \
+-	aRts_a.c \
+-	audriv.h \
+-	audriv_a.c \
+-	audriv_al.c \
+-	audriv_mme.c \
+-	audriv_none.c \
+-	darwin_a.c \
+-	dl_w32.c \
+-	dl_dld.c \
+-	dl_dlopen.c \
+-	dl_dyld.c \
+-	dl_hpux.c \
+-	bsd20_a.c \
+-	esd_a.c \
+-	hpux_a.c \
+-	hpux_d_a.c \
+-	jack_a.c \
+-	oss_a.c \
+-	mac_a.c \
+-	mac_qt_a.c \
+-	mac_com.h \
+-	mac_dlog.c \
+-	mac_main.c \
+-	mac_main.h \
+-	mac_soundspec.c \
+-	mfnode.c \
+-	mfnode.h \
+-	nas_a.c \
+-	portaudio_a.c \
+-	npipe_a.c \
+-	sun_a.c \
+-	vorbis_a.c \
+-	flac_a.c \
+-	speex_a.c \
+-	w32_a.c \
+-	w32_gogo.c \
+-	w32_gogo.h \
+-	gogo_a.h \
+-	gogo_a.c \
+-	w32g_vorbisenc_dll.c \
+-	w32g_vorbis_dll.c \
+-	w32g_ogg_dll.c \
+-	w32_portaudio.h \
+-	w32_portaudio_dll.c \
+-	w32_libFLAC_dll.c \
+-	w32_libFLAC_dll.h \
+-	w32_libFLAC_dll_g.h \
+-	w32_libFLAC_dll_i.h \
+-	w32_libOggFLAC_dll.c \
+-	w32_libOggFLAC_dll.h \
+-	w32_libOggFLAC_dll_g.h \
+-	w32_libOggFLAC_dll_i.h
+-
+-
+-calcnewt_SOURCES = calcnewt.c
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE at W32GUI_RES = $(top_builddir)/interface/w32g_res.res
+-
+- at BORLANDC_TRUE@@ENABLE_W32GUI_TRUE at W32GUI_RES = w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE at W32GUI_RES = $(top_builddir)/interface/w32g_res.res
+-
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE at W32GUI_RES = $(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE at W32GUI_RES = $(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE at W32GUI_RES = w32g_res.res
+-
+- at BORLANDC_FALSE@CLEANFILES = newton_table.c
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_LDADD = \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libarc\\arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libunimod\\unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\utils\\utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(W32GUI_RES)
+-
+-
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE at timidity_LDADD = \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      interface.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      arc.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      unimod.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      utils.lib
+-
+-
+- at POCC_TRUE@@VCPP_FALSE at timidity_LDADD = \
+- at POCC_TRUE@@VCPP_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/interface/interface.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/utils/utils.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(W32GUI_RES)
+-
+-
+- at VCPP_TRUE@timidity_LDADD = \
+- at VCPP_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at VCPP_TRUE@	$(top_builddir)/interface/interface.lib \
+- at VCPP_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at VCPP_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at VCPP_TRUE@	$(top_builddir)/utils/utils.lib \
+- at VCPP_TRUE@	$(W32GUI_RES)
+-
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_LDADD = \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/libutils.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(W32GUI_RES)
+-
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_LDADD = \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      interface.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      arc.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      unimod.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      utils.lib
+-
+-
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(W32GUI_RES)
+-
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE at timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(W32GUI_RES)
+-
+- at POCC_TRUE@@VCPP_FALSE at timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/interface/interface.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(top_builddir)/utils/utils.lib \
+- at POCC_TRUE@@VCPP_FALSE@	$(W32GUI_RES)
+-
+-
+- at VCPP_TRUE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at VCPP_TRUE@	$(top_builddir)/interface/interface.lib \
+- at VCPP_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at VCPP_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at VCPP_TRUE@	$(top_builddir)/utils/utils.lib \
+- at VCPP_TRUE@	$(W32GUI_RES)
+-
+-
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/libutils.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(W32GUI_RES)
+-
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(W32GUI_RES)
+-
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE at BORLANDC_LINK_OPTIONS = \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      -L..\\interface \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      -L..\\libarc \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      -L..\\libunimod \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@      -L..\\utils
+-
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at WATCOM_LINK_OPTIONS = \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      LIBPath ..\\interface \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      LibPath ..\\libarc \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      LibPath ..\\libunimod \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@      LibPath ..\\utils
+-
+-
+- at VCPP_TRUE@@WINDRV_TRUE at VC_LINK = link.exe -lib
+- at VCPP_TRUE@@WINDRV_FALSE at VC_LINK = link.exe
+- at VCPP_TRUE@VCC_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+-
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_FALSE at POCC_LINK = polink.exe
+-
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_TRUE at POCC_LINK = polib.exe
+-
+- at POCC_TRUE@@VCPP_FALSE at POCCC_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_FALSE at BORLANDC_LINK = ilink32.exe -C -Gn
+-
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at WATCOM_LINK = wlink.exe 
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at DMC_LINK = dmc.exe 
+-subdir = timidity
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-bin_PROGRAMS = timidity$(EXEEXT)
+-noinst_PROGRAMS = calcnewt$(EXEEXT)
+-PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
+-
+-am_calcnewt_OBJECTS = calcnewt.$(OBJEXT)
+-calcnewt_OBJECTS = $(am_calcnewt_OBJECTS)
+-calcnewt_LDADD = $(LDADD)
+-calcnewt_DEPENDENCIES =
+-calcnewt_LDFLAGS =
+-am_timidity_OBJECTS = aiff_a.$(OBJEXT) aq.$(OBJEXT) au_a.$(OBJEXT) \
+-	audio_cnv.$(OBJEXT) common.$(OBJEXT) controls.$(OBJEXT) \
+-	effect.$(OBJEXT) filter.$(OBJEXT) freq.$(OBJEXT) \
+-	instrum.$(OBJEXT) list_a.$(OBJEXT) loadtab.$(OBJEXT) \
+-	m2m.$(OBJEXT) mfi.$(OBJEXT) miditrace.$(OBJEXT) \
+-	midi_a.$(OBJEXT) mix.$(OBJEXT) mod.$(OBJEXT) mod2midi.$(OBJEXT) \
+-	modmid_a.$(OBJEXT) mt19937ar.$(OBJEXT) optcode.$(OBJEXT) \
+-	output.$(OBJEXT) playmidi.$(OBJEXT) quantity.$(OBJEXT) \
+-	raw_a.$(OBJEXT) rcp.$(OBJEXT) readmidi.$(OBJEXT) \
+-	recache.$(OBJEXT) resample.$(OBJEXT) reverb.$(OBJEXT) \
+-	sbkconv.$(OBJEXT) sffile.$(OBJEXT) sfitem.$(OBJEXT) \
+-	smfconv.$(OBJEXT) smplfile.$(OBJEXT) sndfont.$(OBJEXT) \
+-	tables.$(OBJEXT) timidity.$(OBJEXT) version.$(OBJEXT) \
+-	wave_a.$(OBJEXT) wrd_read.$(OBJEXT) wrdt.$(OBJEXT)
+-timidity_OBJECTS = $(am_timidity_OBJECTS)
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/libutils.a
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/libutils.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/libutils.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/libutils.a \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libarc\\arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libunimod\\unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\utils\\utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libarc\\arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libunimod\\unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\utils\\utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libarc\\arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libunimod\\unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\utils\\utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libarc\\arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\libunimod\\unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\utils\\utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_FALSE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)\\interface\\w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	utils.lib
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_TRUE@	w32g_res.res
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE at timidity_DEPENDENCIES = \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(SYSEXTRAS:.c=.$(OBJEXT)) \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/interface/interface.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	$(top_builddir)/utils/utils.lib \
+- at BORLANDC_TRUE@@DMC_TRUE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_TRUE@@VCPP_TRUE@@WATCOM_C_FALSE@	w32g_res.res
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/autoconf/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/aRts_a.Po ./$(DEPDIR)/aiff_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/alsa_a.Po ./$(DEPDIR)/ao_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/aq.Po ./$(DEPDIR)/au_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/audio_cnv.Po ./$(DEPDIR)/audriv_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/audriv_al.Po ./$(DEPDIR)/audriv_mme.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/audriv_none.Po ./$(DEPDIR)/bsd20_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/calcnewt.Po ./$(DEPDIR)/common.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/controls.Po ./$(DEPDIR)/darwin_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/dl_dld.Po ./$(DEPDIR)/dl_dlopen.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/dl_dyld.Po ./$(DEPDIR)/dl_hpux.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/dl_w32.Po ./$(DEPDIR)/effect.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/esd_a.Po ./$(DEPDIR)/filter.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/flac_a.Po ./$(DEPDIR)/freq.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/gogo_a.Po ./$(DEPDIR)/hpux_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/hpux_d_a.Po ./$(DEPDIR)/instrum.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/jack_a.Po ./$(DEPDIR)/list_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/loadtab.Po ./$(DEPDIR)/m2m.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_a.Po ./$(DEPDIR)/mac_dlog.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_main.Po ./$(DEPDIR)/mac_qt_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_soundspec.Po ./$(DEPDIR)/mfi.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mfnode.Po ./$(DEPDIR)/midi_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/miditrace.Po ./$(DEPDIR)/mix.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mod.Po ./$(DEPDIR)/mod2midi.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/modmid_a.Po ./$(DEPDIR)/mt19937ar.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/nas_a.Po ./$(DEPDIR)/npipe_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/optcode.Po ./$(DEPDIR)/oss_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/output.Po ./$(DEPDIR)/playmidi.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/portaudio_a.Po ./$(DEPDIR)/quantity.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/raw_a.Po ./$(DEPDIR)/rcp.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/readmidi.Po ./$(DEPDIR)/recache.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/resample.Po ./$(DEPDIR)/reverb.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/sbkconv.Po ./$(DEPDIR)/sffile.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/sfitem.Po ./$(DEPDIR)/smfconv.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/smplfile.Po ./$(DEPDIR)/sndfont.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/speex_a.Po ./$(DEPDIR)/sun_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/tables.Po ./$(DEPDIR)/timidity.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/version.Po ./$(DEPDIR)/vorbis_a.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32_a.Po ./$(DEPDIR)/w32_gogo.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32_libFLAC_dll.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32_libOggFLAC_dll.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32_portaudio_dll.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_ogg_dll.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_vorbis_dll.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/w32g_vorbisenc_dll.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/wave_a.Po ./$(DEPDIR)/wrd_read.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/wrdt.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DIST_SOURCES = $(calcnewt_SOURCES) $(timidity_SOURCES) \
+-	$(EXTRA_timidity_SOURCES)
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-SOURCES = $(calcnewt_SOURCES) $(timidity_SOURCES) $(EXTRA_timidity_SOURCES)
+-
+-all: all-am
+-
+-.SUFFIXES:
+-.SUFFIXES: .c .o .obj
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  timidity/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-binPROGRAMS: $(bin_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(bindir)
+-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-binPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(bindir)/$$f"; \
+-	  rm -f $(DESTDIR)$(bindir)/$$f; \
+-	done
+-
+-clean-binPROGRAMS:
+-	-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
+-
+-clean-noinstPROGRAMS:
+-	-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f timidity$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(LINK) $(timidity_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f timidity$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	$(LINK) $(timidity_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/aRts_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/aiff_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/alsa_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ao_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/aq.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/au_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/audio_cnv.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/audriv_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/audriv_al.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/audriv_mme.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/audriv_none.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/bsd20_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/calcnewt.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/common.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/controls.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/darwin_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dl_dld.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dl_dlopen.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dl_dyld.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dl_hpux.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/dl_w32.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/effect.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/esd_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/filter.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/flac_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/freq.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gogo_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/hpux_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/hpux_d_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/instrum.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/jack_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/list_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/loadtab.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/m2m.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_dlog.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_main.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_qt_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_soundspec.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mfi.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mfnode.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/midi_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/miditrace.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mix.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mod.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mod2midi.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/modmid_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mt19937ar.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/nas_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/npipe_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/optcode.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oss_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/output.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/playmidi.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/portaudio_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/quantity.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/raw_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rcp.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/readmidi.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/recache.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/resample.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/reverb.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/sbkconv.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/sffile.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/sfitem.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/smfconv.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/smplfile.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/sndfont.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/speex_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/sun_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tables.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/timidity.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/version.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/vorbis_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32_gogo.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32_libFLAC_dll.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32_libOggFLAC_dll.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32_portaudio_dll.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_ogg_dll.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_vorbis_dll.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/w32g_vorbisenc_dll.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wave_a.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrd_read.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/wrdt.Po at am__quote@
+-
+-distclean-depend:
+-	-rm -rf ./$(DEPDIR)
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-uninstall-info-am:
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile $(PROGRAMS)
+-
+-installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(bindir)
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \
+-	mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-compile distclean-depend \
+-	distclean-generic distclean-tags
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am: install-binPROGRAMS
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-binPROGRAMS uninstall-info-am
+-
+-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
+-	clean-generic clean-noinstPROGRAMS ctags distclean \
+-	distclean-compile distclean-depend distclean-generic \
+-	distclean-tags distdir dvi dvi-am info info-am install \
+-	install-am install-binPROGRAMS install-data install-data-am \
+-	install-exec install-exec-am install-info install-info-am \
+-	install-man install-strip installcheck installcheck-am \
+-	installdirs maintainer-clean maintainer-clean-generic \
+-	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
+-	ps ps-am tags uninstall uninstall-am uninstall-binPROGRAMS \
+-	uninstall-info-am
+-
+-
+- at VCPP_TRUE@timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) $(timidity_dep) $(W32GUI_RES)
+- at VCPP_TRUE@	@rm -f timidity$(EXEEXT)
+- at VCPP_TRUE@	$(VC_LINK) $(VCPP_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS) -out:timidity.exe
+-
+- at VCPP_TRUE@calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES)
+- at VCPP_TRUE@	@rm -f calcnewt$(EXEEXT)
+- at VCPP_TRUE@	$(VCC_LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_TRUE at timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) $(timidity_dep) $(W32GUI_RES)
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_TRUE@	@rm -f timidity$(EXEEXT)
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_TRUE@	$(POCC_LINK) $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) -out:timidity.lib
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_TRUE@	touch timidity$(EXEEXT)
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_FALSE at timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) $(timidity_dep) $(W32GUI_RES)
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_FALSE@	@rm -f timidity$(EXEEXT)
+- at POCC_TRUE@@VCPP_FALSE@@WINDRV_FALSE@	$(POCC_LINK) $(POCC_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS) -out:timidity.exe
+- at POCC_TRUE@@VCPP_FALSE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES)
+- at POCC_TRUE@@VCPP_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at POCC_TRUE@@VCPP_FALSE@	$(POCCC_LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+-
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_TRUE at timidity$(EXEEXT): $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) $(timidity_dep) $(W32GUI_RES)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_TRUE@	@rm -f $@
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_TRUE@	for foo in $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) ;do  \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_TRUE@	  tlib $@ +$$foo ; \
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_TRUE@	done
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_FALSE at timidity$(EXEEXT): $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) $(timidity_dep) $(W32GUI_RES)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_FALSE@	@rm -f timidity$(EXEEXT)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WINDRV_FALSE@	$(BORLANDC_LINK) $(BORLANDC_LINK_OPTIONS) $(BORLANDC_START) $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)), $@, ,$(timidity_LDADD) $(BORLANDC_LDFLAGS) $(LIBS), ,$(W32GUI_RES)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE at calcnewt.$(OBJEXT): calcnewt.c
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(CC)  -tWC  -c calcnewt.c
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(CCLD) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_TRUE at timidity$(EXEEXT): $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) $(timidity_dep) $(W32GUI_RES)
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_TRUE@	@rm -f $@
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_TRUE@	for foo in $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) ;do  \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_TRUE@	  wlib $@ +$$foo ; \
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_TRUE@	done
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_FALSE at timidity$(EXEEXT): $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) $(timidity_dep) $(W32GUI_RES)
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_FALSE@	@rm -f timidity$(EXEEXT)
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@@WINDRV_FALSE@	$(WATCOM_LINK) $(WATCOM_LDFLAGS) `for foo in $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)); do echo "File $$foo "; done;` Name $@ `for foo in  $(timidity_LDADD) $(LIBS); do echo "Library $$foo"; done;` $(WATCOM_LINK_OPTIONS)  `if test x$(W32GUI_RES) != x ; then  echo Option RESource=$(W32GUI_RES); fi;`
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at calcnewt.$(OBJEXT): calcnewt.c
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(CCLD)  -c calcnewt.c
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES)
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(WATCOM_LINK) File calcnewt.$(OBJEXT) Name $@
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at timidity$(EXEEXT): $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) $(timidity_dep) $(W32GUI_RES)
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f $@ $(@:.exe=.lib)
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	start lib -p128 -c  $(@:.exe=.lib) $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT))
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	if [ -f $(@:.exe=.lib) ] ;then touch $@ ;fi
+-
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at timidity$(EXEEXT): $(timidity_OBJECTS) $(SYSEXTRAS:.c=.$(OBJEXT)) $(timidity_dep) $(W32GUI_RES)
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f $@
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(CC) $(CFLAGS) $(DMC_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS) -output $@
+-#	$(DMC_LINK) -WA $(DMC_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS) -output $@
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at calcnewt.$(OBJEXT): calcnewt.c
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(CCLD)  -c calcnewt.c
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@: $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES)
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(DMC_LINK) calcnewt.$(OBJEXT) -output  $@
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE at timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	@rm -f timidity$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_TRUE@	ar -cru timidity.exe $(timidity_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at calcnewt$(EXEEXT): $(calcnewt_OBJECTS) $(calcnewt_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f calcnewt$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(LINK) $(calcnewt_LDFLAGS) $(calcnewt_OBJECTS) $(calcnewt_LDADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE at timidity$(EXEEXT): $(timidity_OBJECTS) $(timidity_DEPENDENCIES) 
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	@rm -f timidity$(EXEEXT)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@@WINDRV_FALSE@	$(LINK) $(timidity_LDFLAGS) $(timidity_OBJECTS) $(timidity_LDADD) $(LIBS)
+-#     MINGWGCC
+-#     DM
+-#     WATCOM_C
+-#     BORLANDC
+-#     POCC
+-#      VCPP
+-
+-version.$(OBJEXT): version.c ../configure
+-	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(CFLAGS) -c $(srcdir)/version.c
+-
+-resample.c: newton_table.c
+-
+- at VCPP_TRUE@newton_table.c: calcnewt$(EXEEXT)
+- at VCPP_TRUE@	./calcnewt $@
+-
+- at POCC_TRUE@@VCPP_FALSE at newton_table.c: calcnewt$(EXEEXT)
+- at POCC_TRUE@@VCPP_FALSE@	./calcnewt $@
+-
+- at POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at newton_table.c: calcnewt$(EXEEXT)
+- at POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	./calcnewt > $@
+-
+- at POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE at newton_table.c: calcnewt$(EXEEXT)
+- at POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	./calcnewt > $@
+-
+-$(top_builddir)/interface/libinterface.a $(W32GUI_RES):
+-	cd $(top_builddir)/interface; $(MAKE)
+-
+-$(top_builddir)/libarc/libarc.a:
+-	cd $(top_builddir)/libarc; $(MAKE)
+-
+-$(top_builddir)/libunimod/libunimod.a:
+-	cd $(top_builddir)/libunimod; $(MAKE)
+-
+-$(top_builddir)/utils/libutils.a:
+-	cd $(top_builddir)/utils; $(MAKE)
+-
+-objs: $(timidity_OBJECTS) $(timidity_DEPENDENCIES)
+-	@:
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/utils/Makefile.in b/utils/Makefile.in
+deleted file mode 100644
+index 671a07f..0000000
+--- a/utils/Makefile.in
++++ /dev/null
+@@ -1,755 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-INCLUDES = \
+-	-I$(top_srcdir)/libarc \
+-	-I$(top_srcdir)/timidity
+-
+-
+-noinst_LIBRARIES = libutils.a
+-
+-libutils_a_SOURCES = \
+-	bitset.c \
+-	bitset.h \
+-	fft4g.c \
+-	fft4g.h \
+-	tmdy_getopt.h \
+-	mblock.c \
+-	mblock.h \
+-	memb.c \
+-	memb.h \
+-	nkflib.c \
+-	nkflib.h \
+-	strtab.c \
+-	strtab.h \
+-	support.c \
+-	support.h \
+-	timer.c \
+-	timer.h
+-
+-
+-EXTRA_libutils_a_SOURCES = \
+-	fft.c \
+-	fft.h \
+-	getopt.c \
+-	support.c \
+-	net.c \
+-	net.h \
+-	getaddrinfo.c \
+-	mac_util.c \
+-	mac_util.h \
+-	mac_readdir.c \
+-	mac_readdir.h \
+-	readdir.h \
+-	readdir_win.c
+-
+-
+- at NEEDGETOPT_TRUE@GETOPT_OBJS = getopt.$(OBJEXT)
+-
+- at ENABLE_NETWORK_TRUE@NET_OBJS = net.$(OBJEXT) getaddrinfo.$(OBJEXT)
+-
+- at ENABLE_SOUND_SPEC_TRUE@SOUND_SPEC_OBJS = fft.$(OBJEXT)
+-
+- at W32READDIR_TRUE@W32READDIR_OBJS = readdir_win.$(OBJEXT)
+-
+-libutils_LIBADD = \
+-	$(NET_OBJS) \
+-	$(W32READDIR_OBJS) \
+-	$(SOUND_SPEC_OBJS) \
+-	$(GETOPT_OBJS)
+-
+-
+-libutils_a_LIBADD = $(libutils_LIBADD)
+-subdir = utils
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-LIBRARIES = $(noinst_LIBRARIES)
+-
+-libutils_a_AR = $(AR) cru
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES =
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT) \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT) \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	fft.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE@	fft.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT) \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	fft.$(OBJEXT) \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	fft.$(OBJEXT) \
+- at ENABLE_NETWORK_FALSE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE@	getaddrinfo.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_FALSE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_TRUE@	fft.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_FALSE@@W32READDIR_FALSE@	fft.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	readdir_win.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	fft.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_TRUE@	getopt.$(OBJEXT)
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE at libutils_a_DEPENDENCIES = \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	net.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	getaddrinfo.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	fft.$(OBJEXT) \
+- at ENABLE_NETWORK_TRUE@@ENABLE_SOUND_SPEC_TRUE@@NEEDGETOPT_TRUE@@W32READDIR_FALSE@	getopt.$(OBJEXT)
+-am_libutils_a_OBJECTS = bitset.$(OBJEXT) fft4g.$(OBJEXT) \
+-	mblock.$(OBJEXT) memb.$(OBJEXT) nkflib.$(OBJEXT) \
+-	strtab.$(OBJEXT) support.$(OBJEXT) timer.$(OBJEXT)
+-libutils_a_OBJECTS = $(am_libutils_a_OBJECTS)
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/autoconf/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/bitset.Po ./$(DEPDIR)/fft.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/fft4g.Po ./$(DEPDIR)/getaddrinfo.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/getopt.Po ./$(DEPDIR)/mac_readdir.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/mac_util.Po ./$(DEPDIR)/mblock.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/memb.Po ./$(DEPDIR)/net.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/nkflib.Po ./$(DEPDIR)/readdir_win.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/strtab.Po ./$(DEPDIR)/support.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/timer.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DIST_SOURCES = $(libutils_a_SOURCES) $(EXTRA_libutils_a_SOURCES)
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-SOURCES = $(libutils_a_SOURCES) $(EXTRA_libutils_a_SOURCES)
+-
+-all: all-am
+-
+-.SUFFIXES:
+-.SUFFIXES: .c .o .obj
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  utils/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-
+-AR = ar
+-
+-clean-noinstLIBRARIES:
+-	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/bitset.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/fft.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/fft4g.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/getaddrinfo.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/getopt.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_readdir.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mac_util.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mblock.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/memb.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/net.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/nkflib.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/readdir_win.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/strtab.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/support.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/timer.Po at am__quote@
+-
+-distclean-depend:
+-	-rm -rf ./$(DEPDIR)
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-uninstall-info-am:
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile $(LIBRARIES)
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-compile distclean-depend \
+-	distclean-generic distclean-tags
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-noinstLIBRARIES ctags distclean distclean-compile \
+-	distclean-depend distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-man install-strip installcheck \
+-	installcheck-am installdirs maintainer-clean \
+-	maintainer-clean-generic mostlyclean mostlyclean-compile \
+-	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am
+-
+-
+-libutils.a: $(libutils_a_OBJECTS) $(libutils_a_DEPENDENCIES)
+- at VCPP_TRUE@	rm -f libutils.a
+- at VCPP_TRUE@	rm -f utils.lib
+- at VCPP_TRUE@	link -lib $(libutils_a_OBJECTS) $(libutils_LIBADD) -out:utils.lib
+- at VCPP_TRUE@	if test -f utils.lib ; then touch $@ ; fi
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f libutils.a
+- at BORLANDC_TRUE@@VCPP_FALSE@	rm -f utils.lib
+- at BORLANDC_TRUE@@VCPP_FALSE@	for foo in  $(libutils_a_OBJECTS) $(libutils_a_LIBADD);do \
+- at BORLANDC_TRUE@@VCPP_FALSE@	  tlib utils.lib +$$foo; \
+- at BORLANDC_TRUE@@VCPP_FALSE@	done
+- at BORLANDC_TRUE@@VCPP_FALSE@	if test -f utils.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f libutils.a
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	rm -f utils.lib
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	for foo in  $(libutils_a_OBJECTS) $(libutils_a_LIBADD);do \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	wlib -q utils.lib +$$foo; \
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	done
+- at BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	if test -f utils.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libutils.a
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f utils.lib
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	start lib -c utils.lib  $(libutils_a_OBJECTS) $(libutils_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f utils.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f libutils.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	rm -f utils.lib
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	polib -OUT:utils.lib  $(libutils_a_OBJECTS) $(libutils_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_TRUE@@VCPP_FALSE@@WATCOM_C_FALSE@	if test -f utils.lib ; then touch $@ ; fi
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	-rm -f libutils.a
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(libutils_a_AR) libutils.a $(libutils_a_OBJECTS) $(libutils_a_LIBADD)
+- at BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@	$(RANLIB) libutils.a
+-
+-clean:
+-	rm -f *.$(OBJEXT)
+-	rm -f *.$(so)
+-	rm -f *.a
+-	rm -f *.lib
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+diff --git a/windrv/Makefile.in b/windrv/Makefile.in
+deleted file mode 100755
+index 8be11a5..0000000
+--- a/windrv/Makefile.in
++++ /dev/null
+@@ -1,794 +0,0 @@
+-# Makefile.in generated by automake 1.7.6 from Makefile.am.
+-# @configure_input@
+-
+-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+-# Free Software Foundation, Inc.
+-# This Makefile.in is free software; the Free Software Foundation
+-# gives unlimited permission to copy and/or distribute it,
+-# with or without modifications, as long as this notice is preserved.
+-
+-# This program is distributed in the hope that it will be useful,
+-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+-# PARTICULAR PURPOSE.
+-
+- at SET_MAKE@
+-
+-# TiMidity++ -- MIDI to WAVE converter and player
+-# Copyright (C) 1999-2002 Masanao Izumo <mo at goice.co.jp>
+-# Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-#
+-# 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
+-
+-# Define follows if you want to change.
+-# Note that the definition of beginning with just one `#' implies
+-# default value from configure.
+-
+-srcdir = @srcdir@
+-top_srcdir = @top_srcdir@
+-VPATH = @srcdir@
+-pkgincludedir = $(includedir)/@PACKAGE@
+-top_builddir = ..
+-
+-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+-INSTALL = @INSTALL@
+-install_sh_DATA = $(install_sh) -c -m 644
+-install_sh_PROGRAM = $(install_sh) -c
+-install_sh_SCRIPT = $(install_sh) -c
+-INSTALL_HEADER = $(INSTALL_DATA)
+-transform = $(program_transform_name)
+-NORMAL_INSTALL = :
+-PRE_INSTALL = :
+-POST_INSTALL = :
+-NORMAL_UNINSTALL = :
+-PRE_UNINSTALL = :
+-POST_UNINSTALL = :
+-host_triplet = @host@
+-pkgdatadir = @pkgdatadir@
+-
+-#CC= @CC@
+-#CFLAGS = @CFLAGS@
+-# For pentium gcc
+-# For PGCC
+-#CPPFLAGS = @CPPFLAGS@
+-
+-#DEFS = @DEFS@
+-#LDFLAGS = @LDFLAGS@
+-#LIBS = @LIBS@
+-#SHLD = @SHLD@
+-#SHCFLAGS = @SHCFLAGS@
+-#@SET_MAKE@
+-
+-#prefix = @prefix@
+-#exec_prefix = @exec_prefix@
+-#bindir = @bindir@
+-#libdir = @libdir@
+-#datadir = @datadir@
+-#mandir = @mandir@
+-pkglibdir = @pkglibdir@
+-ACLOCAL = @ACLOCAL@
+-ALSA_CFLAGS = @ALSA_CFLAGS@
+-ALSA_LIBS = @ALSA_LIBS@
+-AMDEP_FALSE = @AMDEP_FALSE@
+-AMDEP_TRUE = @AMDEP_TRUE@
+-AMTAR = @AMTAR@
+-AO_CFLAGS = @AO_CFLAGS@
+-AO_LIBS = @AO_LIBS@
+-ARTSCCONFIG = @ARTSCCONFIG@
+-ARTSINCL = @ARTSINCL@
+-ARTSLIBS = @ARTSLIBS@
+-AUTOCONF = @AUTOCONF@
+-AUTOHEADER = @AUTOHEADER@
+-AUTOMAKE = @AUTOMAKE@
+-AWK = @AWK@
+-A_so_libs = @A_so_libs@
+-BORLANDC_FALSE = @BORLANDC_FALSE@
+-BORLANDC_LDFLAGS = @BORLANDC_LDFLAGS@
+-BORLANDC_START = @BORLANDC_START@
+-BORLANDC_TRUE = @BORLANDC_TRUE@
+-CC = @CC@
+-CCDEPMODE = @CCDEPMODE@
+-CFLAGS = @CFLAGS@
+-CPP = @CPP@
+-CPPFLAGS = @CPPFLAGS@
+-CYGPATH_W = @CYGPATH_W@
+-DEFS = @DEFS@
+-DEPDIR = @DEPDIR@
+-DMC_FALSE = @DMC_FALSE@
+-DMC_LDFLAGS = @DMC_LDFLAGS@
+-DMC_TRUE = @DMC_TRUE@
+-ECHO_C = @ECHO_C@
+-ECHO_N = @ECHO_N@
+-ECHO_T = @ECHO_T@
+-EGREP = @EGREP@
+-ELFILES = @ELFILES@
+-EMACS = @EMACS@
+-ENABLE_ALSASEQ_FALSE = @ENABLE_ALSASEQ_FALSE@
+-ENABLE_ALSASEQ_TRUE = @ENABLE_ALSASEQ_TRUE@
+-ENABLE_DYNAMIC_TCLTK_FALSE = @ENABLE_DYNAMIC_TCLTK_FALSE@
+-ENABLE_DYNAMIC_TCLTK_TRUE = @ENABLE_DYNAMIC_TCLTK_TRUE@
+-ENABLE_DYNAMIC_XAW_FALSE = @ENABLE_DYNAMIC_XAW_FALSE@
+-ENABLE_DYNAMIC_XAW_TRUE = @ENABLE_DYNAMIC_XAW_TRUE@
+-ENABLE_EMACS_FALSE = @ENABLE_EMACS_FALSE@
+-ENABLE_EMACS_TRUE = @ENABLE_EMACS_TRUE@
+-ENABLE_GTK_FALSE = @ENABLE_GTK_FALSE@
+-ENABLE_GTK_TRUE = @ENABLE_GTK_TRUE@
+-ENABLE_MOTIF_FALSE = @ENABLE_MOTIF_FALSE@
+-ENABLE_MOTIF_TRUE = @ENABLE_MOTIF_TRUE@
+-ENABLE_NCURSES_FALSE = @ENABLE_NCURSES_FALSE@
+-ENABLE_NCURSES_TRUE = @ENABLE_NCURSES_TRUE@
+-ENABLE_NETWORK_FALSE = @ENABLE_NETWORK_FALSE@
+-ENABLE_NETWORK_TRUE = @ENABLE_NETWORK_TRUE@
+-ENABLE_NPSYN_FALSE = @ENABLE_NPSYN_FALSE@
+-ENABLE_NPSYN_TRUE = @ENABLE_NPSYN_TRUE@
+-ENABLE_PLUGIN_FALSE = @ENABLE_PLUGIN_FALSE@
+-ENABLE_PLUGIN_TRUE = @ENABLE_PLUGIN_TRUE@
+-ENABLE_PORTMIDISYN_FALSE = @ENABLE_PORTMIDISYN_FALSE@
+-ENABLE_PORTMIDISYN_TRUE = @ENABLE_PORTMIDISYN_TRUE@
+-ENABLE_SERVER_FALSE = @ENABLE_SERVER_FALSE@
+-ENABLE_SERVER_TRUE = @ENABLE_SERVER_TRUE@
+-ENABLE_SLANG_FALSE = @ENABLE_SLANG_FALSE@
+-ENABLE_SLANG_TRUE = @ENABLE_SLANG_TRUE@
+-ENABLE_SOUND_SPEC_FALSE = @ENABLE_SOUND_SPEC_FALSE@
+-ENABLE_SOUND_SPEC_TRUE = @ENABLE_SOUND_SPEC_TRUE@
+-ENABLE_TCLTK_FALSE = @ENABLE_TCLTK_FALSE@
+-ENABLE_TCLTK_TRUE = @ENABLE_TCLTK_TRUE@
+-ENABLE_VT100_FALSE = @ENABLE_VT100_FALSE@
+-ENABLE_VT100_TRUE = @ENABLE_VT100_TRUE@
+-ENABLE_W32GUI_FALSE = @ENABLE_W32GUI_FALSE@
+-ENABLE_W32GUI_TRUE = @ENABLE_W32GUI_TRUE@
+-ENABLE_W32G_SYN_FALSE = @ENABLE_W32G_SYN_FALSE@
+-ENABLE_W32G_SYN_TRUE = @ENABLE_W32G_SYN_TRUE@
+-ENABLE_WINSYN_FALSE = @ENABLE_WINSYN_FALSE@
+-ENABLE_WINSYN_TRUE = @ENABLE_WINSYN_TRUE@
+-ENABLE_WRD_FALSE = @ENABLE_WRD_FALSE@
+-ENABLE_WRD_TRUE = @ENABLE_WRD_TRUE@
+-ENABLE_XAW_FALSE = @ENABLE_XAW_FALSE@
+-ENABLE_XAW_TRUE = @ENABLE_XAW_TRUE@
+-ENABLE_XDND_FALSE = @ENABLE_XDND_FALSE@
+-ENABLE_XDND_TRUE = @ENABLE_XDND_TRUE@
+-ENABLE_XSKIN_FALSE = @ENABLE_XSKIN_FALSE@
+-ENABLE_XSKIN_TRUE = @ENABLE_XSKIN_TRUE@
+-ESD_CFLAGS = @ESD_CFLAGS@
+-ESD_CONFIG = @ESD_CONFIG@
+-ESD_LIBS = @ESD_LIBS@
+-EXEEXT = @EXEEXT@
+-EXTRALIBS = @EXTRALIBS@
+-GTK_CFLAGS = @GTK_CFLAGS@
+-GTK_CONFIG = @GTK_CONFIG@
+-GTK_LIBS = @GTK_LIBS@
+-INSTALL_DATA = @INSTALL_DATA@
+-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = @INSTALL_SCRIPT@
+-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+-INTERFACE_SRCS = @INTERFACE_SRCS@
+-LDFLAGS = @LDFLAGS@
+-LIBFLAC_CFLAGS = @LIBFLAC_CFLAGS@
+-LIBFLAC_LIBS = @LIBFLAC_LIBS@
+-LIBOBJS = @LIBOBJS@
+-LIBOGGFLAC_CFLAGS = @LIBOGGFLAC_CFLAGS@
+-LIBOGGFLAC_LIBS = @LIBOGGFLAC_LIBS@
+-LIBS = @LIBS@
+-LN_S = @LN_S@
+-LTLIBOBJS = @LTLIBOBJS@
+-MAINT = @MAINT@
+-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+-MAKEINFO = @MAKEINFO@
+-MINGWGCC_FALSE = @MINGWGCC_FALSE@
+-MINGWGCC_TRUE = @MINGWGCC_TRUE@
+-MSYS_FALSE = @MSYS_FALSE@
+-MSYS_TRUE = @MSYS_TRUE@
+-NEEDDLOPEN_FALSE = @NEEDDLOPEN_FALSE@
+-NEEDDLOPEN_TRUE = @NEEDDLOPEN_TRUE@
+-NEEDGETOPT_FALSE = @NEEDGETOPT_FALSE@
+-NEEDGETOPT_TRUE = @NEEDGETOPT_TRUE@
+-NETSRCS = @NETSRCS@
+-OBJEXT = @OBJEXT@
+-OGG_CFLAGS = @OGG_CFLAGS@
+-OGG_LIBS = @OGG_LIBS@
+-PACKAGE = @PACKAGE@
+-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+-PACKAGE_NAME = @PACKAGE_NAME@
+-PACKAGE_STRING = @PACKAGE_STRING@
+-PACKAGE_TARNAME = @PACKAGE_TARNAME@
+-PACKAGE_VERSION = @PACKAGE_VERSION@
+-PATH_SEPARATOR = @PATH_SEPARATOR@
+-PKG_CONFIG = @PKG_CONFIG@
+-POCC_FALSE = @POCC_FALSE@
+-POCC_LDFLAGS = @POCC_LDFLAGS@
+-POCC_TRUE = @POCC_TRUE@
+-P_so_libs = @P_so_libs@
+-RANLIB = @RANLIB@
+-SET_MAKE = @SET_MAKE@
+-SHCFLAGS = @SHCFLAGS@
+-
+-SHELL = @SHELL@
+-SHLD = @SHLD@
+-STRIP = @STRIP@
+-SYSEXTRAS = @SYSEXTRAS@
+-T_so_libs = @T_so_libs@
+-VCPP_FALSE = @VCPP_FALSE@
+-VCPP_LDFLAGS = @VCPP_LDFLAGS@
+-VCPP_TRUE = @VCPP_TRUE@
+-VERSION = @VERSION@
+-VORBISENC_LIBS = @VORBISENC_LIBS@
+-VORBISFILE_LIBS = @VORBISFILE_LIBS@
+-VORBIS_CFLAGS = @VORBIS_CFLAGS@
+-VORBIS_LIBS = @VORBIS_LIBS@
+-W32G_GUI_FALSE = @W32G_GUI_FALSE@
+-W32G_GUI_TRUE = @W32G_GUI_TRUE@
+-W32READDIR_FALSE = @W32READDIR_FALSE@
+-W32READDIR_TRUE = @W32READDIR_TRUE@
+-WATCOM_C_FALSE = @WATCOM_C_FALSE@
+-WATCOM_C_TRUE = @WATCOM_C_TRUE@
+-WATCOM_LDFLAGS = @WATCOM_LDFLAGS@
+-WINDRV_FALSE = @WINDRV_FALSE@
+-WINDRV_TRUE = @WINDRV_TRUE@
+-WISH = @WISH@
+-W_so_libs = @W_so_libs@
+-XAW_INSTALL_RESOURCE_FILES_FALSE = @XAW_INSTALL_RESOURCE_FILES_FALSE@
+-XAW_INSTALL_RESOURCE_FILES_TRUE = @XAW_INSTALL_RESOURCE_FILES_TRUE@
+-X_CFLAGS = @X_CFLAGS@
+-X_EXTRA_LIBS = @X_EXTRA_LIBS@
+-X_LIBS = @X_LIBS@
+-X_PRE_LIBS = @X_PRE_LIBS@
+-a_so_libs = @a_so_libs@
+-ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+-am__include = @am__include@
+-am__leading_dot = @am__leading_dot@
+-am__quote = @am__quote@
+-bindir = @bindir@
+-build = @build@
+-build_alias = @build_alias@
+-build_cpu = @build_cpu@
+-build_os = @build_os@
+-build_vendor = @build_vendor@
+-datadir = @datadir@
+-dynamic_targets = @dynamic_targets@
+-e_so_libs = @e_so_libs@
+-exec_prefix = @exec_prefix@
+-g_so_libs = @g_so_libs@
+-host = @host@
+-host_alias = @host_alias@
+-host_cpu = @host_cpu@
+-host_os = @host_os@
+-host_vendor = @host_vendor@
+-i_so_libs = @i_so_libs@
+-includedir = @includedir@
+-infodir = @infodir@
+-install_sh = @install_sh@
+-k_so_libs = @k_so_libs@
+-libdir = @libdir@
+-libexecdir = @libexecdir@
+-lispdir = @lispdir@
+-localstatedir = @localstatedir@
+-m_so_libs = @m_so_libs@
+-mandir = @mandir@
+-n_so_libs = @n_so_libs@
+-oldincludedir = @oldincludedir@
+-p_so_libs = @p_so_libs@
+-prefix = @prefix@
+-program_transform_name = @program_transform_name@
+-r_so_libs = @r_so_libs@
+-s_so_libs = @s_so_libs@
+-sbindir = @sbindir@
+-sharedstatedir = @sharedstatedir@
+-so = @so@
+-sysconfdir = @sysconfdir@
+-target = @target@
+-target_alias = @target_alias@
+-target_cpu = @target_cpu@
+-target_os = @target_os@
+-target_vendor = @target_vendor@
+-tcltk_dep = @tcltk_dep@
+-timidity_LDFLAGS = @timidity_LDFLAGS@
+-w_so_libs = @w_so_libs@
+-xawresdir = @xawresdir@
+-#INSTALL = @INSTALL@
+-
+-# Where to install the patches, config files.
+-PKGDATADIR = $(pkgdatadir)
+-
+-# Where to install the Tcl code and the bitmaps.
+-# It also contains bitmaps which are shared with XAW interface.
+-PKGLIBDIR = $(pkglibdir)
+-
+-# Where to install the dynamic link interface.
+-SHLIB_DIR = $(pkglibdir)
+-
+-# Where to install timidity.el
+-ELISP_DIR = $(lispdir)
+-
+-# Where to install TiMidity.ad
+-XAWRES = ${xawresdir}/app-defaults
+-XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
+-
+-# If you want to change TCL_DIR, please do follows.
+-# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
+-# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
+-TCL_DIR = $(PKGLIBDIR)
+-
+-# Define the timidity default file search path.
+-DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
+-
+-# You sould not change follows definitions. 
+-DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
+-DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
+-DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
+-BITMAP_DIR = $(TCL_DIR)/bitmaps
+-
+-AM_FLAGS = $(CFLAGS)
+-
+-INCLUDES = \
+-	-I$(top_srcdir) \
+-	-I$(top_srcdir)/libarc \
+-	-I$(top_srcdir)/libunimod \
+-	-I$(top_srcdir)/interface \
+-	-I$(top_srcdir)/utils \
+-	-I$(top_srcdir)/timidity \
+-	$(EXTRAINCS)
+-
+-
+- at WINDRV_TRUE@noinst_SCRIPTS = timiditydrv.dll
+- at WINDRV_TRUE@noinst_LIBRARIES = libtimiditydrv.a
+-
+-libtimiditydrv_a_SOURCES = \
+-	timiditydrv.c \
+-	timiwp_timidity.h \
+-	timiwp_timidity.c \
+-	timiditydrv.def \
+-	mmddk.h
+-
+-
+-EXTRA_DIST = \
+-	 timiditydrv.inf  \
+-	 timiditydrv.idl
+-
+-
+- at MINGWGCC_TRUE@libtimiditydrv_a_LIBADD = \
+- at MINGWGCC_TRUE@	$(top_builddir)/timidity/timidity.exe \
+- at MINGWGCC_TRUE@	$(top_builddir)/interface/libinterface.a \
+- at MINGWGCC_TRUE@	$(top_builddir)/libarc/libarc.a \
+- at MINGWGCC_TRUE@	$(top_builddir)/libunimod/libunimod.a \
+- at MINGWGCC_TRUE@	$(top_builddir)/utils/libutils.a 
+-
+- at DMC_TRUE@@MINGWGCC_FALSE at libtimiditydrv_a_LIBADD = \
+- at DMC_TRUE@@MINGWGCC_FALSE@	interface.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	arc.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	unimod.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	utils.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	timidity.lib
+-
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE at libtimiditydrv_a_LIBADD = \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/interface/interface.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/utils/utils.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/timidity/timidity.lib
+-
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE at libtimiditydrv_a_LIBADD = \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/interface/interface.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/utils/utils.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/timidity/timidity.exe
+-
+- at MINGWGCC_TRUE@libtimiditydrv_a_dep = \
+- at MINGWGCC_TRUE@	$(top_builddir)/timidity/timidity.exe \
+- at MINGWGCC_TRUE@	$(top_builddir)/interface/libinterface.a \
+- at MINGWGCC_TRUE@	$(top_builddir)/libarc/libarc.a \
+- at MINGWGCC_TRUE@	$(top_builddir)/libunimod/libunimod.a \
+- at MINGWGCC_TRUE@	$(top_builddir)/utils/libutils.a 
+-
+- at DMC_TRUE@@MINGWGCC_FALSE at libtimiditydrv_a_dep = \
+- at DMC_TRUE@@MINGWGCC_FALSE@	$(top_builddir)/interface/interface.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	$(top_builddir)/utils/utils.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@	$(top_builddir)/timidity/timidity.lib
+-
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE at libtimiditydrv_a_dep = \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/interface/interface.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/utils/utils.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/timidity/timidity.lib
+-
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE at libtimiditydrv_a_dep = \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/interface/interface.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/utils/utils.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/timidity/timidity.exe
+-
+-
+-#   POCC
+-#    DMC
+-#    MINGWGCC
+-DRV_LIBS = \
+-	kernel32.lib winspool.lib comdlg32.lib advapi32.lib oleaut32.lib \
+-	uuid.lib odbc32.lib wsock32.lib user32.lib shell32.lib winmm.lib wsock32.lib
+-
+-
+-#	kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib \
+-#	advapi32.lib shell32.lib ole32.lib oleaut32.lib odbc32.lib odbccp32.lib \
+-#	ksguid.lib ksuser.lib
+- at VCPP_TRUE@VC_LINK = link.exe -dll -def:timiditydrv.def -implib:timiditydrv.lib -out:timiditydrv.dll
+- at POCC_TRUE@@VCPP_FALSE at POCC_LINK = polink.exe -dll -def:timiditydrv.def -implib:timiditydrv.lib -out:timiditydrv.dll
+- at DMC_TRUE@@POCC_FALSE@@VCPP_FALSE at DMC_LINK = dmc.exe -WD
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE at BORLANDC_LINK = ilink32.exe -Tpd
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at WATCOM_LINK = link386.exe -dll -def:timiditydrv.def -implib:timiditydrv.lib -out:timiditydrv.dll
+-subdir = windrv
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-mkinstalldirs = $(SHELL) $(top_srcdir)/autoconf/mkinstalldirs
+-CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/interface.h
+-CONFIG_CLEAN_FILES =
+-LIBRARIES = $(noinst_LIBRARIES)
+-
+-libtimiditydrv_a_AR = $(AR) cru
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/interface/interface.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/utils/utils.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_TRUE@	$(top_builddir)/timidity/timidity.lib
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/interface/interface.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/libarc/arc.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/libunimod/unimod.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/utils/utils.lib \
+- at DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@	$(top_builddir)/timidity/timidity.exe
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_TRUE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/timidity/timidity.exe \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/interface/libinterface.a \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/libarc/libarc.a \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/libunimod/libunimod.a \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/utils/libutils.a
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/timidity/timidity.exe \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/utils/libutils.a
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_TRUE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_TRUE@	interface.lib arc.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_TRUE@	unimod.lib utils.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_TRUE@	timidity.lib
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@	interface.lib arc.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@	unimod.lib utils.lib \
+- at DMC_TRUE@@MINGWGCC_FALSE@@POCC_FALSE@	timidity.lib
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_TRUE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/timidity/timidity.exe \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/interface/libinterface.a \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/libarc/libarc.a \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/libunimod/libunimod.a \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_TRUE@	$(top_builddir)/utils/libutils.a
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE at libtimiditydrv_a_DEPENDENCIES = \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/timidity/timidity.exe \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/interface/libinterface.a \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/libarc/libarc.a \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/libunimod/libunimod.a \
+- at DMC_TRUE@@MINGWGCC_TRUE@@POCC_FALSE@	$(top_builddir)/utils/libutils.a
+-am_libtimiditydrv_a_OBJECTS = timiditydrv.$(OBJEXT) \
+-	timiwp_timidity.$(OBJEXT)
+-libtimiditydrv_a_OBJECTS = $(am_libtimiditydrv_a_OBJECTS)
+-SCRIPTS = $(noinst_SCRIPTS)
+-
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/autoconf/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/timiditydrv.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/timiwp_timidity.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DIST_SOURCES = $(libtimiditydrv_a_SOURCES)
+-DIST_COMMON = $(top_srcdir)/common.makefile.in Makefile.am Makefile.in
+-SOURCES = $(libtimiditydrv_a_SOURCES)
+-
+-all: all-am
+-
+-.SUFFIXES:
+-.SUFFIXES: .c .o .obj
+-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/common.makefile.in $(top_srcdir)/configure.in $(ACLOCAL_M4)
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  windrv/Makefile
+-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  $(top_builddir)/config.status
+-	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+-
+-AR = ar
+-
+-clean-noinstLIBRARIES:
+-	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/timiditydrv.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/timiwp_timidity.Po at am__quote@
+-
+-distclean-depend:
+-	-rm -rf ./$(DEPDIR)
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+-tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
+-
+-ctags: CTAGS
+-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
+-
+-distclean-tags:
+-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-
+-top_distdir = ..
+-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+-
+-distdir: $(DISTFILES)
+-	$(mkinstalldirs) $(distdir)/..
+-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+-	list='$(DISTFILES)'; for file in $$list; do \
+-	  case $$file in \
+-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+-	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+-	  esac; \
+-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+-	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+-	    dir="/$$dir"; \
+-	    $(mkinstalldirs) "$(distdir)$$dir"; \
+-	  else \
+-	    dir=''; \
+-	  fi; \
+-	  if test -d $$d/$$file; then \
+-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+-	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+-	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
+-	    || exit 1; \
+-	  fi; \
+-	done
+-check-am: all-am
+-check: check-am
+-all-am: Makefile $(LIBRARIES) $(SCRIPTS)
+-
+-installdirs:
+-install: install-am
+-install-exec: install-exec-am
+-install-data: install-data-am
+-uninstall: uninstall-am
+-
+-install-am: all-am
+-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+-
+-installcheck: installcheck-am
+-install-strip:
+-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+-	  INSTALL_STRIP_FLAG=-s \
+-	  `test -z '$(STRIP)' || \
+-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+-mostlyclean-generic:
+-
+-clean-generic:
+-
+-distclean-generic:
+-	-rm -f Makefile $(CONFIG_CLEAN_FILES)
+-
+-maintainer-clean-generic:
+-	@echo "This command is intended for maintainers to use"
+-	@echo "it deletes files that may require special tools to rebuild."
+-clean: clean-am
+-
+-clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+-
+-distclean: distclean-am
+-
+-distclean-am: clean-am distclean-compile distclean-depend \
+-	distclean-generic distclean-tags
+-
+-dvi: dvi-am
+-
+-dvi-am:
+-
+-info: info-am
+-
+-info-am:
+-
+-install-data-am:
+-
+-install-exec-am:
+-
+-install-info: install-info-am
+-
+-install-man:
+-
+-installcheck-am:
+-
+-maintainer-clean: maintainer-clean-am
+-
+-maintainer-clean-am: distclean-am maintainer-clean-generic
+-
+-mostlyclean: mostlyclean-am
+-
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
+-
+-pdf: pdf-am
+-
+-pdf-am:
+-
+-ps: ps-am
+-
+-ps-am:
+-
+-uninstall-am: uninstall-info-am
+-
+-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-noinstLIBRARIES ctags distclean distclean-compile \
+-	distclean-depend distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-man install-strip installcheck \
+-	installcheck-am installdirs maintainer-clean \
+-	maintainer-clean-generic mostlyclean mostlyclean-compile \
+-	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am
+-
+-
+-SYSEXTRAS: timiditydrv.h
+-
+- at VCPP_TRUE@timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) $(libtimiditydrv_a_dep)
+- at VCPP_TRUE@	@rm -f $@
+- at VCPP_TRUE@	$(VC_LINK) $(VCPP_LDFLAGS) $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_LIBADD) $(LIBS)
+-
+- at POCC_TRUE@@VCPP_FALSE at timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) $(libtimiditydrv_a_dep)
+- at POCC_TRUE@@VCPP_FALSE@	@rm -f $@
+- at POCC_TRUE@@VCPP_FALSE@	$(POCC_LINK) $(POCC_LDFLAGS) $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_LIBADD) $(LIBS)
+-# -def:timiditydrv.def -implib:timiditydrv.lib -out:timiditydrv.dll
+-
+- at DMC_TRUE@@POCC_FALSE@@VCPP_FALSE at timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_dep)
+- at DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@	@rm -f $@ *.lib
+- at DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@	cp $(libtimiditydrv_a_dep) .
+- at DMC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(DMC_LINK) $(DMC_LDFLAGS) $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_LIBADD) $(LIBS) timiditydrv.def -output $@
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE at timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) $(libtimiditydrv_a_dep)
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	@rm -f $@
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(BORLANDC_LINK) C0D32.OBJ $(libtimiditydrv_a_OBJECTS) \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)\\interface\\interface.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)\\libarc\\arc.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)\\libunimod\\unimod.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)\\utils\\utils.lib \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(top_builddir)\\timidity\\timidity.exe \
+- at BORLANDC_TRUE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@	$(DRV_LIBS),$@,,import32.lib cw32mti.lib,timiditydrv.def
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE at timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) $(libtimiditydrv_a_dep)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@	@rm -f $@
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@	gcc -shared -def-file timiditydrv.def -Wl,--dll -Wl,--enable-stdcall-fixup -Wl,--out-implib libtimiditydrv.a -o $@ \
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_TRUE@@POCC_FALSE@@VCPP_FALSE@	$(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_LIBADD) $(LIBS)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE at timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) $(libtimiditydrv_a_dep)
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	@rm -f libtimi_p_dll.a
+- at BORLANDC_FALSE@@DMC_FALSE@@MINGWGCC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@	$(WATCOM_LINK) $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_LIBADD) $(LIBS)
+-
+-#WATCOM_LINK = wlink
+-#timiditydrv.dll: libtimiditydrv.a $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) $(libtimiditydrv_a_dep)
+-#	@rm -f $@
+-#	$(WATCOM_LINK) SYSTEM nt_dll initinstance terminstance \
+-#	`for foo in $(libtimiditydrv_a_OBJECTS) ; do echo "File $$foo "; done;` \
+-#	Name $@ \
+-#	Library $(top_builddir)\\interface\\interface.lib \
+-#	Library $(top_builddir)\\libarc\\arc.lib \
+-#	Library $(top_builddir)\\libunimod\\unimod.lib \
+-#	Library $(top_builddir)\\utils\\utils.lib \
+-#	Library $(top_builddir)\\timidity\\timidity.exe \
+-#	`for foo in  $(DRV_LIBS) ; do echo "Library $$foo"; done;` \
+-#	EXPort DllCanUnloadNow,DllGetClassObject,DllRegisterServer,DllUnregisterServer,DriverProc,modMessage
+-#     WATCOM_C
+-#    MINGWGCC
+-#     BORLANDC
+-#    DMC
+-#    POCC
+-#    VCPP
+-
+-libtimiditydrv.a: $(libtimiditydrv_a_OBJECTS)  $(libtimiditydrv_a_dep)
+-	touch $@ 
+-
+-objs: $(libtimiditydrv_a_OBJECTS) $(libtimiditydrv_a_DEPENDENCIES) 
+-	@:
+-
+-uninstall-info-am:
+-
+-clean:
+-	-rm -f *.o *.a *.dll *.obj *.RES  *.lib
+-# Tell versions [3.59,3.63) of GNU make to not export all variables.
+-# Otherwise a system limit (for SysV at least) may be exceeded.
+-.NOEXPORT:
+-- 
+1.7.7.3
+
diff --git a/0013-rename-INSTALL-INSTALL.en.patch b/0013-rename-INSTALL-INSTALL.en.patch
new file mode 100644
index 0000000..d164d99
--- /dev/null
+++ b/0013-rename-INSTALL-INSTALL.en.patch
@@ -0,0 +1,1292 @@
+From 524dc6b96f467dcee0e6b4467c4388dfe0f6ba2e Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 11:10:40 +0100
+Subject: [PATCH 13/17] rename INSTALL INSTALL.en
+
+To get it out of the way for autoreconf.
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ INSTALL    |  631 ------------------------------------------------------------
+ INSTALL.en |  631 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 2 files changed, 631 insertions(+), 631 deletions(-)
+ delete mode 100644 INSTALL
+ create mode 100644 INSTALL.en
+
+diff --git a/INSTALL b/INSTALL
+deleted file mode 100644
+index 7937bc8..0000000
+--- a/INSTALL
++++ /dev/null
+@@ -1,631 +0,0 @@
+-======================================================================
+-	TiMidity++ Installation guide
+-
+-					Masanao Izumo
+-					<iz at onicos.co.jp>
+-					Mar.01.2004
+-					version 2.13.0 or later
+-======================================================================
+-
+-This document describes how to install TiMidity++ for your UNIX-like
+-machine.
+-
+-You can configure and make timidity.exe on the Cygwin environment of
+-Windows 95/98/Me/NT/2000/XP/2003.  If you are in Windows, install
+-Cygwin (or mingw) if you do not have them.
+-
+-Today's Macintosh has FreeBSD userland, so things described here would
+-fly.  Methods for older Macintosh ("Classic") are not described here.
+-
+-======================================================================
+-Basic Installation
+-======================================================================
+-
+-TiMidity++ uses GNU autotools to build.  So the simplest way to
+-compile this package is:
+-
+-1. "cd" to the directory containing TiMidity++'s source code and type
+-   "./configure" to configure the package for your system.  If you are
+-   using csh on an old version of System V, you might need to type
+-   "/bin/sh configure" instead to prevent csh from trying to execute
+-   configure itself.  Running configure takes a while.  While running,
+-   it prints some messages telling which features it is checking for.
+-2. Type "make" to compile the package.
+-   NOTE: this make method requires GNU make.  So if your system has it
+-         as gamke, type "gmake" instead.
+-3. Type "make install" to install the programs and any data files and
+-   documentation.
+-
+-======================================================================
+-More complecated way
+-======================================================================
+-
+-The full installation process is:
+-
+-1. configre
+-2. edit common.makefile, Makefile, timidity.h if necessery
+-3. make
+-4. installation
+-5. set up voice data
+-
+-Each processes are explained in following sections.  Note that % is
+-the shell prompt.
+-
+-======================================================================
+-Configure
+-======================================================================
+-
+-First, execute the following command:
+-
+-% /bin/sh configure --help
+-
+-Many options of configure will be displayed.  Most of them, such as
+---help, --prefix=PREFIX, and so on are the regular ones.  They exisits
+-on most package that uses autoconf and you do not have to worry about
+-their behavior.
+-
+-There also exists some options that is typical to TiMidity++.  Main of
+-these are the following:
+-
+---enable-debug
+-  Enables debug.  Things will be compiled with debugging methods/
+-  informations.
+-
+---without-x
+-  TiMidity++ uses X by default.  So you must specify this option to
+-  prevent linker from linking X libraries.
+-
+---enable-audio[=audio_list]
+-  Enables TiMidity++ to play MIDI files.  If --enable-audio=no,
+-  TiMidity++ acts as a MIDI-to-WAVE converter.
+-
+-  You can specify one or more audio-device listed below.
+-
+-  * default: Automatically select audio device.
+-  * oss: OSS /dev/dsp
+-  * sun: SunOS /dev/audio
+-  * hpux: hp-ux /dev/audio
+-  * irix: IRIX audio library
+-  * mme: OSF/1 MME
+-  * sb_dsp: BSD/OS 2.0 /dev/sb_dsp
+-  * w32: Windows MMS
+-  * darwin: darwin(Mac OS X)'s CoreAudio frameowrk
+-  * alsa: ALSA pcm device
+-  * alib: hp-ux network audio (Alib)
+-  * nas: NAS
+-  * portaudio: PortAudio
+-  * jack: JACK
+-  * arts: aRts
+-  * esd: EsounD
+-  * vorbis: ogg vorbis
+-  * gogo: mp3 Gogo-No-Coder (Windows only)
+-
+---enable-interface[=interface_list]
+---enable-dynamic[=interface_list]
+-  Specify which interface to use.  If you use --enable-dynamic instead
+-  of --enable-interface, the interfaces specified will be linked
+-  dynamically and the binary size would become a bit smaller.
+-
+-  You can select one or more interfaces listed below.
+-
+-  * ncurses: ncurses interface.
+-  * slang: S-Lang interface.
+-  * motif: Motif interface.  Motif interface also works under Lestiff.
+-  * tcltk: Tcl/Tk interface.
+-  * emacs: Emacs front-end.  Type M-x timidity to invoke.
+-  * vt100: The full-screen interface using vt100 terminal control codes.
+-  * xaw: X Athena Widget interface.
+-  * xskin: X skin interface.
+-  * gtk: GTK+ interface.
+-  * w32gui: Build as Windows GUI binary.
+-  * winsyn: Build as TiMidity++ Windows Synthesizer server.
+-  * alsaseq: Build as ALSA sequencer client.
+-
+-  Note that
+-  --enable-interface=INTERFACE1,INTERFACE2,...
+-  equals as
+-  --enable-INTERFACE1=yes --enable-INTERFACE2=yes ...
+-  and for the same way,
+-  --enable-dynamic=INTERFACE1,INTERFACE2,...
+-  equals as
+-  --enable-INTERFACE1=dynamic --enable-INTERFACE2=dynamic ...
+-
+---enable-network
+-  Enables network support.  This will allow TiMidity++ to open a MIDI
+-  file via network.  You can specify the location of MIDI files by
+-  http://foo.com.tw/bar/baz.mid - like format.
+-
+---enable-spectrogram
+-  With this option specified, TiMidity++ can open a window on X and
+-  show sound-spectrogram there.
+-
+---enable-wrd
+-  WRD is a Japanese local lyric-contents format.  This option enables
+-  WRD interface.
+-
+-* Environment variables and flags to pass to configure
+-
+-Some MIDI files eat too much CPU power.  If you choose correct
+-optimizing method, TiMidity++ can play such MIDI files smoothly.
+-
+-You can tell configure which optimizing method to use by following
+-environmental variables:
+-
+-CC
+-  the C compiler command e.g. "/usr/bin/gcc"
+-
+-CFLAGS
+-  flags to pass to ${CC} e.g. "-O2 -pipe"
+-
+-LDFLAGS
+-  flags to pass to linker e.g. "-L/usr/gnu/lib"
+-
+-CPPFLAGS
+-  flags to pass to preprocessor e.g. "-traditional-cpp"
+-
+-Your compiler may have many optimization flags.  For example, in case
+-of ultrasparc/gcc, you can specify:
+-
+-% env CFLAGS='-O3 -Wall -mv8 -funroll-all-loops -fomit-frame-pointer \
+-	-mcpu=ultrasparc' /bin/sh configure [configure-options]...
+-
+-and the binary will (hopefully) run faster.
+-
+-======================================================================
+-Edit some files
+-======================================================================
+-
+-If make fails, or if you want to change some parameters, edit
+-common.makefile, Makefile, or timidity.h manually.
+-
+-* Parameters in timidity.h
+-
+-There are some options that are hard-coded into timidity binary.  They
+-are # define-ed in timidity.h.  You have to change things there if you
+-want to change these flags.
+-
+-** CONFIG_FILE
+-
+-Edit CONFIG_FILE to your convenience.  By default,
+-
+-#define CONFIG_FILE DEFAULT_PATH "/timidity.cfg"
+-
+-are recommended.  DEFAULT_PATH is the same as TIMID_DIR in Makefile.
+-
+-If you want to place it to another path, specify as the following:
+-
+-#define CONFIG_FILE "/etc/timidity.cfg"
+-
+-** DECOMPRESSOR_LIST
+-
+-The file extractor (please ignore in Windows).  By default:
+-
+-#define DECOMPRESSOR_LIST { \
+-		".gz", "gunzip -c %s", \
+-		".bz2", "bunzip2 -c %s", \
+-		".Z", "zcat %s", \
+-		".zip", "unzip -p %s", \
+-		".lha", "lha -pq %s", \
+-		".lzh", "lha -pq %s", \
+-		".shn", "shorten -x %s -", \
+-		0 }
+-
+-TiMidity++ can handle some of archive format directly.  But other
+-format will use this extractor.
+-
+-** PATCH_CONVERTERS
+-
+-Configuration of of patch file converter (please ignore in Windows).
+-By default:
+-
+-#define PATCH_CONVERTERS { \
+-		".wav", "wav2pat %s", \
+-		0 }
+-
+-** PATCH_EXT_LIST
+-
+-Configuration of extensions of GUS/patch file.  If specified in this
+-configuration, the extension can omit in all *.cfg.  By default:
+-
+-#define PATCH_EXT_LIST { \
+-		".pat", \
+-		".shn", ".pat.shn", \
+-		".gz", ".pat.gz", \
+-		".bz2", ".pat.bz2", \
+-		0 }
+-
+-** DEFAULT_PROGRAM
+-
+-Configuration of default instrument.  By default:
+-
+-#define DEFAULT_PROGRAM 0
+-
+-If no Program Change event, this program name are adopted.  Usually 0
+-is Piano.
+-
+-** DEFAULT_DRUMCHANNELS
+-
+-Configuration of drum channel.  By default:
+-
+-#define DEFAULT_DRUMCHANNELS {10, -1}
+-
+-Numbers are the list of drum channels, and -1 is the terminator.  For
+-example, if you wish to default drum channel be 10 and 16,
+-
+-#define DEFAULT_DRUMCHANNELS {10, 16, -1}
+-
+-This channel can change in command line option.
+-
+-** FLOAT_T
+-
+-Type of floating point number.  Choose one of these:
+-
+-* typedef double FLOAT_T;
+-* typedef float FLOAT_T;
+-
+-Many machine which has FPU results faster operations with double than
+-that with float.  But some machine results contrary.
+-
+-** (MAX|MIN)_OUTPUT_RATE
+-
+-Minimum/maximum range of playing sample rate.  By default:
+-
+-#define MIN_OUTPUT_RATE 4000
+-#define MAX_OUTPUT_RATE 65000
+-
+-** DEFAULT_AMPLIFICATION
+-
+-Default value of master volume.  By default:
+-
+-#define DEFAULT_AMPLIFICATION 70
+-
+-This number is the percentage of max volume.  This default value will
+-be nice in any occasions.  This number can specify in command line
+-option (-A).
+-
+-** DEFAULT_RATE
+-
+-Default sampling rate.  By default:
+-
+-#define DEFAULT_RATE 44100
+-
+-If you have much CPU power, DAT quality GUS/patch and want to listen
+-funny sound,
+-
+-#define DEFAULT_RATE 48000
+-
+-is good solution.
+-
+-** DEFAULT_VOICES
+-
+-Configuration of default polyphony numbers.  By default:
+-
+-#define DEFAULT_VOICES 256
+-
+-DEFAULT_VOICE is the polyphony number in boot-time.  This value is
+-configurable by the command line option (-p) from 1 to until memory is
+-allowed.  If your machine has much CPU power,
+-
+-#define DEFAULT_VOICES 512
+-
+-enables good harmony.
+-
+-** AUDIO_BUFFER_BITS
+-
+-Size of internal buffer.  By default:
+-
+-#define AUDIO_BUFFER_BITS 12
+-
+-I guess this values no need to change.
+-
+-** CONTROLS_PER_SECOND
+-
+-TiMidity++ do not calculate every envelope changes, but calculate some
+-samples at one time.  Small controls yields better quality sound, but
+-also eat much CPU time.  By default:
+-
+-#define CONTROLS_PER_SECOND 1000
+-
+-This can be changed from command line.  Leave as it is.
+-
+-** DEFAULT_RESAMPLATION
+-
+-Type of interpolation engine.  By default:
+-
+-#define DEFAULT_RESAMPLATION resample_gauss
+-
+-This definition cause TiMidity++ to Gauss-like interpolation in re-
+-sampling, and the quality of sound would be nice.  But it eats CPU
+-powers.  I recommend define it if your machine has much power.  Other
+-choices are (sorted by their speed):
+-
+-#define DEFAULT_RESAMPLATION resample_none
+-#define DEFAULT_RESAMPLATION resample_linear
+-#define DEFAULT_RESAMPLATION resample_lagrange
+-#define DEFAULT_RESAMPLATION resample_cspline
+-#define DEFAULT_RESAMPLATION resample_gauss
+-#define DEFAULT_RESAMPLATION resample_newton
+-
+-Interpolation methods are changeable from the command line.  If you
+-want to prevent users from doing so, uncomment next line and define as
+-this:
+-
+-#define FIXED_RESAMPLATION
+-
+-** USE_DSP_EFFECT
+-
+-Configuration of USE_DSP_EFFECT to refine chorus, delay, EQ and
+-insertion effect.  Default enabled.
+-
+-** LOOKUP_HACK
+-
+-Configuration of LOOKUP_HACK.  By default, this features are undefined
+-like this:
+-
+-/* #define LOOKUP_HACK */
+-/* #define LOOKUP_INTERPOLATION */
+-
+-This option saves a little CPU power, but sound quality would decrease
+-noticeably.  If your machine suffers from lack of CPU power, enable
+-it.
+-
+-** SMOOTH_MIXING
+-
+-Defining this greatly reduces popping due to large volume/pan changes.
+-This is definitely worth the slight increase in CPU usage.
+-
+-** FAST_DECAY
+-
+-Configuration of FAST_DECAY.  By default:
+-
+-/* #define FAST_DECAY */
+-
+-This option makes envelopes twice as fast and saves CPU power.  But
+-since the release time of voices is shorten, the sound would be poor.
+-This feature is controllable in command line option.
+-
+-** FRACTION_BITS
+-
+-TiMidity++ uses fixed-point calculation.  Its default is
+-
+-#define FRACTION_BITS 12
+-
+-and you don't have to change this value.
+-
+-** ADJUST_SAMPLE_VOLUMES
+-
+-Configuration of adjusting amplitude of GUS/patch.  By default:
+-
+-#define ADJUST_SAMPLE_VOLUMES
+-
+-This option makes TiMidity to adjust amplitudes of each GUS/patch to
+-same volume.
+-
+-** DENGEROUS_RENICE
+-
+-By default this feature is disabled:
+-
+-/* #define DANGEROUS_RENICE -15 */
+-
+-If you want to increase process priority of TiMidity++ by using setuid
+-root enable this option.  This option is only available in UNIX.  Once
+-you enabled this option, you should install timidity with the follow-
+-ing procedure:
+-
+-# chown root /usr/local/bin/timidity
+-# chmod u+s /usr/local/bin/timidity
+-
+-Note: You should not set setuid to timidity if DANGEROUS_RENICE isn't
+-      enabled.
+-
+-** MAX_DIE_TIME
+-
+-If this value is too small, click noise would be come.  Default is:
+-
+-#define MAX_DIE_TIME 20
+-
+-and I recommend this value leave to this.
+-
+-** LOOKUP_SINE
+-
+-#define LOOKUP_SINE
+-
+-On some machines (especially PCs without math coprocessors), looking
+-up sine values in a table will be significantly faster than computing
+-them on the fly.  I recommend define it.
+-
+-** PRECALC_LOOPS
+-
+-Configuration of optimizing re-sampling.  By default:
+-
+-#define PRECALC_LOOPS
+-
+-These may not in fact be faster on your particular machine and
+-compiler.
+-
+-** USE_LDEXP
+-
+-Configuration of use of ldexp().  By default this feature is disabled:
+-
+-/* #define USE_LDEXP */
+-
+-If your machine can multiply floating point number with ldexp() faster
+-than other method, enable this option.
+-
+-** DEFAULT_CACHE_DATA_SIZE
+-
+-Size of pre-re-sampling cache.  By default:
+-
+-#define DEFAULT_CACHE_DATA_SIZE (2*1024*1024)
+-
+-This can be changed from command line, so you don't have to change
+-here.
+-
+-* Configurations about network
+-
+-TiMidity++ can access any files via networks with URL.  This feature
+-are configurable in Makefile.  If you have enabled this feature in
+-Makefile (configure --enable-network), configure the following macros:
+-
+-** MAIL_DOMAIN
+-
+-specifies domain name of your name address.  If your name address is
+-"iz at onicos.co.jp" set the macro:
+-
+-#define MAIL_DOMAIN "@onicos.co.jp"
+-
+-** MAIL_NAME
+-
+-specifies mail name of yours if in Windows.  In UNIX, uncomment it.
+-For example, your name address is "iz at onicos.co.jp" set the macro:
+-
+-#define MAIL_NAME "iz"
+-
+-** TMPDIR
+-
+-Configuration of temporary directory.  By default, this option is
+-disabled:
+-
+-/* #define TMPDIR "/var/tmp" */
+-
+-In UNIX, if this option is disabled TiMidity++ creates temporary files
+-in the path specified by the environment variable TMPDIR.  If environ-
+-ment variable TMPDIR also isn't defined, TiMidity++ creates temporary
+-files in /tmp.  In Windows, TMPDIR variable are ignored.  So you
+-should specify the temporary path with this macro.
+-
+-** GS_DRUMPART
+-
+-Recognizing GS drum part by GS exclusive message.
+-
+-#define GS_DRUMPART
+-
+-enables to recognize GS exclusive message to set drum part.
+-
+-/* #define GS_DRUMPART */
+-
+-disables this feature.
+-
+-* Japanese-text-handling related options
+-
+-There are some options for Japanese handling.
+-
+-** JAPANESE
+-
+-If your system is in Japanese environment, define
+-
+-#define JAPANESE
+-
+-otherwise comment it out like
+-
+-/* #define JAPANESE */
+-
+-** OUTPUT_TEXT_CODE
+-
+-specifies output text code (in Japanese environment).  You should
+-specify appropriate code name to OUTPUT_TEXT_CODE macro.  The follow-
+-ing strings are available:
+-
+-AUTO
+-  Auto conversion by `LANG' environment variable (UNIX only)
+-ASCII
+-  Convert unreadable characters to '.' (0x2e)
+-NOCNV
+-  No conversion
+-1251
+-  Convert from windows-1251 to koi8-r
+-EUC
+-  eucJP
+-JIS
+-  JIS
+-SJIS
+-  shift-JIS
+-
+-In Japanized UNIX system, all of above are available.  In Windows,
+-"ASCII", "NOCNV", "SJIS" are available.  If your environment cannot
+-handle Japanese, specify "ASCII" or "NOCNV" alternatively.
+-
+-** MODULATION_WHEEL_ALLOW
+-** PORTAMENTO_ALLOW
+-** NRPN_VIBRATO_ALLOW
+-** REVERB_CONTROL_ALLOW
+-** FREEVERB_CONTROL_ALLOW
+-** CHORUS_CONTROL_ALLOW
+-** SURROUND_CHORUS_ALLOW
+-** GM_CHANNEL_PRESSURE_ALLOW
+-** VOICE_CHAMBERLIN_LPF_ALLOW
+-** VOICE_MOOG_LPF_ALLOW
+-** MODULATION_ENVELOPE_ALLOW
+-** ALWAYS_TRACE_TEXT_META_EVENT
+-** OVERLAP_VOICE_ALLOW
+-** TEMPER_CONTROL_ALLOW
+-
+-Controllers of MIDI actions.  By default:
+-
+-#define MODULATION_WHEEL_ALLOW
+-#define PORTAMENTO_ALLOW
+-#define NRPN_VIBRATO_ALLOW
+-/* #define REVERB_CONTROL_ALLOW */
+-#define FREEVERB_CONTROL_ALLOW
+-#define CHORUS_CONTROL_ALLOW
+-/* #define SURROUND_CHORUS_ALLOW */
+-/* #define GM_CHANNEL_PRESSURE_ALLOW */
+-#define VOICE_CHAMBERLIN_LPF_ALLOW
+-/* #define VOICE_MOOG_LPF_ALLOW */
+-/* #define MODULATION_ENVELOPE_ALLOW */
+-/* #define ALWAYS_TRACE_TEXT_META_EVENT */
+-#define OVERLAP_VOICE_ALLOW
+-#define TEMPER_CONTROL_ALLOW
+-
+-These values are configurable in command line options.  So you may
+-leave these in default value.
+-
+-======================================================================
+-Make
+-======================================================================
+-
+-Make section has nothing particular to write.  Just say "make"
+-
+-...Oops, almost forgot, TiMidity++'s Makefile needs GNU version of
+-make.  If you do not have, get one first.  If you have one in a
+-different name than "make", type its true name instead.
+-
+-Installation
+-
+-On UNIX and clones, you can type "make install" to install all files.
+-Or you can select following targets:
+-
+-install.bin
+-  installs executable filles
+-install.tk
+-  installs Tcl/Tk interface
+-install.el
+-  installs Emacs interface
+-install.man
+-  installs man files
+-install
+-  installs everything
+-
+-I strongly recommend you to check the install destinations and files
+-by setteing -n flag like
+-
+-% make -n
+-
+-======================================================================
+-Search for voice data
+-======================================================================
+-
+-TiMidity++ uses Either GUS/patch, or SoundFont(, or both) as the voice
+-data to play.  You must get a SoundFont or GUS/patch files, and make
+-the configuration file.  You must make the configuration file (*.cfg).
+-By default, timidity.cfg is /usr/local/share/timidity/timidity.cfg (or
+-C:\WINDOWS\TIMIDITY.CFG on Windows).  And please check the following
+-sites for many voice(patch) data:
+-
+-* http://www.onicos.com/staff/iz/timidity/link.html#gus
+-* http://www.onicos.com/staff/iz/timidity/dist/cfg/ (Some sample *.cfg's)
+-* http://www.i.h.kyoto-u.ac.jp/~shom/timidity/ (10M and 4M patches)
+-* ftp://ftp.cdrom.com/pub/gus/sound/patches/files/ (GUS site)
+-
+-If you got funny voice archive, extract it to appropriate directory
+-and configure *.cfg files with the name and path of these voice datas.
+diff --git a/INSTALL.en b/INSTALL.en
+new file mode 100644
+index 0000000..7937bc8
+--- /dev/null
++++ b/INSTALL.en
+@@ -0,0 +1,631 @@
++======================================================================
++	TiMidity++ Installation guide
++
++					Masanao Izumo
++					<iz at onicos.co.jp>
++					Mar.01.2004
++					version 2.13.0 or later
++======================================================================
++
++This document describes how to install TiMidity++ for your UNIX-like
++machine.
++
++You can configure and make timidity.exe on the Cygwin environment of
++Windows 95/98/Me/NT/2000/XP/2003.  If you are in Windows, install
++Cygwin (or mingw) if you do not have them.
++
++Today's Macintosh has FreeBSD userland, so things described here would
++fly.  Methods for older Macintosh ("Classic") are not described here.
++
++======================================================================
++Basic Installation
++======================================================================
++
++TiMidity++ uses GNU autotools to build.  So the simplest way to
++compile this package is:
++
++1. "cd" to the directory containing TiMidity++'s source code and type
++   "./configure" to configure the package for your system.  If you are
++   using csh on an old version of System V, you might need to type
++   "/bin/sh configure" instead to prevent csh from trying to execute
++   configure itself.  Running configure takes a while.  While running,
++   it prints some messages telling which features it is checking for.
++2. Type "make" to compile the package.
++   NOTE: this make method requires GNU make.  So if your system has it
++         as gamke, type "gmake" instead.
++3. Type "make install" to install the programs and any data files and
++   documentation.
++
++======================================================================
++More complecated way
++======================================================================
++
++The full installation process is:
++
++1. configre
++2. edit common.makefile, Makefile, timidity.h if necessery
++3. make
++4. installation
++5. set up voice data
++
++Each processes are explained in following sections.  Note that % is
++the shell prompt.
++
++======================================================================
++Configure
++======================================================================
++
++First, execute the following command:
++
++% /bin/sh configure --help
++
++Many options of configure will be displayed.  Most of them, such as
++--help, --prefix=PREFIX, and so on are the regular ones.  They exisits
++on most package that uses autoconf and you do not have to worry about
++their behavior.
++
++There also exists some options that is typical to TiMidity++.  Main of
++these are the following:
++
++--enable-debug
++  Enables debug.  Things will be compiled with debugging methods/
++  informations.
++
++--without-x
++  TiMidity++ uses X by default.  So you must specify this option to
++  prevent linker from linking X libraries.
++
++--enable-audio[=audio_list]
++  Enables TiMidity++ to play MIDI files.  If --enable-audio=no,
++  TiMidity++ acts as a MIDI-to-WAVE converter.
++
++  You can specify one or more audio-device listed below.
++
++  * default: Automatically select audio device.
++  * oss: OSS /dev/dsp
++  * sun: SunOS /dev/audio
++  * hpux: hp-ux /dev/audio
++  * irix: IRIX audio library
++  * mme: OSF/1 MME
++  * sb_dsp: BSD/OS 2.0 /dev/sb_dsp
++  * w32: Windows MMS
++  * darwin: darwin(Mac OS X)'s CoreAudio frameowrk
++  * alsa: ALSA pcm device
++  * alib: hp-ux network audio (Alib)
++  * nas: NAS
++  * portaudio: PortAudio
++  * jack: JACK
++  * arts: aRts
++  * esd: EsounD
++  * vorbis: ogg vorbis
++  * gogo: mp3 Gogo-No-Coder (Windows only)
++
++--enable-interface[=interface_list]
++--enable-dynamic[=interface_list]
++  Specify which interface to use.  If you use --enable-dynamic instead
++  of --enable-interface, the interfaces specified will be linked
++  dynamically and the binary size would become a bit smaller.
++
++  You can select one or more interfaces listed below.
++
++  * ncurses: ncurses interface.
++  * slang: S-Lang interface.
++  * motif: Motif interface.  Motif interface also works under Lestiff.
++  * tcltk: Tcl/Tk interface.
++  * emacs: Emacs front-end.  Type M-x timidity to invoke.
++  * vt100: The full-screen interface using vt100 terminal control codes.
++  * xaw: X Athena Widget interface.
++  * xskin: X skin interface.
++  * gtk: GTK+ interface.
++  * w32gui: Build as Windows GUI binary.
++  * winsyn: Build as TiMidity++ Windows Synthesizer server.
++  * alsaseq: Build as ALSA sequencer client.
++
++  Note that
++  --enable-interface=INTERFACE1,INTERFACE2,...
++  equals as
++  --enable-INTERFACE1=yes --enable-INTERFACE2=yes ...
++  and for the same way,
++  --enable-dynamic=INTERFACE1,INTERFACE2,...
++  equals as
++  --enable-INTERFACE1=dynamic --enable-INTERFACE2=dynamic ...
++
++--enable-network
++  Enables network support.  This will allow TiMidity++ to open a MIDI
++  file via network.  You can specify the location of MIDI files by
++  http://foo.com.tw/bar/baz.mid - like format.
++
++--enable-spectrogram
++  With this option specified, TiMidity++ can open a window on X and
++  show sound-spectrogram there.
++
++--enable-wrd
++  WRD is a Japanese local lyric-contents format.  This option enables
++  WRD interface.
++
++* Environment variables and flags to pass to configure
++
++Some MIDI files eat too much CPU power.  If you choose correct
++optimizing method, TiMidity++ can play such MIDI files smoothly.
++
++You can tell configure which optimizing method to use by following
++environmental variables:
++
++CC
++  the C compiler command e.g. "/usr/bin/gcc"
++
++CFLAGS
++  flags to pass to ${CC} e.g. "-O2 -pipe"
++
++LDFLAGS
++  flags to pass to linker e.g. "-L/usr/gnu/lib"
++
++CPPFLAGS
++  flags to pass to preprocessor e.g. "-traditional-cpp"
++
++Your compiler may have many optimization flags.  For example, in case
++of ultrasparc/gcc, you can specify:
++
++% env CFLAGS='-O3 -Wall -mv8 -funroll-all-loops -fomit-frame-pointer \
++	-mcpu=ultrasparc' /bin/sh configure [configure-options]...
++
++and the binary will (hopefully) run faster.
++
++======================================================================
++Edit some files
++======================================================================
++
++If make fails, or if you want to change some parameters, edit
++common.makefile, Makefile, or timidity.h manually.
++
++* Parameters in timidity.h
++
++There are some options that are hard-coded into timidity binary.  They
++are # define-ed in timidity.h.  You have to change things there if you
++want to change these flags.
++
++** CONFIG_FILE
++
++Edit CONFIG_FILE to your convenience.  By default,
++
++#define CONFIG_FILE DEFAULT_PATH "/timidity.cfg"
++
++are recommended.  DEFAULT_PATH is the same as TIMID_DIR in Makefile.
++
++If you want to place it to another path, specify as the following:
++
++#define CONFIG_FILE "/etc/timidity.cfg"
++
++** DECOMPRESSOR_LIST
++
++The file extractor (please ignore in Windows).  By default:
++
++#define DECOMPRESSOR_LIST { \
++		".gz", "gunzip -c %s", \
++		".bz2", "bunzip2 -c %s", \
++		".Z", "zcat %s", \
++		".zip", "unzip -p %s", \
++		".lha", "lha -pq %s", \
++		".lzh", "lha -pq %s", \
++		".shn", "shorten -x %s -", \
++		0 }
++
++TiMidity++ can handle some of archive format directly.  But other
++format will use this extractor.
++
++** PATCH_CONVERTERS
++
++Configuration of of patch file converter (please ignore in Windows).
++By default:
++
++#define PATCH_CONVERTERS { \
++		".wav", "wav2pat %s", \
++		0 }
++
++** PATCH_EXT_LIST
++
++Configuration of extensions of GUS/patch file.  If specified in this
++configuration, the extension can omit in all *.cfg.  By default:
++
++#define PATCH_EXT_LIST { \
++		".pat", \
++		".shn", ".pat.shn", \
++		".gz", ".pat.gz", \
++		".bz2", ".pat.bz2", \
++		0 }
++
++** DEFAULT_PROGRAM
++
++Configuration of default instrument.  By default:
++
++#define DEFAULT_PROGRAM 0
++
++If no Program Change event, this program name are adopted.  Usually 0
++is Piano.
++
++** DEFAULT_DRUMCHANNELS
++
++Configuration of drum channel.  By default:
++
++#define DEFAULT_DRUMCHANNELS {10, -1}
++
++Numbers are the list of drum channels, and -1 is the terminator.  For
++example, if you wish to default drum channel be 10 and 16,
++
++#define DEFAULT_DRUMCHANNELS {10, 16, -1}
++
++This channel can change in command line option.
++
++** FLOAT_T
++
++Type of floating point number.  Choose one of these:
++
++* typedef double FLOAT_T;
++* typedef float FLOAT_T;
++
++Many machine which has FPU results faster operations with double than
++that with float.  But some machine results contrary.
++
++** (MAX|MIN)_OUTPUT_RATE
++
++Minimum/maximum range of playing sample rate.  By default:
++
++#define MIN_OUTPUT_RATE 4000
++#define MAX_OUTPUT_RATE 65000
++
++** DEFAULT_AMPLIFICATION
++
++Default value of master volume.  By default:
++
++#define DEFAULT_AMPLIFICATION 70
++
++This number is the percentage of max volume.  This default value will
++be nice in any occasions.  This number can specify in command line
++option (-A).
++
++** DEFAULT_RATE
++
++Default sampling rate.  By default:
++
++#define DEFAULT_RATE 44100
++
++If you have much CPU power, DAT quality GUS/patch and want to listen
++funny sound,
++
++#define DEFAULT_RATE 48000
++
++is good solution.
++
++** DEFAULT_VOICES
++
++Configuration of default polyphony numbers.  By default:
++
++#define DEFAULT_VOICES 256
++
++DEFAULT_VOICE is the polyphony number in boot-time.  This value is
++configurable by the command line option (-p) from 1 to until memory is
++allowed.  If your machine has much CPU power,
++
++#define DEFAULT_VOICES 512
++
++enables good harmony.
++
++** AUDIO_BUFFER_BITS
++
++Size of internal buffer.  By default:
++
++#define AUDIO_BUFFER_BITS 12
++
++I guess this values no need to change.
++
++** CONTROLS_PER_SECOND
++
++TiMidity++ do not calculate every envelope changes, but calculate some
++samples at one time.  Small controls yields better quality sound, but
++also eat much CPU time.  By default:
++
++#define CONTROLS_PER_SECOND 1000
++
++This can be changed from command line.  Leave as it is.
++
++** DEFAULT_RESAMPLATION
++
++Type of interpolation engine.  By default:
++
++#define DEFAULT_RESAMPLATION resample_gauss
++
++This definition cause TiMidity++ to Gauss-like interpolation in re-
++sampling, and the quality of sound would be nice.  But it eats CPU
++powers.  I recommend define it if your machine has much power.  Other
++choices are (sorted by their speed):
++
++#define DEFAULT_RESAMPLATION resample_none
++#define DEFAULT_RESAMPLATION resample_linear
++#define DEFAULT_RESAMPLATION resample_lagrange
++#define DEFAULT_RESAMPLATION resample_cspline
++#define DEFAULT_RESAMPLATION resample_gauss
++#define DEFAULT_RESAMPLATION resample_newton
++
++Interpolation methods are changeable from the command line.  If you
++want to prevent users from doing so, uncomment next line and define as
++this:
++
++#define FIXED_RESAMPLATION
++
++** USE_DSP_EFFECT
++
++Configuration of USE_DSP_EFFECT to refine chorus, delay, EQ and
++insertion effect.  Default enabled.
++
++** LOOKUP_HACK
++
++Configuration of LOOKUP_HACK.  By default, this features are undefined
++like this:
++
++/* #define LOOKUP_HACK */
++/* #define LOOKUP_INTERPOLATION */
++
++This option saves a little CPU power, but sound quality would decrease
++noticeably.  If your machine suffers from lack of CPU power, enable
++it.
++
++** SMOOTH_MIXING
++
++Defining this greatly reduces popping due to large volume/pan changes.
++This is definitely worth the slight increase in CPU usage.
++
++** FAST_DECAY
++
++Configuration of FAST_DECAY.  By default:
++
++/* #define FAST_DECAY */
++
++This option makes envelopes twice as fast and saves CPU power.  But
++since the release time of voices is shorten, the sound would be poor.
++This feature is controllable in command line option.
++
++** FRACTION_BITS
++
++TiMidity++ uses fixed-point calculation.  Its default is
++
++#define FRACTION_BITS 12
++
++and you don't have to change this value.
++
++** ADJUST_SAMPLE_VOLUMES
++
++Configuration of adjusting amplitude of GUS/patch.  By default:
++
++#define ADJUST_SAMPLE_VOLUMES
++
++This option makes TiMidity to adjust amplitudes of each GUS/patch to
++same volume.
++
++** DENGEROUS_RENICE
++
++By default this feature is disabled:
++
++/* #define DANGEROUS_RENICE -15 */
++
++If you want to increase process priority of TiMidity++ by using setuid
++root enable this option.  This option is only available in UNIX.  Once
++you enabled this option, you should install timidity with the follow-
++ing procedure:
++
++# chown root /usr/local/bin/timidity
++# chmod u+s /usr/local/bin/timidity
++
++Note: You should not set setuid to timidity if DANGEROUS_RENICE isn't
++      enabled.
++
++** MAX_DIE_TIME
++
++If this value is too small, click noise would be come.  Default is:
++
++#define MAX_DIE_TIME 20
++
++and I recommend this value leave to this.
++
++** LOOKUP_SINE
++
++#define LOOKUP_SINE
++
++On some machines (especially PCs without math coprocessors), looking
++up sine values in a table will be significantly faster than computing
++them on the fly.  I recommend define it.
++
++** PRECALC_LOOPS
++
++Configuration of optimizing re-sampling.  By default:
++
++#define PRECALC_LOOPS
++
++These may not in fact be faster on your particular machine and
++compiler.
++
++** USE_LDEXP
++
++Configuration of use of ldexp().  By default this feature is disabled:
++
++/* #define USE_LDEXP */
++
++If your machine can multiply floating point number with ldexp() faster
++than other method, enable this option.
++
++** DEFAULT_CACHE_DATA_SIZE
++
++Size of pre-re-sampling cache.  By default:
++
++#define DEFAULT_CACHE_DATA_SIZE (2*1024*1024)
++
++This can be changed from command line, so you don't have to change
++here.
++
++* Configurations about network
++
++TiMidity++ can access any files via networks with URL.  This feature
++are configurable in Makefile.  If you have enabled this feature in
++Makefile (configure --enable-network), configure the following macros:
++
++** MAIL_DOMAIN
++
++specifies domain name of your name address.  If your name address is
++"iz at onicos.co.jp" set the macro:
++
++#define MAIL_DOMAIN "@onicos.co.jp"
++
++** MAIL_NAME
++
++specifies mail name of yours if in Windows.  In UNIX, uncomment it.
++For example, your name address is "iz at onicos.co.jp" set the macro:
++
++#define MAIL_NAME "iz"
++
++** TMPDIR
++
++Configuration of temporary directory.  By default, this option is
++disabled:
++
++/* #define TMPDIR "/var/tmp" */
++
++In UNIX, if this option is disabled TiMidity++ creates temporary files
++in the path specified by the environment variable TMPDIR.  If environ-
++ment variable TMPDIR also isn't defined, TiMidity++ creates temporary
++files in /tmp.  In Windows, TMPDIR variable are ignored.  So you
++should specify the temporary path with this macro.
++
++** GS_DRUMPART
++
++Recognizing GS drum part by GS exclusive message.
++
++#define GS_DRUMPART
++
++enables to recognize GS exclusive message to set drum part.
++
++/* #define GS_DRUMPART */
++
++disables this feature.
++
++* Japanese-text-handling related options
++
++There are some options for Japanese handling.
++
++** JAPANESE
++
++If your system is in Japanese environment, define
++
++#define JAPANESE
++
++otherwise comment it out like
++
++/* #define JAPANESE */
++
++** OUTPUT_TEXT_CODE
++
++specifies output text code (in Japanese environment).  You should
++specify appropriate code name to OUTPUT_TEXT_CODE macro.  The follow-
++ing strings are available:
++
++AUTO
++  Auto conversion by `LANG' environment variable (UNIX only)
++ASCII
++  Convert unreadable characters to '.' (0x2e)
++NOCNV
++  No conversion
++1251
++  Convert from windows-1251 to koi8-r
++EUC
++  eucJP
++JIS
++  JIS
++SJIS
++  shift-JIS
++
++In Japanized UNIX system, all of above are available.  In Windows,
++"ASCII", "NOCNV", "SJIS" are available.  If your environment cannot
++handle Japanese, specify "ASCII" or "NOCNV" alternatively.
++
++** MODULATION_WHEEL_ALLOW
++** PORTAMENTO_ALLOW
++** NRPN_VIBRATO_ALLOW
++** REVERB_CONTROL_ALLOW
++** FREEVERB_CONTROL_ALLOW
++** CHORUS_CONTROL_ALLOW
++** SURROUND_CHORUS_ALLOW
++** GM_CHANNEL_PRESSURE_ALLOW
++** VOICE_CHAMBERLIN_LPF_ALLOW
++** VOICE_MOOG_LPF_ALLOW
++** MODULATION_ENVELOPE_ALLOW
++** ALWAYS_TRACE_TEXT_META_EVENT
++** OVERLAP_VOICE_ALLOW
++** TEMPER_CONTROL_ALLOW
++
++Controllers of MIDI actions.  By default:
++
++#define MODULATION_WHEEL_ALLOW
++#define PORTAMENTO_ALLOW
++#define NRPN_VIBRATO_ALLOW
++/* #define REVERB_CONTROL_ALLOW */
++#define FREEVERB_CONTROL_ALLOW
++#define CHORUS_CONTROL_ALLOW
++/* #define SURROUND_CHORUS_ALLOW */
++/* #define GM_CHANNEL_PRESSURE_ALLOW */
++#define VOICE_CHAMBERLIN_LPF_ALLOW
++/* #define VOICE_MOOG_LPF_ALLOW */
++/* #define MODULATION_ENVELOPE_ALLOW */
++/* #define ALWAYS_TRACE_TEXT_META_EVENT */
++#define OVERLAP_VOICE_ALLOW
++#define TEMPER_CONTROL_ALLOW
++
++These values are configurable in command line options.  So you may
++leave these in default value.
++
++======================================================================
++Make
++======================================================================
++
++Make section has nothing particular to write.  Just say "make"
++
++...Oops, almost forgot, TiMidity++'s Makefile needs GNU version of
++make.  If you do not have, get one first.  If you have one in a
++different name than "make", type its true name instead.
++
++Installation
++
++On UNIX and clones, you can type "make install" to install all files.
++Or you can select following targets:
++
++install.bin
++  installs executable filles
++install.tk
++  installs Tcl/Tk interface
++install.el
++  installs Emacs interface
++install.man
++  installs man files
++install
++  installs everything
++
++I strongly recommend you to check the install destinations and files
++by setteing -n flag like
++
++% make -n
++
++======================================================================
++Search for voice data
++======================================================================
++
++TiMidity++ uses Either GUS/patch, or SoundFont(, or both) as the voice
++data to play.  You must get a SoundFont or GUS/patch files, and make
++the configuration file.  You must make the configuration file (*.cfg).
++By default, timidity.cfg is /usr/local/share/timidity/timidity.cfg (or
++C:\WINDOWS\TIMIDITY.CFG on Windows).  And please check the following
++sites for many voice(patch) data:
++
++* http://www.onicos.com/staff/iz/timidity/link.html#gus
++* http://www.onicos.com/staff/iz/timidity/dist/cfg/ (Some sample *.cfg's)
++* http://www.i.h.kyoto-u.ac.jp/~shom/timidity/ (10M and 4M patches)
++* ftp://ftp.cdrom.com/pub/gus/sound/patches/files/ (GUS site)
++
++If you got funny voice archive, extract it to appropriate directory
++and configure *.cfg files with the name and path of these voice datas.
+-- 
+1.7.7.3
+
diff --git a/0014-Silence-autofoo-warnings-about-have_speex-ac-cache-i.patch b/0014-Silence-autofoo-warnings-about-have_speex-ac-cache-i.patch
new file mode 100644
index 0000000..a35127d
--- /dev/null
+++ b/0014-Silence-autofoo-warnings-about-have_speex-ac-cache-i.patch
@@ -0,0 +1,27 @@
+From 429a54eb946a467c5e68f69e838998b6f76cb1ff Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 11:14:07 +0100
+Subject: [PATCH 14/17] Silence autofoo warnings about have_speex ac cache
+ identifier
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ configure.in |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 12bd4cd..97c35db 100644
+--- a/configure.in
++++ b/configure.in
+@@ -1424,7 +1424,7 @@ fi
+ dnl ogg's speex
+ AC_MSG_CHECKING(enable_audio=speex)
+ if test "x$au_enable_speex" = xyes; then
+-  AC_CACHE_VAL(have_speex,
++  AC_CACHE_VAL(timidity_cv_have_speex,
+   [AC_TRY_LINK([
+   #include <speex/speex.h>
+   #include <ogg/ogg.h>
+-- 
+1.7.7.3
+
diff --git a/0015-Get-rid-of-the-dynamic_control_mode-ControlMode.patch b/0015-Get-rid-of-the-dynamic_control_mode-ControlMode.patch
new file mode 100644
index 0000000..78b0877
--- /dev/null
+++ b/0015-Get-rid-of-the-dynamic_control_mode-ControlMode.patch
@@ -0,0 +1,294 @@
+From c955a31938022b5fe0ee8ceccae08f850dc15965 Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 11:02:44 +0100
+Subject: [PATCH 15/17] Get rid of the dynamic_control_mode ControlMode
+
+This is a left over from before the dynamic_interface_module() rewrite,
+not only is it no longer needed its code is plain wrong, as it still
+contains a prototype for the old way different dynamic_interface_module()
+and tries to call it as if it were the old version, if that code path where
+to ever be invoked bad things (tm) would happen. Luckily it is never used,
+so simply nuke it.
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ interface/Makefile.am |    6 --
+ interface/dynamic_c.c |  130 -------------------------------------------------
+ timidity/controls.c   |   10 ----
+ timidity/timidity.c   |   31 +++---------
+ 4 files changed, 7 insertions(+), 170 deletions(-)
+ delete mode 100644 interface/dynamic_c.c
+
+diff --git a/interface/Makefile.am b/interface/Makefile.am
+index 06058fa..fb8d2ee 100644
+--- a/interface/Makefile.am
++++ b/interface/Makefile.am
+@@ -74,7 +74,6 @@ EXTRA_libinterface_a_SOURCES = \
+ 	VTparse.h \
+ 	x_mag.c \
+ 	x_mag.h \
+-	dynamic_c.c \
+ 	mac_c.c \
+ 	mac_c.h \
+ 	mac_mag.c \
+@@ -155,10 +154,6 @@ WRD_WINCON_OBJS = wrdt_wcon.$(OBJEXT)
+ endif
+ endif
+ 
+-if NEEDDLOPEN
+-DYNAMIC_OBJS = dynamic_c.$(OBJEXT)
+-endif
+-
+ if ENABLE_SOUND_SPEC
+ SOUND_SPEC_OBJS = \
+ 	soundspec.$(OBJEXT)
+@@ -178,7 +173,6 @@ libinterface_LIBADD = \
+ 	$(INTERFACE_OBJS) \
+ 	$(WRD_OBJS) \
+ 	$(WRD_WINCON_OBJS) \
+-	$(DYNAMIC_OBJS) \
+ 	$(SOUND_SPEC_OBJS)
+ 	
+ libinterface_a_LIBADD=$(libinterface_LIBADD)
+diff --git a/interface/dynamic_c.c b/interface/dynamic_c.c
+deleted file mode 100644
+index bb46dbd..0000000
+--- a/interface/dynamic_c.c
++++ /dev/null
+@@ -1,130 +0,0 @@
+-/*
+-    TiMidity++ -- MIDI to WAVE converter and player
+-    Copyright (C) 1999-2004 Masanao Izumo <iz at onicos.co.jp>
+-    Copyright (C) 1995 Tuukka Toivonen <tt at cgs.fi>
+-
+-    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
+-*/
+-
+-#ifdef HAVE_CONFIG_H
+-#include "config.h"
+-#endif /* HAVE_CONFIG_H */
+-/*
+-    dynamic_c.c
+-    Dynamic loading control mode
+-*/
+-
+-#include <stdio.h>
+-#include <stdlib.h>
+-#include <stdarg.h>
+-#ifndef NO_STRING_H
+-#include <string.h>
+-#else
+-#include <strings.h>
+-#endif
+-
+-#include "timidity.h"
+-#include "common.h"
+-#include "output.h"
+-#include "controls.h"
+-#include "dlutils.h"
+-
+-static int ctl_open(int using_stdin, int using_stdout);
+-static void ctl_close(void);
+-extern char *dynamic_interface_module(char *name);
+-static void ctl_event(){} /* Do nothing */
+-static int cmsg(int type, int verbosity_level, char *fmt, ...);
+-static void *libhandle;
+-static void (* ctl_close_hook)(void);
+-
+-ControlMode dynamic_control_mode =
+-{
+-    "Dynamic interface", 0,
+-    "\0",
+-    1,0,0,0,
+-    ctl_open, ctl_close, NULL, NULL, NULL, cmsg, ctl_event,
+-};
+-
+-static int cmsg(int type, int verbosity_level, char *fmt, ...)
+-{
+-  va_list ap;
+-
+-  if ((type==CMSG_TEXT || type==CMSG_INFO || type==CMSG_WARNING) &&
+-      dynamic_control_mode.verbosity<verbosity_level)
+-    return 0;
+-  va_start(ap, fmt);
+-
+-  if (!dynamic_control_mode.opened)
+-    {
+-      vfprintf(stderr, fmt, ap);
+-      fprintf(stderr, "\n");
+-    }
+-  else
+-    {
+-      vfprintf(stdout, fmt, ap);
+-      fprintf(stdout, "\n");
+-    }
+-  va_end(ap);
+-  return 0;
+-}
+-
+-static int ctl_open(int using_stdin, int using_stdout)
+-{
+-    ControlMode *(* inferface_loader)(void);
+-    char *path, *name;
+-    char buff[256];
+-    int id;
+-
+-    if(dynamic_control_mode.opened)
+-	return 0;
+-    dynamic_control_mode.opened = 1;
+-
+-    id = dynamic_control_mode.id_character;
+-    name = dynamic_control_mode.id_short_name;
+-    path = dynamic_interface_module(name);
+-    if(path == NULL)
+-    {
+-	fprintf(stderr, "FATAL ERROR: dynamic_c.c: ctl_open()\n");
+-	exit(1);
+-    }
+-
+-    if((libhandle = dl_load_file(path)) == NULL)
+-	return -1;
+-
+-    sprintf(buff, "interface_%c_loader", id);
+-    if((inferface_loader = (ControlMode *(*)(void))
+-	dl_find_symbol(libhandle, buff)) == NULL)
+-	return -1;
+-
+-    ctl = inferface_loader();
+-
+-    ctl->verbosity = dynamic_control_mode.verbosity;
+-    ctl->trace_playing = dynamic_control_mode.trace_playing;
+-    ctl->flags = dynamic_control_mode.flags;
+-    ctl_close_hook = ctl->close;
+-    ctl->close = dynamic_control_mode.close; /* ctl_close() */
+-
+-    return ctl->open(using_stdin, using_stdout);
+-}
+-
+-static void ctl_close(void)
+-{
+-    if(ctl_close_hook)
+-    {
+-	ctl_close_hook();
+-	dl_free(libhandle);
+-	ctl_close_hook = NULL;
+-    }
+-}
+diff --git a/timidity/controls.c b/timidity/controls.c
+index 246f971..baa1a5e 100644
+--- a/timidity/controls.c
++++ b/timidity/controls.c
+@@ -90,13 +90,6 @@ extern ControlMode dumb_control_mode;
+ # endif
+ #endif
+ 
+-#ifdef IA_DYNAMIC
+-  extern ControlMode dynamic_control_mode;
+-# ifndef DEFAULT_CONTROL_MODE
+-#  define DEFAULT_CONTROL_MODE &dynamic_control_mode
+-# endif
+-#endif /* IA_DYNAMIC */
+-
+ #ifdef IA_EMACS
+   extern ControlMode emacs_control_mode;
+ # ifndef DEFAULT_CONTROL_MODE
+@@ -219,9 +212,6 @@ ControlMode *ctl_list[]={
+ #if !defined(__MACOS__)  && !defined(IA_W32GUI) && !defined(IA_W32G_SYN)
+ 	&dumb_control_mode,
+ #endif
+-#ifdef IA_DYNAMIC
+-  &dynamic_control_mode,
+-#endif
+ #ifdef IA_PLUGIN
+   &plugin_control_mode,
+ #endif
+diff --git a/timidity/timidity.c b/timidity/timidity.c
+index 57f8fd1..8d5cbc0 100644
+--- a/timidity/timidity.c
++++ b/timidity/timidity.c
+@@ -528,10 +528,6 @@ static inline FILE *open_pager(void);
+ static inline void close_pager(FILE *);
+ static void interesting_message(void);
+ 
+-#ifdef IA_DYNAMIC
+-MAIN_INTERFACE char dynamic_interface_id;
+-#endif /* IA_DYNAMIC */
+-
+ extern StringTable wrd_read_opts;
+ 
+ extern int SecondMode;
+@@ -4015,22 +4011,14 @@ static int parse_opt_h(const char *arg)
+ 	fputs(NLS, fp);
+ 	fputs("Available interfaces (-i, --interface option):" NLS, fp);
+ 	for (cmpp = ctl_list; (cmp = *cmpp) != NULL; cmpp++)
+-#ifdef IA_DYNAMIC
+-		if (cmp->id_character != dynamic_interface_id)
+-			fprintf(fp, "  -i%c          %s" NLS,
+-					cmp->id_character, cmp->id_name);
+-#else
+ 		fprintf(fp, "  -i%c          %s" NLS,
+ 				cmp->id_character, cmp->id_name);
+-#endif	/* IA_DYNAMIC */
+ #ifdef IA_DYNAMIC
+ 	fprintf(fp, "Supported dynamic load interfaces (%s):" NLS,
+ 			dynamic_lib_root);
+ 	memset(mark, 0, sizeof(mark));
+ 	for (cmpp = ctl_list; (cmp = *cmpp) != NULL; cmpp++)
+ 		mark[(int) cmp->id_character] = 1;
+-	if (dynamic_interface_id != 0)
+-		mark[(int) dynamic_interface_id] = 0;
+ 	list_dyna_interface(fp, dynamic_lib_root, mark);
+ #endif	/* IA_DYNAMIC */
+ 	fputs(NLS, fp);
+@@ -4187,17 +4175,16 @@ static inline int parse_opt_i(const char *arg)
+ #endif	/* IA_W32GUI */
+ 			break;
+ 		}
++	}
+ #ifdef IA_DYNAMIC
+-		if (cmp->id_character == dynamic_interface_id) {
+-			cmp = dynamic_interface_module(*arg);
+-			if(cmp) {
+-				ctl = cmp;
+-				found = 1;
+-				break;
+-			}
++	if (! found) {
++		cmp = dynamic_interface_module(*arg);
++		if(cmp) {
++			ctl = cmp;
++			found = 1;
+ 		}
+-#endif	/* IA_DYNAMIC */
+ 	}
++#endif	/* IA_DYNAMIC */
+ 	if (! found) {
+ 		ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
+ 				"Interface `%c' is not compiled in.", *arg);
+@@ -5812,11 +5799,7 @@ int main(int argc, char **argv)
+ #endif
+ #ifdef IA_DYNAMIC
+ {
+-#ifdef XP_UNIX
+-	argv[0] = "netscape";
+-#endif /* XP_UNIX */
+ 	dynamic_lib_root = safe_strdup(SHARED_LIB_PATH);
+-	dynamic_interface_id = 0;
+ 	dl_init(argc, argv);
+ }
+ #endif /* IA_DYNAMIC */
+-- 
+1.7.7.3
+
diff --git a/0016-Silence-dlsym-errors.patch b/0016-Silence-dlsym-errors.patch
new file mode 100644
index 0000000..a5c10b6
--- /dev/null
+++ b/0016-Silence-dlsym-errors.patch
@@ -0,0 +1,30 @@
+From 7c9e2460e3f82eb7ece0777807414e7a8cabeb26 Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 11:29:12 +0100
+Subject: [PATCH 16/17] Silence dlsym errors
+
+The way the new dynamic_interface_module() function probes for dynamic
+interfaces cause it to always hit a few dlsym errors as soon as you have
+more then one dynamic interface, so silence these errors.
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ timidity/dl_dlopen.c |    2 --
+ 1 files changed, 0 insertions(+), 2 deletions(-)
+
+diff --git a/timidity/dl_dlopen.c b/timidity/dl_dlopen.c
+index a3785ef..5bbb234 100644
+--- a/timidity/dl_dlopen.c
++++ b/timidity/dl_dlopen.c
+@@ -72,8 +72,6 @@ void *dl_find_symbol(void *libhandle, char *symbolname)
+ #endif
+ 
+     RETVAL = dlsym(libhandle, symbolname);
+-    if (RETVAL == NULL)
+-	fprintf(stderr, "%s\n", dlerror());
+     return RETVAL;
+ }
+ 
+-- 
+1.7.7.3
+
diff --git a/0017-Fix-listing-of-dynamic-interfaces-in-help-output.patch b/0017-Fix-listing-of-dynamic-interfaces-in-help-output.patch
new file mode 100644
index 0000000..3abb1b0
--- /dev/null
+++ b/0017-Fix-listing-of-dynamic-interfaces-in-help-output.patch
@@ -0,0 +1,47 @@
+From 6c4b3b26448a1f45271983f01543603cde4d6f25 Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 11:51:26 +0100
+Subject: [PATCH 17/17] Fix listing of dynamic interfaces in --help output
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ timidity/timidity.c |   16 ++++++++--------
+ 1 files changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/timidity/timidity.c b/timidity/timidity.c
+index 8d5cbc0..4bb0f90 100644
+--- a/timidity/timidity.c
++++ b/timidity/timidity.c
+@@ -4098,21 +4098,21 @@ static inline void list_dyna_interface(FILE *fp, char *path, char *mark)
+ 	while (url_gets(dir, fname, sizeof(fname)) != NULL)
+ 		if (strncmp(fname, "if_", 3) == 0) {
+ 			void* handle = NULL;
+-			if((handle = dl_load_file(fname))) {
+-				ControlMode *(* loader)(void);
+-				char c = CHAR_MAX;
+-				loader = NULL;
+-				do {
++			char path[NAME_MAX];
++			snprintf(path, NAME_MAX, ".%c%s", PATH_SEP, fname);
++			if((handle = dl_load_file(path))) {
++				ControlMode *(* loader)(void) = NULL;
++				char c;
++				for (c = 'A'; c <= 'z'; c++) {
+ 					char buf[20]; /* enough */
+ 					if(mark[(int)c]) continue;
+ 					sprintf(buf, "interface_%c_loader", c);
+ 					if((loader = dl_find_symbol(handle, buf))) {
+ 						fprintf(fp, "  -i%c          %s" NLS, c, loader()->id_name);
+ 						mark[(int)c] = 1;
+-						goto cleanup;
++						break;
+ 					}
+-				} while (--c != CHAR_MAX); /* round-trip detection */
+-			cleanup:
++				}
+ 				dl_free(handle);
+ 			}
+ 		}
+-- 
+1.7.7.3
+
diff --git a/0018-configure-Don-t-add-lX11-to-the-generic-LIBS.patch b/0018-configure-Don-t-add-lX11-to-the-generic-LIBS.patch
new file mode 100644
index 0000000..6a5b03d
--- /dev/null
+++ b/0018-configure-Don-t-add-lX11-to-the-generic-LIBS.patch
@@ -0,0 +1,29 @@
+From 588206de19c2f0e69e4bb80d3cc4fad3bb724e83 Mon Sep 17 00:00:00 2001
+From: Hans de Goede <hdegoede at redhat.com>
+Date: Sat, 19 Nov 2011 13:24:15 +0100
+Subject: [PATCH 18/18] configure: Don't add -lX11 to the generic LIBS
+
+This stops timidity itself from depending on libX11 even when build
+without any interfaces builtin which need libX11.
+
+Signed-off-by: Hans de Goede <hdegoede at redhat.com>
+---
+ configure.in |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 97c35db..56d3c6f 100644
+--- a/configure.in
++++ b/configure.in
+@@ -374,7 +374,7 @@ if test "x$with_x" = xyes -a "x$have_x" = xyes; then
+     CPPFLAGS="$CPPFLAGS -I$x_includes"
+   fi
+ 
+-  AC_CHECK_LIB(X11,XOpenDisplay)
++  AC_CHECK_LIB(X11,XOpenDisplay,AC_DEFINE([HAVE_LIBX11],[],[Has libX11]))
+   AC_MSG_CHECKING(X11 version 6)
+   AC_CACHE_VAL(timidity_cv_x11_version_6,
+     AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[
+-- 
+1.7.7.3
+
diff --git a/fedora-timidity.desktop b/fedora-timidity.desktop
index 4449ba3..6a3e5d5 100644
--- a/fedora-timidity.desktop
+++ b/fedora-timidity.desktop
@@ -1,5 +1,5 @@
 [Desktop Entry]
-Name=TiMidity++
+Name=TiMidity++ GTK UI
 Comment=Real-time software synthesizer
 Icon=timidity
 Type=Application
diff --git a/timidity++.spec b/timidity++.spec
index 58faf63..3871a05 100644
--- a/timidity++.spec
+++ b/timidity++.spec
@@ -3,10 +3,10 @@
 Summary: A software wavetable MIDI synthesizer
 Name: timidity++
 Version: 2.13.2
-Release: 26.%{cvs_version}%{?dist}
-Group: Applications/Multimedia
+Release: 27.%{cvs_version}%{?dist}
 Source0: timidity++-%{cvs_version}.tar.gz
 Source1: fedora-timidity.desktop
+Source2: timidity-xaw.desktop
 URL: http://timidity.sourceforge.net
 Patch1: 0001-esd_a-Don-t-start-ESD.patch
 Patch2: 0002-libao-Add-a-detect-function.patch
@@ -17,11 +17,21 @@ Patch6: 0006-Fork-earlier-when-we-re-going-to-run-deamonized-in-A.patch
 Patch7: 0007-flac_a-Fix-compiling-with-recent-flac-versions.patch
 Patch8: 0008-Fix-a-bunch-of-warning-implicit-declaration-of-funct.patch
 Patch9: 0009-sndfont-Work-around-soundfonts-with-missing-links-be.patch
+Patch10: 0010-Fix-silence-various-compiler-warnings.patch
+Patch11: 0011-Make-shebang-paths-usr-bin-foo-rather-then-usr-local.patch
+Patch12: 0012-Remove-all-autofoo-generated-files-from-git.patch
+Patch13: 0013-rename-INSTALL-INSTALL.en.patch
+Patch14: 0014-Silence-autofoo-warnings-about-have_speex-ac-cache-i.patch
+Patch15: 0015-Get-rid-of-the-dynamic_control_mode-ControlMode.patch
+Patch16: 0016-Silence-dlsym-errors.patch
+Patch17: 0017-Fix-listing-of-dynamic-interfaces-in-help-output.patch
+Patch18: 0018-configure-Don-t-add-lX11-to-the-generic-LIBS.patch
 License: GPLv2
 BuildRequires: alsa-lib-devel ncurses-devel gtk2-devel
 BuildRequires: libao-devel libvorbis-devel flac-devel speex-devel
 BuildRequires: jack-audio-connection-kit-devel
 BuildRequires: desktop-file-utils
+BuildRequires: automake
 Requires: soundfont2-default hicolor-icon-theme
 
 %description
@@ -30,6 +40,22 @@ player. Install timidity++ if you'd like to play MIDI files and your
 sound card does not natively support wave table format.
 
 
+%package        GTK-interface
+Summary:        GTK user interface for %{name}
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+%description    GTK-interface
+The %{name}-GTK-interface package contains a GTK based UI for %{name}.
+
+
+%package        Xaw3D-interface
+Summary:        Xaw3D user interface for %{name}
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+%description    Xaw3D-interface
+The %{name}-Xaw3D-interface package contains a Xaw3D based UI for %{name}.
+
+
 %prep
 %setup -q -n timidity
 %patch1 -p1
@@ -41,14 +67,26 @@ sound card does not natively support wave table format.
 %patch7 -p1
 %patch8 -p1
 %patch9 -p1
+%patch10 -p1
+%patch11 -p1
+%patch12 -p1
+%patch13 -p1
+%patch14 -p1
+%patch15 -p1
+%patch16 -p1
+%patch17 -p1
+%patch18 -p1
+autoreconf -f -i
 
 
 %build
 export EXTRACFLAGS="$RPM_OPT_FLAGS -DCONFIG_FILE1=\\\"/etc/timidity++.cfg\\\" -DCONFIG_FILE2=\\\"/etc/timidity.cfg\\\""
 # Note the first argument to --enable-audio is the default output, and
 # we use libao to get pulse output
-%configure --enable-dynamic --disable-dependency-tracking \
-  --enable-interface=ncurses,vt100,alsaseq,server,network,gtk \
+%configure --disable-dependency-tracking \
+  --with-module-dir=%{_libdir}/%{name} \
+  --enable-interface=ncurses,vt100,alsaseq,server,network,gtk,xaw \
+  --enable-dynamic=gtk,xaw \
   --enable-audio=ao,alsa,oss,jack,vorbis,speex,flac
 make %{?_smp_mflags}
 
@@ -61,25 +99,44 @@ echo "soundfont %{_datadir}/soundfonts/default.sf2" > \
   $RPM_BUILD_ROOT/%{_sysconfdir}/timidity++.cfg
 
 mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
+# Note we keep --vendor fedora here, since we did so
+# in the past and we don't want the name to change
 desktop-file-install --vendor fedora              \
   --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \
   %{SOURCE1}
+# Note no --vendor fedora, as this file was added later
+desktop-file-install                              \
+  --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \
+  %{SOURCE2}
 
 mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
 install -p -m 644 interface/pixmaps/timidity.xpm \
   $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/timidity.xpm
 
 
-%post
+%post GTK-interface
 touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
 
-%postun
+%postun GTK-interface
 if [ $1 -eq 0 ] ; then
     touch --no-create %{_datadir}/icons/hicolor &>/dev/null
     gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 fi
 
-%posttrans
+%posttrans GTK-interface
+gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%post Xaw3D-interface
+touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun Xaw3D-interface
+if [ $1 -eq 0 ] ; then
+    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans Xaw3D-interface
 gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 
 
@@ -87,12 +144,29 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %doc AUTHORS COPYING README NEWS ChangeLog
 %config(noreplace) %{_sysconfdir}/timidity++.cfg
 %{_bindir}/*
+%dir %{_libdir}/%{name}
 %{_mandir}/*/*
+
+%files GTK-interface
+%{_libdir}/%{name}/if_gtk.so
 %{_datadir}/applications/fedora-timidity.desktop
 %{_datadir}/icons/hicolor/48x48/apps/timidity.xpm
 
+%files Xaw3D-interface
+%{_libdir}/%{name}/if_xaw.so
+%{_datadir}/applications/timidity-xaw.desktop
+%{_datadir}/icons/hicolor/48x48/apps/timidity.xpm
+
 
 %changelog
+* Sat Nov 19 2011 Hans de Goede <hdegoede at redhat.com> - 2.13.2-27.cvs20111110
+- Add a patch fixing a whole lot of compiler warnings
+- Build the gtk UI as a dynamic plugin, this stops the main binary from
+  depending on gtk + a whole bunch of other deps
+- Put the gtk UI plugin into its own timidity++-GTK-interface package
+- Enable building the Xaw UI as dynamic plugin, and put it in its own
+  timidity++-Xaw3D-interface package
+
 * Thu Nov 10 2011 Hans de Goede <hdegoede at redhat.com> - 2.13.2-26.cvs20111110
 - Upstream has not been doing new releases for years, but there have been
   some bugfixes in CVS -> upgrade to the latest CVS version
diff --git a/timidity-xaw.desktop b/timidity-xaw.desktop
new file mode 100644
index 0000000..acf8f1e
--- /dev/null
+++ b/timidity-xaw.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=TiMidity++ Xaw3D UI
+Comment=Real-time software synthesizer
+Icon=timidity
+Type=Application
+Exec=timidity -ia
+Terminal=false
+Categories=Audio;AudioVideo;Midi;X-Synthesis;X-Jack;


More information about the scm-commits mailing list