[PATCH 2/2] wmradio: Remove autotools cruft and compiled binary.

Doug Torrance <[email protected]>
Newsgroups gmane.compw.window-managers.windowmaker.devel
Message-ID <[email protected]>
---
 wmradio/Makefile      |   85 -
 wmradio/config.h      |   27 -
 wmradio/config.log    |  302 ----
 wmradio/config.status |  685 --------
 wmradio/configure     | 4579 -------------------------------------------------
 wmradio/gwmradio      |  Bin 86202 -> 0 bytes
 6 files changed, 5678 deletions(-)
 delete mode 100644 wmradio/Makefile
 delete mode 100644 wmradio/config.h
 delete mode 100644 wmradio/config.log
 delete mode 100755 wmradio/config.status
 delete mode 100755 wmradio/configure
 delete mode 100755 wmradio/gwmradio

diff --git a/wmradio/Makefile b/wmradio/Makefile
deleted file mode 100644
index ce8a65e..0000000
--- a/wmradio/Makefile
+++ /dev/null
@@ -1,85 +0,0 @@
-PREFIX=/usr
-BINDIR=$(PREFIX)/bin/
-LIBDIR=$(PREFIX)/lib/wmradio/
-MANDIR=$(PREFIX)/man/man1/
-
-TARGETS=wmradio xwmradio
-
-CC=gcc
-
-LIBXOSD_CFLAGS=
-LIBXOSD_LIBS=
-
-X_CFLAGS= -I/usr/X11R6/include
-X_LIBS= -L/usr/X11R6/lib -lXpm -lXext -lX11 -lm
-
-PANEL_CFLAGS=-DGNOME_RADIO 
-PANEL_LIBS=
-
-EXTRA_CFLAGS=-Wall -D SKIN_DIR=\"$(LIBDIR)\"
-
-BASESOURCE=skin.c \
-           radio.c \
-           rc.c lists.c ini.c \
-           wmradio.c \
-           fifo.c \
-           stationnames.c \
-           osd.c
-
-WMRADIOSOURCE=wm_envelope.c $(BASESOURCE)
-XRADIOSOURCE=x_envelope.c $(BASESOURCE)
-GNOMERADIOSOURCE=gnome_applet_envelope.c $(BASESOURCE)
-
-SKINFILES=skins/wave.skin skins/wave.xpm \
-          skins/default.skin skins/default.xpm \
-          skins/startrek.skin skins/startrek.xpm \
-          skins/gdefault.skin skins/gdefault.xpm \
-          skins/biggray.skin skins/biggray.xpm
-
-all: $(TARGETS)
-
-wmradio: $(WMRADIOSOURCE)
-	$(CC) $(EXTRA_CFLAGS) $(X_CFLAGS) $(LIBXOSD_CFLAGS) \
-	$(WMRADIOSOURCE) -o wmradio \
-	$(X_LIBS) $(LIBXOSD_LIBS)
-
-xwmradio: $(XRADIOSOURCE)
-	$(CC) $(EXTRA_CFLAGS) $(X_CFLAGS) $(LIBXOSD_CFLAGS) \
-	$(XRADIOSOURCE) -o xwmradio \
-	$(X_LIBS) $(LIBXOSD_LIBS)
-
-gwmradio: $(GNOMERADIOSOURCE)
-	$(CC) $(EXTRA_CFLAGS) $(PANEL_CFLAGS) \
-	$(GNOMERADIOSOURCE) -o gwmradio \
-	$(X_LIBS) $(PANEL_LIBS) $(LIBXOSD_LIBS)
-
-xor: xor.c skin.c
-	$(CC) $(CFLAGS) xor.c skin.c -o xor $(LIBFLAGS)
-
-clean:
-	/bin/rm -f xor $(TARGETS) *~ *.o
-
-install: wmradio
-	install -m 755 -d $(RPM_BUILD_ROOT)$(BINDIR)
-	install -m 755 -d $(RPM_BUILD_ROOT)$(MANDIR)
-	install -m 755 wmradio $(RPM_BUILD_ROOT)$(BINDIR)
-	install -m 755 xwmradio $(RPM_BUILD_ROOT)$(BINDIR)
-	install -m 755 wmradio-remote $(RPM_BUILD_ROOT)$(BINDIR)
-	install -m 755 config/wmradio-config.py $(RPM_BUILD_ROOT)$(BINDIR)
-	install -m 644 doc/wmradio.1 $(RPM_BUILD_ROOT)$(MANDIR)
-	install -m 755 -d $(RPM_BUILD_ROOT)`pkg-config gnome-desktop-2.0 --variable=prefix`/share/applications
-	install -m 755 -d $(RPM_BUILD_ROOT)`pkg-config gnome-desktop-2.0 --variable=prefix`/share/pixmaps
-	install -m 644 misc/wmradio.png $(RPM_BUILD_ROOT)`pkg-config gnome-desktop-2.0 --variable=prefix`/share/pixmaps/
-	install -m 644 misc/wmradio.desktop $(RPM_BUILD_ROOT)`pkg-config gnome-desktop-2.0 --variable=prefix`/share/applications/
-	install -m 644 misc/wmradio-config.desktop $(RPM_BUILD_ROOT)`pkg-config gnome-desktop-2.0 --variable=prefix`/share/applications/
-
-ginstall: gwmradio
-	install -d $(RPM_BUILD_ROOT)`gnome-config --prefix`/share/applets/Multimedia
-	install -d $(RPM_BUILD_ROOT)`gnome-config --sysconfdir`/CORBA/servers
-	install -m 755 gwmradio $(RPM_BUILD_ROOT)$(BINDIR)
-	install -m 644 gwmradio.desktop $(RPM_BUILD_ROOT)`gnome-config --prefix`/share/applets/Multimedia/
-	install -m 644 gwmradio.gnorba $(RPM_BUILD_ROOT)`gnome-config --sysconfdir`/CORBA/servers/
-
-install-skins:
-	install -m 755 -d $(RPM_BUILD_ROOT)$(LIBDIR)
-	install -m 644 $(SKINFILES) $(RPM_BUILD_ROOT)$(LIBDIR)
diff --git a/wmradio/config.h b/wmradio/config.h
deleted file mode 100644
index 950ab36..0000000
--- a/wmradio/config.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (C) 12 Jun 2003 Tomas Cermak
- * 
- * This file is part of wmradio program. 
- *
- * 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.
- */
-
-#ifndef _CONFIG_H
-#define _CONFIG_H
-#include <X11/xpm.h>
-
-#undef  HAVE_XOSD
-
-#endif
diff --git a/wmradio/config.log b/wmradio/config.log
deleted file mode 100644
index 37d2bbd..0000000
--- a/wmradio/config.log
+++ /dev/null
@@ -1,302 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by configure, which was
-generated by GNU Autoconf 2.57.  Invocation command line was
-
-  $ ./configure --prefix=/usr --disable-libxosd --disable-gnome
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = m700pha.anect.cz
-uname -m = i686
-uname -r = 2.6.9-1.681_FC3
-uname -s = Linux
-uname -v = #1 Thu Nov 18 15:10:10 EST 2004
-
-/usr/bin/uname -p = unknown
-/bin/uname -X     = unknown
-
-/bin/arch              = i686
-/usr/bin/arch -k       = unknown
-/usr/convex/getsysinfo = unknown
-hostinfo               = unknown
-/bin/machine           = unknown
-/usr/bin/oslevel       = unknown
-/bin/universe          = unknown
-
-PATH: /usr/kerberos/bin
-PATH: /usr/local/bin
-PATH: /usr/bin
-PATH: /bin
-PATH: /usr/X11R6/bin
-PATH: /usr/java/j2sdk1.4.2_06/bin
-PATH: /bin
-PATH: /usr/sbin
-PATH: /home/tcermak/bin
-PATH: /usr/java/j2sdk1.4.2_06/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:1297: checking for gcc
-configure:1313: found /usr/bin/gcc
-configure:1323: result: gcc
-configure:1567: checking for C compiler version
-configure:1570: gcc --version </dev/null >&5
-gcc (GCC) 3.4.3 20050227 (Red Hat 3.4.3-22.fc3)
-Copyright (C) 2004 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions.  There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:1573: $? = 0
-configure:1575: gcc -v </dev/null >&5
-Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.3/specs
-Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-java-awt=gtk --host=i386-redhat-linux
-Thread model: posix
-gcc version 3.4.3 20050227 (Red Hat 3.4.3-22.fc3)
-configure:1578: $? = 0
-configure:1580: gcc -V </dev/null >&5
-gcc: `-V' option must have argument
-configure:1583: $? = 1
-configure:1607: checking for C compiler default output
-configure:1610: gcc    conftest.c  >&5
-configure:1613: $? = 0
-configure:1659: result: a.out
-configure:1664: checking whether the C compiler works
-configure:1670: ./a.out
-configure:1673: $? = 0
-configure:1690: result: yes
-configure:1697: checking whether we are cross compiling
-configure:1699: result: no
-configure:1702: checking for suffix of executables
-configure:1704: gcc -o conftest    conftest.c  >&5
-configure:1707: $? = 0
-configure:1732: result: 
-configure:1738: checking for suffix of object files
-configure:1760: gcc -c   conftest.c >&5
-configure:1763: $? = 0
-configure:1785: result: o
-configure:1789: checking whether we are using the GNU C compiler
-configure:1814: gcc -c   conftest.c >&5
-configure:1817: $? = 0
-configure:1820: test -s conftest.o
-configure:1823: $? = 0
-configure:1836: result: yes
-configure:1842: checking whether gcc accepts -g
-configure:1864: gcc -c -g  conftest.c >&5
-configure:1867: $? = 0
-configure:1870: test -s conftest.o
-configure:1873: $? = 0
-configure:1884: result: yes
-configure:1901: checking for gcc option to accept ANSI C
-configure:1962: gcc  -c -g -O2  conftest.c >&5
-configure:1965: $? = 0
-configure:1968: test -s conftest.o
-configure:1971: $? = 0
-configure:1989: result: none needed
-configure:2007: gcc -c -g -O2  conftest.c >&5
-conftest.c:2: error: syntax error before "me"
-configure:2010: $? = 1
-configure: failed program was:
-| #ifndef __cplusplus
-|   choke me
-| #endif
-configure:2125: checking how to run the C preprocessor
-configure:2161: gcc -E  conftest.c
-configure:2167: $? = 0
-configure:2199: gcc -E  conftest.c
-configure:2198:28: ac_nonexistent.h: No such file or directory
-configure:2205: $? = 1
-configure: failed program was:
-| #line 2190 "configure"
-| /* confdefs.h.  */
-| 
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| /* end confdefs.h.  */
-| #include <ac_nonexistent.h>
-configure:2243: result: gcc -E
-configure:2268: gcc -E  conftest.c
-configure:2274: $? = 0
-configure:2306: gcc -E  conftest.c
-configure:2305:28: ac_nonexistent.h: No such file or directory
-configure:2312: $? = 1
-configure: failed program was:
-| #line 2297 "configure"
-| /* confdefs.h.  */
-| 
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| /* end confdefs.h.  */
-| #include <ac_nonexistent.h>
-configure:2355: checking for X
-configure:2575: result: libraries /usr/X11R6/lib, headers /usr/X11R6/include
-configure:2728: gcc -o conftest -g -O2   conftest.c   -L/usr/X11R6/lib -lX11 >&5
-configure:2731: $? = 0
-configure:2734: test -s conftest
-configure:2737: $? = 0
-configure:2874: checking for gethostbyname
-configure:2924: gcc -o conftest -g -O2   conftest.c  >&5
-configure:2927: $? = 0
-configure:2930: test -s conftest
-configure:2933: $? = 0
-configure:2944: result: yes
-configure:3075: checking for connect
-configure:3125: gcc -o conftest -g -O2   conftest.c  >&5
-configure:3128: $? = 0
-configure:3131: test -s conftest
-configure:3134: $? = 0
-configure:3145: result: yes
-configure:3210: checking for remove
-configure:3260: gcc -o conftest -g -O2   conftest.c  >&5
-configure:3263: $? = 0
-configure:3266: test -s conftest
-configure:3269: $? = 0
-configure:3280: result: yes
-configure:3345: checking for shmat
-configure:3395: gcc -o conftest -g -O2   conftest.c  >&5
-configure:3398: $? = 0
-configure:3401: test -s conftest
-configure:3404: $? = 0
-configure:3415: result: yes
-configure:3489: checking for IceConnectionNumber in -lICE
-configure:3520: gcc -o conftest -g -O2   -L/usr/X11R6/lib conftest.c -lICE   >&5
-configure:3523: $? = 0
-configure:3526: test -s conftest
-configure:3529: $? = 0
-configure:3541: result: yes
-configure:3819: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by config.status, which was
-generated by GNU Autoconf 2.57.  Invocation command line was
-
-  CONFIG_FILES    = 
-  CONFIG_HEADERS  = 
-  CONFIG_LINKS    = 
-  CONFIG_COMMANDS = 
-  $ ./config.status 
-
-on m700pha.anect.cz
-
-config.status:612: creating Makefile
-config.status:612: creating config.h
-config.status:612: creating config/wmradio-config.py
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_c_compiler_gnu=yes
-ac_cv_env_CC_set=
-ac_cv_env_CC_value=
-ac_cv_env_CFLAGS_set=
-ac_cv_env_CFLAGS_value=
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_LDFLAGS_set=
-ac_cv_env_LDFLAGS_value=
-ac_cv_env_build_alias_set=
-ac_cv_env_build_alias_value=
-ac_cv_env_host_alias_set=
-ac_cv_env_host_alias_value=
-ac_cv_env_target_alias_set=
-ac_cv_env_target_alias_value=
-ac_cv_exeext=
-ac_cv_func_connect=yes
-ac_cv_func_gethostbyname=yes
-ac_cv_func_remove=yes
-ac_cv_func_shmat=yes
-ac_cv_have_x='have_x=yes 		ac_x_includes=/usr/X11R6/include ac_x_libraries=/usr/X11R6/lib'
-ac_cv_lib_ICE_IceConnectionNumber=yes
-ac_cv_objext=o
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_ac_ct_CC=gcc
-ac_cv_prog_cc_g=yes
-ac_cv_prog_cc_stdc=
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-CC='gcc'
-CFLAGS='-g -O2'
-CPP='gcc -E'
-CPPFLAGS=''
-DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DLOCALE_DIR=\"/usr//locale\" '
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EXEEXT=''
-HAVE_XOSD='undef '
-LDFLAGS=''
-LIBOBJS=''
-LIBS=''
-LIBXOSD_CFLAGS=''
-LIBXOSD_CONFIG=''
-LIBXOSD_LIBS=''
-LTLIBOBJS=''
-OBJEXT='o'
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME=''
-PACKAGE_STRING=''
-PACKAGE_TARNAME=''
-PACKAGE_VERSION=''
-PANEL_CFLAGS=''
-PANEL_LIBS=''
-PATH_SEPARATOR=':'
-PKG_CONFIG=''
-SHELL='/bin/sh'
-TARGETS='wmradio xwmradio'
-X_CFLAGS=' -I/usr/X11R6/include'
-X_EXTRA_LIBS=''
-X_LIBS=' -L/usr/X11R6/lib'
-X_PRE_LIBS=' -lSM -lICE'
-ac_ct_CC='gcc'
-bindir='${exec_prefix}/bin'
-build_alias=''
-datadir='${prefix}/share'
-exec_prefix='${prefix}'
-host_alias=''
-includedir='${prefix}/include'
-infodir='${prefix}/info'
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-localstatedir='${prefix}/var'
-mandir='${prefix}/man'
-oldincludedir='/usr/include'
-prefix='/usr'
-program_transform_name='s,x,x,'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-sysconfdir='${prefix}/etc'
-target_alias=''
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-#define LOCALE_DIR "/usr//locale"
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_NAME ""
-#define PACKAGE_STRING ""
-#define PACKAGE_TARNAME ""
-#define PACKAGE_VERSION ""
-
-configure: exit 0
diff --git a/wmradio/config.status b/wmradio/config.status
deleted file mode 100755
index 9bb348f..0000000
--- a/wmradio/config.status
+++ /dev/null
@@ -1,685 +0,0 @@
-#! /bin/sh
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-SHELL=${CONFIG_SHELL-/bin/sh}
-## --------------------- ##
-## M4sh Initialization.  ##
-## --------------------- ##
-
-# Be 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
-
-# Support unset when possible.
-if (FOO=FOO; unset FOO) >/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 -n "`(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
-  as_mkdir_p=false
-fi
-
-as_executable_p="test -f"
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="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="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
-
-
-# IFS
-# We need space, tab and new line, in precisely that order.
-as_nl='
-'
-IFS=" 	$as_nl"
-
-# CDPATH.
-$as_unset CDPATH
-
-exec 6>&1
-
-# Open the log real soon, to keep \$[0] and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.  Logging --version etc. is OK.
-exec 5>>config.log
-{
-  echo
-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
-} >&5
-cat >&5 <<_CSEOF
-
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.57.  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
-config_files=" Makefile config.h config/wmradio-config.py"
-
-ac_cs_usage="\
-\`$as_me' instantiates files from templates according to the
-current configuration.
-
-Usage: $0 [OPTIONS] [FILE]...
-
-  -h, --help       print this help, then exit
-  -V, --version    print version number, then exit
-  -q, --quiet      do not print progress messages
-  -d, --debug      don't remove temporary files
-      --recheck    update $as_me by reconfiguring in the same conditions
-  --file=FILE[:TEMPLATE]
-                   instantiate the configuration file FILE
-
-Configuration files:
-$config_files
-
-Report bugs to <[email protected]>."
-ac_cs_version="\
-config.status
-configured by ./configure, generated by GNU Autoconf 2.57,
-  with options \"'--prefix=/usr' '--disable-libxosd' '--disable-gnome'\"
-
-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
-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=.
-# 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.
-  -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
-
-if $ac_cs_recheck; then
-  echo "running /bin/sh ./configure " '--prefix=/usr' '--disable-libxosd' '--disable-gnome' $ac_configure_extra_args " --no-create --no-recursion" >&6
-  exec /bin/sh ./configure '--prefix=/usr' '--disable-libxosd' '--disable-gnome' $ac_configure_extra_args --no-create --no-recursion
-fi
-
-for ac_config_target in $ac_config_targets
-do
-  case "$ac_config_target" in
-  # Handling of arguments.
-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-  "config.h" ) CONFIG_FILES="$CONFIG_FILES config.h" ;;
-  "config/wmradio-config.py" ) CONFIG_FILES="$CONFIG_FILES config/wmradio-config.py" ;;
-  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
-echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
-   { (exit 1); exit 1; }; };;
-  esac
-done
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used.  Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
-  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
-fi
-
-# Have a temporary directory for convenience.  Make it in the build tree
-# simply because there is no reason to put it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Create a temporary directory, and hook for its removal unless debugging.
-$debug ||
-{
-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
-  trap '{ (exit 1); exit 1; }' 1 2 13 15
-}
-
-# Create a (secure) tmp directory for tmp files.
-
-{
-  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
-  test -n "$tmp" && test -d "$tmp"
-}  ||
-{
-  tmp=./confstat$$-$RANDOM
-  (umask 077 && mkdir $tmp)
-} ||
-{
-   echo "$me: cannot create a temporary directory in ." >&2
-   { (exit 1); exit 1; }
-}
-
-
-#
-# CONFIG_FILES section.
-#
-
-# No need to generate the scripts if there are no CONFIG_FILES.
-# This happens for instance when ./config.status config.h
-if test -n "$CONFIG_FILES"; then
-  # Protect against being on the right side of a sed subst in config.status.
-  sed 's/,@/@@/; s/@,/@@/; s/,;t t$/@;t t/; /@;t t$/s/[\\&,]/\\&/g;
-   s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
-s,@SHELL@,/bin/sh,;t t
-s,@PATH_SEPARATOR@,:,;t t
-s,@PACKAGE_NAME@,,;t t
-s,@PACKAGE_TARNAME@,,;t t
-s,@PACKAGE_VERSION@,,;t t
-s,@PACKAGE_STRING@,,;t t
-s,@PACKAGE_BUGREPORT@,,;t t
-s,@exec_prefix@,${prefix},;t t
-s,@prefix@,/usr,;t t
-s,@program_transform_name@,s,x,x,,;t t
-s,@bindir@,${exec_prefix}/bin,;t t
-s,@sbindir@,${exec_prefix}/sbin,;t t
-s,@libexecdir@,${exec_prefix}/libexec,;t t
-s,@datadir@,${prefix}/share,;t t
-s,@sysconfdir@,${prefix}/etc,;t t
-s,@sharedstatedir@,${prefix}/com,;t t
-s,@localstatedir@,${prefix}/var,;t t
-s,@libdir@,${exec_prefix}/lib,;t t
-s,@includedir@,${prefix}/include,;t t
-s,@oldincludedir@,/usr/include,;t t
-s,@infodir@,${prefix}/info,;t t
-s,@mandir@,${prefix}/man,;t t
-s,@build_alias@,,;t t
-s,@host_alias@,,;t t
-s,@target_alias@,,;t t
-s,@DEFS@,-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DLOCALE_DIR=\"/usr//locale\" ,;t t
-s,@ECHO_C@,,;t t
-s,@ECHO_N@,-n,;t t
-s,@ECHO_T@,,;t t
-s,@LIBS@,,;t t
-s,@CC@,gcc,;t t
-s,@CFLAGS@,-g -O2,;t t
-s,@LDFLAGS@,,;t t
-s,@CPPFLAGS@,,;t t
-s,@ac_ct_CC@,gcc,;t t
-s,@EXEEXT@,,;t t
-s,@OBJEXT@,o,;t t
-s,@CPP@,gcc -E,;t t
-s,@X_CFLAGS@, -I/usr/X11R6/include,;t t
-s,@X_PRE_LIBS@, -lSM -lICE,;t t
-s,@X_LIBS@, -L/usr/X11R6/lib,;t t
-s,@X_EXTRA_LIBS@,,;t t
-s,@TARGETS@,wmradio xwmradio,;t t
-s,@HAVE_XOSD@,undef ,;t t
-s,@LIBXOSD_CONFIG@,,;t t
-s,@LIBXOSD_CFLAGS@,,;t t
-s,@LIBXOSD_LIBS@,,;t t
-s,@PKG_CONFIG@,,;t t
-s,@PANEL_LIBS@,,;t t
-s,@PANEL_CFLAGS@,,;t t
-s,@LIBOBJS@,,;t t
-s,@LTLIBOBJS@,,;t t
-CEOF
-
-  # 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"
-
-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
-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
-# absolute.
-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
-
-
-
-  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; }
-  sed "/^[ 	]*VPATH[ 	]*=/{
-s/:*\$(srcdir):*/:/;
-s/:*\${srcdir}:*/:/;
-s/:*@srcdir@:*/:/;
-s/^\([^=]*=[ 	]*\):*/\1/;
-s/:*$//;
-s/^[^=]*=[ 	]*$//;
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s,@configure_input@,$configure_input,;t t
-s,@srcdir@,$ac_srcdir,;t t
-s,@abs_srcdir@,$ac_abs_srcdir,;t t
-s,@top_srcdir@,$ac_top_srcdir,;t t
-s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
-s,@builddir@,$ac_builddir,;t t
-s,@abs_builddir@,$ac_abs_builddir,;t t
-s,@top_builddir@,$ac_top_builddir,;t t
-s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
-  rm -f $tmp/stdin
-  if test x"$ac_file" != x-; then
-    mv $tmp/out $ac_file
-  else
-    cat $tmp/out
-    rm -f $tmp/out
-  fi
-
-done
-
-{ (exit 0); exit 0; }
diff --git a/wmradio/configure b/wmradio/configure
deleted file mode 100755
index f09eb29..0000000
--- a/wmradio/configure
+++ /dev/null
@@ -1,4579 +0,0 @@
-#! /bin/sh
-# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.57.
-#
-# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
-# 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
-
-# Support unset when possible.
-if (FOO=FOO; unset FOO) >/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 -n "`(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
-  as_mkdir_p=false
-fi
-
-as_executable_p="test -f"
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="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="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
-
-
-# IFS
-# We need space, tab and new line, in precisely that order.
-as_nl='
-'
-IFS=" 	$as_nl"
-
-# CDPATH.
-$as_unset CDPATH
-
-
-# Name of the host.
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-# so uname gets run too.
-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
-
-exec 6>&1
-
-#
-# Initializations.
-#
-ac_default_prefix=/usr/local
-ac_config_libobj_dir=.
-cross_compiling=no
-subdirs=
-MFLAGS=
-MAKEFLAGS=
-SHELL=${CONFIG_SHELL-/bin/sh}
-
-# Maximum number of lines to put in a shell here document.
-# This variable seems obsolete.  It should probably be removed, and
-# only ac_max_sed_lines should be used.
-: ${ac_max_here_lines=38}
-
-# Identity of this package.
-PACKAGE_NAME=
-PACKAGE_TARNAME=
-PACKAGE_VERSION=
-PACKAGE_STRING=
-PACKAGE_BUGREPORT=
-
-ac_unique_file="wmradio.c"
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS TARGETS HAVE_XOSD LIBXOSD_CONFIG LIBXOSD_CFLAGS LIBXOSD_LIBS PKG_CONFIG PANEL_LIBS PANEL_CFLAGS LIBOBJS LTLIBOBJS'
-ac_subst_files=''
-
-# Initialize some variables set by options.
-ac_init_help=
-ac_init_version=false
-# The variables have the same names as the options, with
-# dashes changed to underlines.
-cache_file=/dev/null
-exec_prefix=NONE
-no_create=
-no_recursion=
-prefix=NONE
-program_prefix=NONE
-program_suffix=NONE
-program_transform_name=s,x,x,
-silent=
-site=
-srcdir=
-verbose=
-x_includes=NONE
-x_libraries=NONE
-
-# Installation directory options.
-# These are left unexpanded so users can "make install exec_prefix=/foo"
-# and all the variables that are supposed to be based on exec_prefix
-# by default will actually change.
-# Use braces instead of parens because sh, perl, etc. also accept them.
-bindir='${exec_prefix}/bin'
-sbindir='${exec_prefix}/sbin'
-libexecdir='${exec_prefix}/libexec'
-datadir='${prefix}/share'
-sysconfdir='${prefix}/etc'
-sharedstatedir='${prefix}/com'
-localstatedir='${prefix}/var'
-libdir='${exec_prefix}/lib'
-includedir='${prefix}/include'
-oldincludedir='/usr/include'
-infodir='${prefix}/info'
-mandir='${prefix}/man'
-
-ac_prev=
-for ac_option
-do
-  # If the previous option needs an argument, assign it.
-  if test -n "$ac_prev"; then
-    eval "$ac_prev=\$ac_option"
-    ac_prev=
-    continue
-  fi
-
-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
-
-  # Accept the important Cygnus configure options, so we can diagnose typos.
-
-  case $ac_option in
-
-  -bindir | --bindir | --bindi | --bind | --bin | --bi)
-    ac_prev=bindir ;;
-  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
-    bindir=$ac_optarg ;;
-
-  -build | --build | --buil | --bui | --bu)
-    ac_prev=build_alias ;;
-  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
-    build_alias=$ac_optarg ;;
-
-  -cache-file | --cache-file | --cache-fil | --cache-fi \
-  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
-    ac_prev=cache_file ;;
-  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
-  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
-    cache_file=$ac_optarg ;;
-
-  --config-cache | -C)
-    cache_file=config.cache ;;
-
-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
-    ac_prev=datadir ;;
-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
-  | --da=*)
-    datadir=$ac_optarg ;;
-
-  -disable-* | --disable-*)
-    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-   { (exit 1); exit 1; }; }
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
-    eval "enable_$ac_feature=no" ;;
-
-  -enable-* | --enable-*)
-    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-   { (exit 1); exit 1; }; }
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
-    case $ac_option in
-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
-      *) ac_optarg=yes ;;
-    esac
-    eval "enable_$ac_feature='$ac_optarg'" ;;
-
-  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
-  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-  | --exec | --exe | --ex)
-    ac_prev=exec_prefix ;;
-  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
-  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
-  | --exec=* | --exe=* | --ex=*)
-    exec_prefix=$ac_optarg ;;
-
-  -gas | --gas | --ga | --g)
-    # Obsolete; use --with-gas.
-    with_gas=yes ;;
-
-  -help | --help | --hel | --he | -h)
-    ac_init_help=long ;;
-  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
-    ac_init_help=recursive ;;
-  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
-    ac_init_help=short ;;
-
-  -host | --host | --hos | --ho)
-    ac_prev=host_alias ;;
-  -host=* | --host=* | --hos=* | --ho=*)
-    host_alias=$ac_optarg ;;
-
-  -includedir | --includedir | --includedi | --included | --include \
-  | --includ | --inclu | --incl | --inc)
-    ac_prev=includedir ;;
-  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
-  | --includ=* | --inclu=* | --incl=* | --inc=*)
-    includedir=$ac_optarg ;;
-
-  -infodir | --infodir | --infodi | --infod | --info | --inf)
-    ac_prev=infodir ;;
-  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
-    infodir=$ac_optarg ;;
-
-  -libdir | --libdir | --libdi | --libd)
-    ac_prev=libdir ;;
-  -libdir=* | --libdir=* | --libdi=* | --libd=*)
-    libdir=$ac_optarg ;;
-
-  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
-  | --libexe | --libex | --libe)
-    ac_prev=libexecdir ;;
-  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
-  | --libexe=* | --libex=* | --libe=*)
-    libexecdir=$ac_optarg ;;
-
-  -localstatedir | --localstatedir | --localstatedi | --localstated \
-  | --localstate | --localstat | --localsta | --localst \
-  | --locals | --local | --loca | --loc | --lo)
-    ac_prev=localstatedir ;;
-  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
-    localstatedir=$ac_optarg ;;
-
-  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-    ac_prev=mandir ;;
-  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
-    mandir=$ac_optarg ;;
-
-  -nfp | --nfp | --nf)
-    # Obsolete; use --without-fp.
-    with_fp=no ;;
-
-  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
-  | --no-cr | --no-c | -n)
-    no_create=yes ;;
-
-  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
-  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
-    no_recursion=yes ;;
-
-  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
-  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
-  | --oldin | --oldi | --old | --ol | --o)
-    ac_prev=oldincludedir ;;
-  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
-  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
-  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
-    oldincludedir=$ac_optarg ;;
-
-  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-    ac_prev=prefix ;;
-  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-    prefix=$ac_optarg ;;
-
-  -program-prefix | --program-prefix | --program-prefi | --program-pref \
-  | --program-pre | --program-pr | --program-p)
-    ac_prev=program_prefix ;;
-  -program-prefix=* | --program-prefix=* | --program-prefi=* \
-  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
-    program_prefix=$ac_optarg ;;
-
-  -program-suffix | --program-suffix | --program-suffi | --program-suff \
-  | --program-suf | --program-su | --program-s)
-    ac_prev=program_suffix ;;
-  -program-suffix=* | --program-suffix=* | --program-suffi=* \
-  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
-    program_suffix=$ac_optarg ;;
-
-  -program-transform-name | --program-transform-name \
-  | --program-transform-nam | --program-transform-na \
-  | --program-transform-n | --program-transform- \
-  | --program-transform | --program-transfor \
-  | --program-transfo | --program-transf \
-  | --program-trans | --program-tran \
-  | --progr-tra | --program-tr | --program-t)
-    ac_prev=program_transform_name ;;
-  -program-transform-name=* | --program-transform-name=* \
-  | --program-transform-nam=* | --program-transform-na=* \
-  | --program-transform-n=* | --program-transform-=* \
-  | --program-transform=* | --program-transfor=* \
-  | --program-transfo=* | --program-transf=* \
-  | --program-trans=* | --program-tran=* \
-  | --progr-tra=* | --program-tr=* | --program-t=*)
-    program_transform_name=$ac_optarg ;;
-
-  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-  | -silent | --silent | --silen | --sile | --sil)
-    silent=yes ;;
-
-  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
-    ac_prev=sbindir ;;
-  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
-  | --sbi=* | --sb=*)
-    sbindir=$ac_optarg ;;
-
-  -sharedstatedir | --sharedstatedir | --sharedstatedi \
-  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
-  | --sharedst | --shareds | --shared | --share | --shar \
-  | --sha | --sh)
-    ac_prev=sharedstatedir ;;
-  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
-  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
-  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
-  | --sha=* | --sh=*)
-    sharedstatedir=$ac_optarg ;;
-
-  -site | --site | --sit)
-    ac_prev=site ;;
-  -site=* | --site=* | --sit=*)
-    site=$ac_optarg ;;
-
-  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
-    ac_prev=srcdir ;;
-  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
-    srcdir=$ac_optarg ;;
-
-  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
-  | --syscon | --sysco | --sysc | --sys | --sy)
-    ac_prev=sysconfdir ;;
-  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
-  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
-    sysconfdir=$ac_optarg ;;
-
-  -target | --target | --targe | --targ | --tar | --ta | --t)
-    ac_prev=target_alias ;;
-  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
-    target_alias=$ac_optarg ;;
-
-  -v | -verbose | --verbose | --verbos | --verbo | --verb)
-    verbose=yes ;;
-
-  -version | --version | --versio | --versi | --vers | -V)
-    ac_init_version=: ;;
-
-  -with-* | --with-*)
-    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid package name: $ac_package" >&2
-   { (exit 1); exit 1; }; }
-    ac_package=`echo $ac_package| sed 's/-/_/g'`
-    case $ac_option in
-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
-      *) ac_optarg=yes ;;
-    esac
-    eval "with_$ac_package='$ac_optarg'" ;;
-
-  -without-* | --without-*)
-    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid package name: $ac_package" >&2
-   { (exit 1); exit 1; }; }
-    ac_package=`echo $ac_package | sed 's/-/_/g'`
-    eval "with_$ac_package=no" ;;
-
-  --x)
-    # Obsolete; use --with-x.
-    with_x=yes ;;
-
-  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
-  | --x-incl | --x-inc | --x-in | --x-i)
-    ac_prev=x_includes ;;
-  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
-  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
-    x_includes=$ac_optarg ;;
-
-  -x-libraries | --x-libraries | --x-librarie | --x-librari \
-  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
-    ac_prev=x_libraries ;;
-  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
-  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
-    x_libraries=$ac_optarg ;;
-
-  -*) { echo "$as_me: error: unrecognized option: $ac_option
-Try \`$0 --help' for more information." >&2
-   { (exit 1); exit 1; }; }
-    ;;
-
-  *=*)
-    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
-   { (exit 1); exit 1; }; }
-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
-    eval "$ac_envvar='$ac_optarg'"
-    export $ac_envvar ;;
-
-  *)
-    # FIXME: should be removed in autoconf 3.0.
-    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
-    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
-    ;;
-
-  esac
-done
-
-if test -n "$ac_prev"; then
-  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-  { echo "$as_me: error: missing argument to $ac_option" >&2
-   { (exit 1); exit 1; }; }
-fi
-
-# Be sure to have absolute paths.
-for ac_var in exec_prefix prefix
-do
-  eval ac_val=$`echo $ac_var`
-  case $ac_val in
-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-   { (exit 1); exit 1; }; };;
-  esac
-done
-
-# Be sure to have absolute paths.
-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
-              localstatedir libdir includedir oldincludedir infodir mandir
-do
-  eval ac_val=$`echo $ac_var`
-  case $ac_val in
-    [\\/$]* | ?:[\\/]* ) ;;
-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-   { (exit 1); exit 1; }; };;
-  esac
-done
-
-# There might be people who depend on the old broken behavior: `$host'
-# used to hold the argument of --host etc.
-# FIXME: To remove some day.
-build=$build_alias
-host=$host_alias
-target=$target_alias
-
-# FIXME: To remove some day.
-if test "x$host_alias" != x; then
-  if test "x$build_alias" = x; then
-    cross_compiling=maybe
-    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-    If a cross compiler is detected then cross compile mode will be used." >&2
-  elif test "x$build_alias" != "x$host_alias"; then
-    cross_compiling=yes
-  fi
-fi
-
-ac_tool_prefix=
-test -n "$host_alias" && ac_tool_prefix=$host_alias-
-
-test "$silent" = yes && exec 6>/dev/null
-
-
-# Find the source files, if location was not specified.
-if test -z "$srcdir"; then
-  ac_srcdir_defaulted=yes
-  # Try the directory containing this script, then its parent.
-  ac_confdir=`(dirname "$0") 2>/dev/null ||
-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-         X"$0" : 'X\(//\)[^/]' \| \
-         X"$0" : 'X\(//\)$' \| \
-         X"$0" : 'X\(/\)' \| \
-         .     : '\(.\)' 2>/dev/null ||
-echo X"$0" |
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
-  	  /^X\(\/\/\)$/{ s//\1/; q; }
-  	  /^X\(\/\).*/{ s//\1/; q; }
-  	  s/.*/./; q'`
-  srcdir=$ac_confdir
-  if test ! -r $srcdir/$ac_unique_file; then
-    srcdir=..
-  fi
-else
-  ac_srcdir_defaulted=no
-fi
-if test ! -r $srcdir/$ac_unique_file; then
-  if test "$ac_srcdir_defaulted" = yes; then
-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
-   { (exit 1); exit 1; }; }
-  else
-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
-   { (exit 1); exit 1; }; }
-  fi
-fi
-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
-  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
-   { (exit 1); exit 1; }; }
-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
-ac_env_build_alias_set=${build_alias+set}
-ac_env_build_alias_value=$build_alias
-ac_cv_env_build_alias_set=${build_alias+set}
-ac_cv_env_build_alias_value=$build_alias
-ac_env_host_alias_set=${host_alias+set}
-ac_env_host_alias_value=$host_alias
-ac_cv_env_host_alias_set=${host_alias+set}
-ac_cv_env_host_alias_value=$host_alias
-ac_env_target_alias_set=${target_alias+set}
-ac_env_target_alias_value=$target_alias
-ac_cv_env_target_alias_set=${target_alias+set}
-ac_cv_env_target_alias_value=$target_alias
-ac_env_CC_set=${CC+set}
-ac_env_CC_value=$CC
-ac_cv_env_CC_set=${CC+set}
-ac_cv_env_CC_value=$CC
-ac_env_CFLAGS_set=${CFLAGS+set}
-ac_env_CFLAGS_value=$CFLAGS
-ac_cv_env_CFLAGS_set=${CFLAGS+set}
-ac_cv_env_CFLAGS_value=$CFLAGS
-ac_env_LDFLAGS_set=${LDFLAGS+set}
-ac_env_LDFLAGS_value=$LDFLAGS
-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
-ac_cv_env_LDFLAGS_value=$LDFLAGS
-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
-ac_env_CPPFLAGS_value=$CPPFLAGS
-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
-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 this package to adapt to many kinds of systems.
-
-Usage: $0 [OPTION]... [VAR=VALUE]...
-
-To assign environment variables (e.g., CC, CFLAGS...), specify them as
-VAR=VALUE.  See below for descriptions of some of the useful variables.
-
-Defaults for the options are specified in brackets.
-
-Configuration:
-  -h, --help              display this help and exit
-      --help=short        display options specific to this package
-      --help=recursive    display the short help of all the included packages
-  -V, --version           display version information and exit
-  -q, --quiet, --silent   do not print \`checking...' messages
-      --cache-file=FILE   cache test results in FILE [disabled]
-  -C, --config-cache      alias for \`--cache-file=config.cache'
-  -n, --no-create         do not create output files
-      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
-
-_ACEOF
-
-  cat <<_ACEOF
-Installation directories:
-  --prefix=PREFIX         install architecture-independent files in PREFIX
-                          [$ac_default_prefix]
-  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
-                          [PREFIX]
-
-By default, \`make install' will install all the files in
-\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
-an installation prefix other than \`$ac_default_prefix' using \`--prefix',
-for instance \`--prefix=\$HOME'.
-
-For better control, use the options below.
-
-Fine tuning of the installation directories:
-  --bindir=DIR           user executables [EPREFIX/bin]
-  --sbindir=DIR          system admin executables [EPREFIX/sbin]
-  --libexecdir=DIR       program executables [EPREFIX/libexec]
-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
-  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
-  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
-  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
-  --libdir=DIR           object code libraries [EPREFIX/lib]
-  --includedir=DIR       C header files [PREFIX/include]
-  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
-  --infodir=DIR          info documentation [PREFIX/info]
-  --mandir=DIR           man documentation [PREFIX/man]
-_ACEOF
-
-  cat <<\_ACEOF
-
-X features:
-  --x-includes=DIR    X include files are in DIR
-  --x-libraries=DIR   X library files are in DIR
-_ACEOF
-fi
-
-if test -n "$ac_init_help"; then
-
-  cat <<\_ACEOF
-
-Optional Features:
-  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
-  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-  --enable-libxosd        use libxosd library (default yes)
-  --enable-gnome          create gnome applet too (default yes)
-
-Optional Packages:
-  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
-  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-  --with-x                use the X Window System
-  --with-xosd-config=LIBXOSD_CONFIG
-                          Location of xosd-config
-
-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.
-
-_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
-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
-# absolute.
-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
-
-    cd $ac_dir
-    # Check for guested configure; otherwise get Cygnus style configure.
-    if test -f $ac_srcdir/configure.gnu; then
-      echo
-      $SHELL $ac_srcdir/configure.gnu  --help=recursive
-    elif test -f $ac_srcdir/configure; then
-      echo
-      $SHELL $ac_srcdir/configure  --help=recursive
-    elif test -f $ac_srcdir/configure.ac ||
-           test -f $ac_srcdir/configure.in; then
-      echo
-      $ac_configure --help
-    else
-      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
-    fi
-    cd $ac_popdir
-  done
-fi
-
-test -n "$ac_init_help" && exit 0
-if $ac_init_version; then
-  cat <<\_ACEOF
-
-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
-Free Software Foundation, Inc.
-This configure script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it.
-_ACEOF
-  exit 0
-fi
-exec 5>config.log
-cat >&5 <<_ACEOF
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by $as_me, which was
-generated by GNU Autoconf 2.57.  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.* *.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
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Check whether --enable-libxosd or --disable-libxosd was given.
-if test "${enable_libxosd+set}" = set; then
-  enableval="$enable_libxosd"
-
-else
-  enable_libxosd="yes"
-fi;
-
-# Check whether --enable-gnome or --disable-gnome was given.
-if test "${enable_gnome+set}" = set; then
-  enableval="$enable_gnome"
-
-else
-  enable_gnome="yes"
-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
-#line $LINENO "configure"
-/* 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" >&5
-echo $ECHO_N "checking for C compiler default output... $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
-#line $LINENO "configure"
-/* 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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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;
-}
-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>&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.$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>&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 \
-   ''\
-   '#include <stdlib.h>' \
-   '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
-#line $LINENO "configure"
-/* confdefs.h.  */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h.  */
-#include <stdlib.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>&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.$ac_objext conftest.$ac_ext
-  cat >conftest.$ac_ext <<_ACEOF
-#line $LINENO "configure"
-/* 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>&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.$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.$ac_objext conftest.$ac_ext
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-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
-#line $LINENO "configure"
-/* 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
-  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
-#line $LINENO "configure"
-/* 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
-  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
-#line $LINENO "configure"
-/* 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
-  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
-#line $LINENO "configure"
-/* 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
-  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 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
-#line $LINENO "configure"
-/* 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
-  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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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.$ac_objext conftest$ac_exeext conftest.$ac_ext
-    LIBS="$ac_xsave_LIBS"
-
-    # [email protected] 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
-#line $LINENO "configure"
-/* confdefs.h.  */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h.  */
-/* 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
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-
-    # [email protected] 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
-#line $LINENO "configure"
-/* confdefs.h.  */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h.  */
-/* 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
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* confdefs.h.  */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h.  */
-/* 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
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* confdefs.h.  */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h.  */
-/* 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
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-#line $LINENO "configure"
-/* 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>&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.$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
-
-
-TARGETS="wmradio xwmradio"
-
-
-
-HAVE_XOSD="undef "
-
-if test "$enable_libxosd" = "yes"; then
-
-# Check whether --with-xosd-config or --without-xosd-config was given.
-if test "${with_xosd_config+set}" = set; then
-  withval="$with_xosd_config"
-  LIBXOSD_CONFIG="$withval"
-fi;
-
-# Extract the first word of "xosd-config", so it can be a program name with args.
-set dummy xosd-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_LIBXOSD_CONFIG+set}" = set; then
-  echo $ECHO_N "(cached) $ECHO_C" >&6
-else
-  case $LIBXOSD_CONFIG in
-  [\\/]* | ?:[\\/]*)
-  ac_cv_path_LIBXOSD_CONFIG="$LIBXOSD_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_LIBXOSD_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_LIBXOSD_CONFIG" && ac_cv_path_LIBXOSD_CONFIG="no"
-  ;;
-esac
-fi
-LIBXOSD_CONFIG=$ac_cv_path_LIBXOSD_CONFIG
-
-if test -n "$LIBXOSD_CONFIG"; then
-  echo "$as_me:$LINENO: result: $LIBXOSD_CONFIG" >&5
-echo "${ECHO_T}$LIBXOSD_CONFIG" >&6
-else
-  echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6
-fi
-
-echo "$as_me:$LINENO: checking for libxosd" >&5
-echo $ECHO_N "checking for libxosd... $ECHO_C" >&6
-if test "$LIBXOSD_CONFIG" = "no"; then
-  echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6
-  { { echo "$as_me:$LINENO: error: Can't find libxosd" >&5
-echo "$as_me: error: Can't find libxosd" >&2;}
-   { (exit 1); exit 1; }; }
-else
-  LIBXOSD_CFLAGS=`$LIBXOSD_CONFIG --cflags`
-  LIBXOSD_LIBS=`$LIBXOSD_CONFIG --libs`
-  echo "$as_me:$LINENO: result: yes" >&5
-echo "${ECHO_T}yes" >&6
-  HAVE_XOSD="define"
-fi
-
-
-
-fi
-
-PANEL_LIBS=""
-PANEL_CFLAGS=""
-if test "$enable_gnome" = "yes" ; then
-  # 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
-
-  ;;
-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 "$PKG_CONFIG" = "" ; then
-    { { echo "$as_me:$LINENO: error: pgk-config not found" >&5
-echo "$as_me: error: pgk-config not found" >&2;}
-   { (exit 1); exit 1; }; }
-  fi
-  TARGETS="$TARGETS gwmradio"
-  PANEL_LIBS="`$PKG_CONFIG --libs libpanelapplet-2.0`"
-  PANEL_CFLAGS="`$PKG_CONFIG --cflags libpanelapplet-2.0`"
-fi
-
-
-
-if test "x${prefix}" = "xNONE"; then
-  cat >>confdefs.h <<_ACEOF
-#define LOCALE_DIR "${ac_default_prefix}/${DATADIRNAME}/locale"
-_ACEOF
-
-else
-  cat >>confdefs.h <<_ACEOF
-#define LOCALE_DIR "${prefix}/${DATADIRNAME}/locale"
-_ACEOF
-
-fi
-
-                              ac_config_files="$ac_config_files Makefile config.h config/wmradio-config.py"
-cat >confcache <<\_ACEOF
-# This file is a shell script that caches the results of configure
-# tests run on this system so they can be shared between configure
-# scripts and configure runs, see configure's option --config-cache.
-# It is not useful on other systems.  If it contains results you don't
-# want to keep, you may remove or edit it.
-#
-# config.status only pays attention to the cache file if you give it
-# the --recheck option to rerun configure.
-#
-# `ac_cv_env_foo' variables (set or unset) will be overridden when
-# loading this file, other *unset* `ac_cv_foo' will be assigned the
-# following values.
-
-_ACEOF
-
-# The following way of writing the cache mishandles newlines in values,
-# but we know of no workaround that is simple, portable, and efficient.
-# So, don't put newlines in cache variables' values.
-# Ultrix sh set writes to stderr and can't be redirected directly,
-# and sets the high bit in the cache file unless we assign to the vars.
-{
-  (set) 2>&1 |
-    case `(ac_space=' '; set | grep ac_space) 2>&1` in
-    *ac_space=\ *)
-      # `set' does not quote correctly, so add quotes (double-quote
-      # substitution turns \\\\ into \\, and sed turns \\ into \).
-      sed -n \
-        "s/'/'\\\\''/g;
-    	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
-      ;;
-    *)
-      # `set' quotes correctly as required by POSIX, so do not add quotes.
-      sed -n \
-        "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
-      ;;
-    esac;
-} |
-  sed '
-     t clear
-     : clear
-     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
-     t end
-     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-     : end' >>confcache
-if diff $cache_file confcache >/dev/null 2>&1; then :; else
-  if test -w $cache_file; then
-    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
-    cat confcache >$cache_file
-  else
-    echo "not updating unwritable cache $cache_file"
-  fi
-fi
-rm -f confcache
-
-test "x$prefix" = xNONE && prefix=$ac_default_prefix
-# Let make expand exec_prefix.
-test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
-# trailing colons and then remove the whole line if VPATH becomes empty
-# (actually we leave an empty line to preserve line numbers).
-if test "x$srcdir" = x.; then
-  ac_vpsub='/^[ 	]*VPATH[ 	]*=/{
-s/:*\$(srcdir):*/:/;
-s/:*\${srcdir}:*/:/;
-s/:*@srcdir@:*/:/;
-s/^\([^=]*=[ 	]*\):*/\1/;
-s/:*$//;
-s/^[^=]*=[ 	]*$//;
-}'
-fi
-
-# Transform confdefs.h into DEFS.
-# Protect against shell expansion while executing Makefile rules.
-# Protect against Makefile macro expansion.
-#
-# If the first sed substitution is executed (which looks for macros that
-# take arguments), then we branch to the quote section.  Otherwise,
-# look for a macro that doesn't take arguments.
-cat >confdef2opt.sed <<\_ACEOF
-t clear
-: clear
-s,^[ 	]*#[ 	]*define[ 	][ 	]*\([^ 	(][^ 	(]*([^)]*)\)[ 	]*\(.*\),-D\1=\2,g
-t quote
-s,^[ 	]*#[ 	]*define[ 	][ 	]*\([^ 	][^ 	]*\)[ 	]*\(.*\),-D\1=\2,g
-t quote
-d
-: quote
-s,[ 	`~#$^&*(){}\\|;'"<>?],\\&,g
-s,\[,\\&,g
-s,\],\\&,g
-s,\$,$$,g
-p
-_ACEOF
-# We use echo to avoid assuming a particular line-breaking character.
-# The extra dot is to prevent the shell from consuming trailing
-# line-breaks from the sub-command output.  A line-break within
-# single-quotes doesn't work because, if this script is created in a
-# platform that uses two characters for line-breaks (e.g., DOS), tr
-# would break.
-ac_LF_and_DOT=`echo; echo .`
-DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
-rm -f confdef2opt.sed
-
-
-ac_libobjs=
-ac_ltlibobjs=
-for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
-  # 1. Remove the extension, and $U if already installed.
-  ac_i=`echo "$ac_i" |
-         sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
-  # 2. Add them.
-  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
-  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
-done
-LIBOBJS=$ac_libobjs
-
-LTLIBOBJS=$ac_ltlibobjs
-
-
-
-: ${CONFIG_STATUS=./config.status}
-ac_clean_files_save=$ac_clean_files
-ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
-echo "$as_me: creating $CONFIG_STATUS" >&6;}
-cat >$CONFIG_STATUS <<_ACEOF
-#! $SHELL
-# Generated by $as_me.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-SHELL=\${CONFIG_SHELL-$SHELL}
-_ACEOF
-
-cat >>$CONFIG_STATUS <<\_ACEOF
-## --------------------- ##
-## M4sh Initialization.  ##
-## --------------------- ##
-
-# Be Bourne compatible
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-  emulate sh
-  NULLCMD=:
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-  # is contrary to our usage.  Disable this feature.
-  alias -g '${1+"$@"}'='"$@"'
-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
-  set -o posix
-fi
-
-# Support unset when possible.
-if (FOO=FOO; unset FOO) >/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 -n "`(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
-  as_mkdir_p=false
-fi
-
-as_executable_p="test -f"
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="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="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
-
-
-# IFS
-# We need space, tab and new line, in precisely that order.
-as_nl='
-'
-IFS=" 	$as_nl"
-
-# CDPATH.
-$as_unset CDPATH
-
-exec 6>&1
-
-# Open the log real soon, to keep \$[0] and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.  Logging --version etc. is OK.
-exec 5>>config.log
-{
-  echo
-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
-} >&5
-cat >&5 <<_CSEOF
-
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.57.  Invocation command line was
-
-  CONFIG_FILES    = $CONFIG_FILES
-  CONFIG_HEADERS  = $CONFIG_HEADERS
-  CONFIG_LINKS    = $CONFIG_LINKS
-  CONFIG_COMMANDS = $CONFIG_COMMANDS
-  $ $0 $@
-
-_CSEOF
-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
-echo >&5
-_ACEOF
-
-# Files that config.status was made for.
-if test -n "$ac_config_files"; then
-  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
-fi
-
-if test -n "$ac_config_headers"; then
-  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
-fi
-
-if test -n "$ac_config_links"; then
-  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
-fi
-
-if test -n "$ac_config_commands"; then
-  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
-fi
-
-cat >>$CONFIG_STATUS <<\_ACEOF
-
-ac_cs_usage="\
-\`$as_me' instantiates files from templates according to the
-current configuration.
-
-Usage: $0 [OPTIONS] [FILE]...
-
-  -h, --help       print this help, then exit
-  -V, --version    print version number, then exit
-  -q, --quiet      do not print progress messages
-  -d, --debug      don't remove temporary files
-      --recheck    update $as_me by reconfiguring in the same conditions
-  --file=FILE[:TEMPLATE]
-                   instantiate the configuration file FILE
-
-Configuration files:
-$config_files
-
-Report bugs to <[email protected]>."
-_ACEOF
-
-cat >>$CONFIG_STATUS <<_ACEOF
-ac_cs_version="\\
-config.status
-configured by $0, generated by GNU Autoconf 2.57,
-  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
-
-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
-Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-srcdir=$srcdir
-_ACEOF
-
-cat >>$CONFIG_STATUS <<\_ACEOF
-# If no file are specified by the user, then we need to provide default
-# value.  By we need to know if files were specified by the user.
-ac_need_defaults=:
-while test $# != 0
-do
-  case $1 in
-  --*=*)
-    ac_option=`expr "x$1" : 'x\([^=]*\)='`
-    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
-    ac_shift=:
-    ;;
-  -*)
-    ac_option=$1
-    ac_optarg=$2
-    ac_shift=shift
-    ;;
-  *) # This is not an option, so the user has probably given explicit
-     # arguments.
-     ac_option=$1
-     ac_need_defaults=false;;
-  esac
-
-  case $ac_option in
-  # Handling of the options.
-_ACEOF
-cat >>$CONFIG_STATUS <<\_ACEOF
-  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
-    ac_cs_recheck=: ;;
-  --version | --vers* | -V )
-    echo "$ac_cs_version"; exit 0 ;;
-  --he | --h)
-    # Conflict between --help and --header
-    { { echo "$as_me:$LINENO: error: ambiguous option: $1
-Try \`$0 --help' for more information." >&5
-echo "$as_me: error: ambiguous option: $1
-Try \`$0 --help' for more information." >&2;}
-   { (exit 1); exit 1; }; };;
-  --help | --hel | -h )
-    echo "$ac_cs_usage"; exit 0 ;;
-  --debug | --d* | -d )
-    debug=: ;;
-  --file | --fil | --fi | --f )
-    $ac_shift
-    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
-    ac_need_defaults=false;;
-  --header | --heade | --head | --hea )
-    $ac_shift
-    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
-    ac_need_defaults=false;;
-  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-  | -silent | --silent | --silen | --sile | --sil | --si | --s)
-    ac_cs_silent=: ;;
-
-  # This is an error.
-  -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
-Try \`$0 --help' for more information." >&5
-echo "$as_me: error: unrecognized option: $1
-Try \`$0 --help' for more information." >&2;}
-   { (exit 1); exit 1; }; } ;;
-
-  *) ac_config_targets="$ac_config_targets $1" ;;
-
-  esac
-  shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
-  exec 6>/dev/null
-  ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-_ACEOF
-cat >>$CONFIG_STATUS <<_ACEOF
-if \$ac_cs_recheck; then
-  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
-  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
-fi
-
-_ACEOF
-
-
-
-
-
-cat >>$CONFIG_STATUS <<\_ACEOF
-for ac_config_target in $ac_config_targets
-do
-  case "$ac_config_target" in
-  # Handling of arguments.
-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-  "config.h" ) CONFIG_FILES="$CONFIG_FILES config.h" ;;
-  "config/wmradio-config.py" ) CONFIG_FILES="$CONFIG_FILES config/wmradio-config.py" ;;
-  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
-echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
-   { (exit 1); exit 1; }; };;
-  esac
-done
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used.  Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
-  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
-fi
-
-# Have a temporary directory for convenience.  Make it in the build tree
-# simply because there is no reason to put it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Create a temporary directory, and hook for its removal unless debugging.
-$debug ||
-{
-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
-  trap '{ (exit 1); exit 1; }' 1 2 13 15
-}
-
-# Create a (secure) tmp directory for tmp files.
-
-{
-  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
-  test -n "$tmp" && test -d "$tmp"
-}  ||
-{
-  tmp=./confstat$$-$RANDOM
-  (umask 077 && mkdir $tmp)
-} ||
-{
-   echo "$me: cannot create a temporary directory in ." >&2
-   { (exit 1); exit 1; }
-}
-
-_ACEOF
-
-cat >>$CONFIG_STATUS <<_ACEOF
-
-#
-# CONFIG_FILES section.
-#
-
-# No need to generate the scripts if there are no CONFIG_FILES.
-# This happens for instance when ./config.status config.h
-if test -n "\$CONFIG_FILES"; then
-  # Protect against being on the right side of a sed subst in config.status.
-  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
-   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
-s,@SHELL@,$SHELL,;t t
-s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
-s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
-s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
-s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
-s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
-s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
-s,@exec_prefix@,$exec_prefix,;t t
-s,@prefix@,$prefix,;t t
-s,@program_transform_name@,$program_transform_name,;t t
-s,@bindir@,$bindir,;t t
-s,@sbindir@,$sbindir,;t t
-s,@libexecdir@,$libexecdir,;t t
-s,@datadir@,$datadir,;t t
-s,@sysconfdir@,$sysconfdir,;t t
-s,@sharedstatedir@,$sharedstatedir,;t t
-s,@localstatedir@,$localstatedir,;t t
-s,@libdir@,$libdir,;t t
-s,@includedir@,$includedir,;t t
-s,@oldincludedir@,$oldincludedir,;t t
-s,@infodir@,$infodir,;t t
-s,@mandir@,$mandir,;t t
-s,@build_alias@,$build_alias,;t t
-s,@host_alias@,$host_alias,;t t
-s,@target_alias@,$target_alias,;t t
-s,@DEFS@,$DEFS,;t t
-s,@ECHO_C@,$ECHO_C,;t t
-s,@ECHO_N@,$ECHO_N,;t t
-s,@ECHO_T@,$ECHO_T,;t t
-s,@LIBS@,$LIBS,;t t
-s,@CC@,$CC,;t t
-s,@CFLAGS@,$CFLAGS,;t t
-s,@LDFLAGS@,$LDFLAGS,;t t
-s,@CPPFLAGS@,$CPPFLAGS,;t t
-s,@ac_ct_CC@,$ac_ct_CC,;t t
-s,@EXEEXT@,$EXEEXT,;t t
-s,@OBJEXT@,$OBJEXT,;t t
-s,@CPP@,$CPP,;t t
-s,@X_CFLAGS@,$X_CFLAGS,;t t
-s,@X_PRE_LIBS@,$X_PRE_LIBS,;t t
-s,@X_LIBS@,$X_LIBS,;t t
-s,@X_EXTRA_LIBS@,$X_EXTRA_LIBS,;t t
-s,@TARGETS@,$TARGETS,;t t
-s,@HAVE_XOSD@,$HAVE_XOSD,;t t
-s,@LIBXOSD_CONFIG@,$LIBXOSD_CONFIG,;t t
-s,@LIBXOSD_CFLAGS@,$LIBXOSD_CFLAGS,;t t
-s,@LIBXOSD_LIBS@,$LIBXOSD_LIBS,;t t
-s,@PKG_CONFIG@,$PKG_CONFIG,;t t
-s,@PANEL_LIBS@,$PANEL_LIBS,;t t
-s,@PANEL_CFLAGS@,$PANEL_CFLAGS,;t t
-s,@LIBOBJS@,$LIBOBJS,;t t
-s,@LTLIBOBJS@,$LTLIBOBJS,;t t
-CEOF
-
-_ACEOF
-
-  cat >>$CONFIG_STATUS <<\_ACEOF
-  # Split the substitutions into bite-sized pieces for seds with
-  # small command number limits, like on Digital OSF/1 and HP-UX.
-  ac_max_sed_lines=48
-  ac_sed_frag=1 # Number of current file.
-  ac_beg=1 # First line for current file.
-  ac_end=$ac_max_sed_lines # Line after last line for current file.
-  ac_more_lines=:
-  ac_sed_cmds=
-  while $ac_more_lines; do
-    if test $ac_beg -gt 1; then
-      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
-    else
-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
-    fi
-    if test ! -s $tmp/subs.frag; then
-      ac_more_lines=false
-    else
-      # The purpose of the label and of the branching condition is to
-      # speed up the sed processing (if there are no `@' at all, there
-      # is no need to browse any of the substitutions).
-      # These are the two extra sed commands mentioned above.
-      (echo ':t
-  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
-      if test -z "$ac_sed_cmds"; then
-  	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
-      else
-  	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
-      fi
-      ac_sed_frag=`expr $ac_sed_frag + 1`
-      ac_beg=$ac_end
-      ac_end=`expr $ac_end + $ac_max_sed_lines`
-    fi
-  done
-  if test -z "$ac_sed_cmds"; then
-    ac_sed_cmds=cat
-  fi
-fi # test -n "$CONFIG_FILES"
-
-_ACEOF
-cat >>$CONFIG_STATUS <<\_ACEOF
-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
-  case $ac_file in
-  - | *:- | *:-:* ) # input from stdin
-        cat >$tmp/stdin
-        ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
-        ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
-        ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
-  * )   ac_file_in=$ac_file.in ;;
-  esac
-
-  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
-  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-         X"$ac_file" : 'X\(//\)[^/]' \| \
-         X"$ac_file" : 'X\(//\)$' \| \
-         X"$ac_file" : 'X\(/\)' \| \
-         .     : '\(.\)' 2>/dev/null ||
-echo X"$ac_file" |
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
-  	  /^X\(\/\/\)$/{ s//\1/; q; }
-  	  /^X\(\/\).*/{ s//\1/; q; }
-  	  s/.*/./; q'`
-  { if $as_mkdir_p; then
-    mkdir -p "$ac_dir"
-  else
-    as_dir="$ac_dir"
-    as_dirs=
-    while test ! -d "$as_dir"; do
-      as_dirs="$as_dir $as_dirs"
-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-         X"$as_dir" : 'X\(//\)[^/]' \| \
-         X"$as_dir" : 'X\(//\)$' \| \
-         X"$as_dir" : 'X\(/\)' \| \
-         .     : '\(.\)' 2>/dev/null ||
-echo X"$as_dir" |
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
-  	  /^X\(\/\/\)$/{ s//\1/; q; }
-  	  /^X\(\/\).*/{ s//\1/; q; }
-  	  s/.*/./; q'`
-    done
-    test ! -n "$as_dirs" || mkdir $as_dirs
-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
-   { (exit 1); exit 1; }; }; }
-
-  ac_builddir=.
-
-if test "$ac_dir" != .; then
-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-  # A "../" for each directory in $ac_dir_suffix.
-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
-else
-  ac_dir_suffix= ac_top_builddir=
-fi
-
-case $srcdir in
-  .)  # No --srcdir option.  We are building in place.
-    ac_srcdir=.
-    if test -z "$ac_top_builddir"; then
-       ac_top_srcdir=.
-    else
-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
-    fi ;;
-  [\\/]* | ?:[\\/]* )  # Absolute path.
-    ac_srcdir=$srcdir$ac_dir_suffix;
-    ac_top_srcdir=$srcdir ;;
-  *) # Relative path.
-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
-esac
-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
-# absolute.
-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
-
-
-
-  if test x"$ac_file" != x-; then
-    { echo "$as_me:$LINENO: creating $ac_file" >&5
-echo "$as_me: creating $ac_file" >&6;}
-    rm -f "$ac_file"
-  fi
-  # Let's still pretend it is `configure' which instantiates (i.e., don't
-  # use $as_me), people would be surprised to read:
-  #    /* config.h.  Generated by config.status.  */
-  if test x"$ac_file" = x-; then
-    configure_input=
-  else
-    configure_input="$ac_file.  "
-  fi
-  configure_input=$configure_input"Generated from `echo $ac_file_in |
-                                     sed 's,.*/,,'` by configure."
-
-  # First look for the input files in the build tree, otherwise in the
-  # src tree.
-  ac_file_inputs=`IFS=:
-    for f in $ac_file_in; do
-      case $f in
-      -) echo $tmp/stdin ;;
-      [\\/$]*)
-         # Absolute (can't be DOS-style, as IFS=:)
-         test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
-echo "$as_me: error: cannot find input file: $f" >&2;}
-   { (exit 1); exit 1; }; }
-         echo $f;;
-      *) # Relative
-         if test -f "$f"; then
-           # Build tree
-           echo $f
-         elif test -f "$srcdir/$f"; then
-           # Source tree
-           echo $srcdir/$f
-         else
-           # /dev/null tree
-           { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
-echo "$as_me: error: cannot find input file: $f" >&2;}
-   { (exit 1); exit 1; }; }
-         fi;;
-      esac
-    done` || { (exit 1); exit 1; }
-_ACEOF
-cat >>$CONFIG_STATUS <<_ACEOF
-  sed "$ac_vpsub
-$extrasub
-_ACEOF
-cat >>$CONFIG_STATUS <<\_ACEOF
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s,@configure_input@,$configure_input,;t t
-s,@srcdir@,$ac_srcdir,;t t
-s,@abs_srcdir@,$ac_abs_srcdir,;t t
-s,@top_srcdir@,$ac_top_srcdir,;t t
-s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
-s,@builddir@,$ac_builddir,;t t
-s,@abs_builddir@,$ac_abs_builddir,;t t
-s,@top_builddir@,$ac_top_builddir,;t t
-s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
-  rm -f $tmp/stdin
-  if test x"$ac_file" != x-; then
-    mv $tmp/out $ac_file
-  else
-    cat $tmp/out
-    rm -f $tmp/out
-  fi
-
-done
-_ACEOF
-
-cat >>$CONFIG_STATUS <<\_ACEOF
-
-{ (exit 0); exit 0; }
-_ACEOF
-chmod +x $CONFIG_STATUS
-ac_clean_files=$ac_clean_files_save
-
-
-# configure is writing to config.log, and then calls config.status.
-# config.status does its own redirection, appending to config.log.
-# Unfortunately, on DOS this fails, as config.log is still kept open
-# by configure, so config.status won't be able to write to it; its
-# output is simply discarded.  So we exec the FD to /dev/null,
-# effectively closing config.log, so it can be properly (re)opened and
-# appended to by config.status.  When coming back to configure, we
-# need to make the FD available again.
-if test "$no_create" != yes; then
-  ac_cs_success=:
-  ac_config_status_args=
-  test "$silent" = yes &&
-    ac_config_status_args="$ac_config_status_args --quiet"
-  exec 5>/dev/null
-  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
-  exec 5>>config.log
-  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
-  # would make configure fail if this is the last instruction.
-  $ac_cs_success || { (exit 1); exit 1; }
-fi
-
diff --git a/wmradio/gwmradio b/wmradio/gwmradio
deleted file mode 100755
index 1304e579875523c7ca46e70b89bc275625262659..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 86202
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

-- 
2.7.4


-- 
To unsubscribe, send mail to [email protected].
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.