From e8e594af66a57517052d9d7d341687880fa9a7ae Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@theworths.org>
Date: Fri, 13 Jun 2003 10:39:03 +0000
Subject: [PATCH 1/1] Initial revision

---
 .gitignore                         |   21 +
 AUTHORS                            |    2 +
 COPYING                            |   20 +
 ChangeLog                          |    0
 Makefile.am                        |    3 +
 NEWS                               |    0
 README                             |    1 +
 autogen.sh                         |   28 +
 configure.in                       |   30 +
 ltmain.sh                          | 6290 ++++++++++++++++++++++++++++
 src/.cvsignore                     |    6 +
 src/Makefile.am                    |   15 +
 src/args.c                         |  106 +
 src/args.h                         |   52 +
 src/grr_board_view.c               |  764 ++++
 src/grr_board_view.h               |   99 +
 src/grr_board_view_test.c          |  124 +
 src/grr_icons.c                    |   56 +
 src/grr_icons.h                    |   57 +
 src/grr_test.c                     |   67 +
 src/grrobot.c                      |  238 ++
 src/gtk_explode                    |  Bin 0 -> 164072 bytes
 src/gtk_explode.c                  |   40 +
 src/svg/cell.svg                   |    6 +
 src/svg/robot_blue.svg             |  257 ++
 src/svg/robot_green.svg            |  257 ++
 src/svg/robot_red.svg              |  257 ++
 src/svg/robot_yellow.svg           |  257 ++
 src/svg/target_blue_circle.svg     |    6 +
 src/svg/target_blue_octagon.svg    |    6 +
 src/svg/target_blue_square.svg     |    6 +
 src/svg/target_blue_triangle.svg   |    6 +
 src/svg/target_green_circle.svg    |    6 +
 src/svg/target_green_octagon.svg   |    6 +
 src/svg/target_green_square.svg    |    6 +
 src/svg/target_green_triangle.svg  |    6 +
 src/svg/target_red_circle.svg      |    6 +
 src/svg/target_red_octagon.svg     |    6 +
 src/svg/target_red_square.svg      |    6 +
 src/svg/target_red_triangle.svg    |    6 +
 src/svg/target_whirl.svg           |   57 +
 src/svg/target_yellow_circle.svg   |    6 +
 src/svg/target_yellow_octagon.svg  |    6 +
 src/svg/target_yellow_square.svg   |    6 +
 src/svg/target_yellow_triangle.svg |    6 +
 src/svg/w                          |   77 +
 src/svg/w.svg                      |   49 +
 src/svg/wall.svg                   |    6 +
 src/svg/whirl.svg                  |   87 +
 src/svg/whirl_non_sodi.svg         |   21 +
 src/svg/whirl_sodi.svg             |   21 +
 src/svg/x.svg                      |  164 +
 52 files changed, 9631 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 AUTHORS
 create mode 100644 COPYING
 create mode 100644 ChangeLog
 create mode 100644 Makefile.am
 create mode 100644 NEWS
 create mode 100644 README
 create mode 100755 autogen.sh
 create mode 100644 configure.in
 create mode 100644 ltmain.sh
 create mode 100644 src/.cvsignore
 create mode 100644 src/Makefile.am
 create mode 100644 src/args.c
 create mode 100644 src/args.h
 create mode 100644 src/grr_board_view.c
 create mode 100644 src/grr_board_view.h
 create mode 100644 src/grr_board_view_test.c
 create mode 100644 src/grr_icons.c
 create mode 100644 src/grr_icons.h
 create mode 100644 src/grr_test.c
 create mode 100644 src/grrobot.c
 create mode 100755 src/gtk_explode
 create mode 100644 src/gtk_explode.c
 create mode 100644 src/svg/cell.svg
 create mode 100644 src/svg/robot_blue.svg
 create mode 100644 src/svg/robot_green.svg
 create mode 100644 src/svg/robot_red.svg
 create mode 100644 src/svg/robot_yellow.svg
 create mode 100644 src/svg/target_blue_circle.svg
 create mode 100644 src/svg/target_blue_octagon.svg
 create mode 100644 src/svg/target_blue_square.svg
 create mode 100644 src/svg/target_blue_triangle.svg
 create mode 100644 src/svg/target_green_circle.svg
 create mode 100644 src/svg/target_green_octagon.svg
 create mode 100644 src/svg/target_green_square.svg
 create mode 100644 src/svg/target_green_triangle.svg
 create mode 100644 src/svg/target_red_circle.svg
 create mode 100644 src/svg/target_red_octagon.svg
 create mode 100644 src/svg/target_red_square.svg
 create mode 100644 src/svg/target_red_triangle.svg
 create mode 100644 src/svg/target_whirl.svg
 create mode 100644 src/svg/target_yellow_circle.svg
 create mode 100644 src/svg/target_yellow_octagon.svg
 create mode 100644 src/svg/target_yellow_square.svg
 create mode 100644 src/svg/target_yellow_triangle.svg
 create mode 100644 src/svg/w
 create mode 100644 src/svg/w.svg
 create mode 100644 src/svg/wall.svg
 create mode 100644 src/svg/whirl.svg
 create mode 100644 src/svg/whirl_non_sodi.svg
 create mode 100644 src/svg/whirl_sodi.svg
 create mode 100644 src/svg/x.svg

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d88a325
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,21 @@
+aclocal.m4
+config.cache
+config.guess
+config.h
+config.h.in
+config.log
+config.status
+config.sub
+configure
+INSTALL
+install-sh
+Makefile
+Makefile.in
+missing
+mkinstalldirs
+stamp-h
+stamp-h.in
+
+
+
+
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..8ac74b5
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+Carl Worth <carl@theworths.org>
+
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..11b5ab1
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,20 @@
+grrobot is Copyright © 2003 Carl Worth
+
+Permission to use, copy, modify, distribute, and sell this software
+and its documentation for any purpose is hereby granted without fee,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation, and that the name of Carl Worth not be used
+in advertising or publicity pertaining to distribution of the software
+without specific, written prior permission.  Carl Worth %makes no
+representations about the suitability of this software for any
+purpose.  It is provided "as is" without express or implied warranty.
+
+CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
+USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 0000000..e69de29
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..bd02e6c
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,3 @@
+SUBDIRS = . src
+
+
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..e69de29
diff --git a/README b/README
new file mode 100644
index 0000000..bb4a6cf
--- /dev/null
+++ b/README
@@ -0,0 +1 @@
+grrobot - Ricochet Robot using GTK+ and Xr
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..3c416dd
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+set -e
+
+if test -z "$*"; then
+  echo "$0:	Note: \`./configure' will be run with no arguments."
+  echo "		If you wish to pass any to it, please specify them on the"
+  echo "		\`$0' command line."
+  echo
+fi
+
+do_cmd() {
+    echo "$0: running \`$@'"
+    $@
+}
+
+do_cmd libtoolize --force --copy
+
+do_cmd aclocal
+
+do_cmd autoheader
+
+do_cmd automake --add-missing
+
+do_cmd autoconf
+
+do_cmd ./configure ${1+"$@"} && echo "Now type \`make' to compile" || exit 1
diff --git a/configure.in b/configure.in
new file mode 100644
index 0000000..732a07c
--- /dev/null
+++ b/configure.in
@@ -0,0 +1,30 @@
+AC_INIT(src/grrobot.c)
+
+dnl ===========================================================================
+
+GRROBOT_VERSION=0.1.0
+AC_SUBST(GRROBOT_VERSION)
+
+dnl ===========================================================================
+
+AM_INIT_AUTOMAKE(xsvg, $GRROBOT_VERSION)
+AM_CONFIG_HEADER(config.h)
+
+AM_MAINTAINER_MODE
+
+AC_ISC_POSIX
+AC_PROG_CC
+AC_STDC_HEADERS
+
+dnl ===========================================================================
+
+PKG_CHECK_MODULES(GRROBOT, gtk+-2.0 libxsvg librr)
+AC_SUBST(GRROBOT_CFLAGS)
+AC_SUBST(GRROBOT_LIBS)
+
+dnl ===========================================================================
+
+AC_OUTPUT([
+Makefile
+src/Makefile
+])
diff --git a/ltmain.sh b/ltmain.sh
new file mode 100644
index 0000000..fe83ff4
--- /dev/null
+++ b/ltmain.sh
@@ -0,0 +1,6290 @@
+# ltmain.sh - Provide generalized library-building support services.
+# NOTE: Changing this file will not affect anything until you rerun configure.
+#
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003
+# Free Software Foundation, Inc.
+# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# Check that we have a working $echo.
+if test "X$1" = X--no-reexec; then
+  # Discard the --no-reexec flag, and continue.
+  shift
+elif test "X$1" = X--fallback-echo; then
+  # Avoid inline document here, it may be left over
+  :
+elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
+  # Yippee, $echo works!
+  :
+else
+  # Restart under the correct shell, and then maybe $echo will work.
+  exec $SHELL "$0" --no-reexec ${1+"$@"}
+fi
+
+if test "X$1" = X--fallback-echo; then
+  # used as fallback echo
+  shift
+  cat <<EOF
+$*
+EOF
+  exit 0
+fi
+
+# The name of this program.
+progname=`$echo "$0" | ${SED} 's%^.*/%%'`
+modename="$progname"
+
+# Constants.
+PROGRAM=ltmain.sh
+PACKAGE=libtool
+VERSION=1.5
+TIMESTAMP=" (1.1220 2003/04/05 19:32:58)"
+
+default_mode=
+help="Try \`$progname --help' for more information."
+magic="%%%MAGIC variable%%%"
+mkdir="mkdir"
+mv="mv -f"
+rm="rm -f"
+
+# Sed substitution that helps us do robust quoting.  It backslashifies
+# metacharacters that are still active within double-quoted strings.
+Xsed="${SED}"' -e 1s/^X//'
+sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
+# test EBCDIC or ASCII
+case `echo A|od -x` in
+ *[Cc]1*) # EBCDIC based system
+  SP2NL="tr '\100' '\n'"
+  NL2SP="tr '\r\n' '\100\100'"
+  ;;
+ *) # Assume ASCII based system
+  SP2NL="tr '\040' '\012'"
+  NL2SP="tr '\015\012' '\040\040'"
+  ;;
+esac
+
+# NLS nuisances.
+# Only set LANG and LC_ALL to C if already set.
+# These must not be set unconditionally because not all systems understand
+# e.g. LANG=C (notably SCO).
+# We save the old values to restore during execute mode.
+if test "${LC_ALL+set}" = set; then
+  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
+fi
+if test "${LANG+set}" = set; then
+  save_LANG="$LANG"; LANG=C; export LANG
+fi
+
+# Make sure IFS has a sensible default
+: ${IFS=" 	"}
+
+if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
+  $echo "$modename: not configured to build any kind of library" 1>&2
+  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
+  exit 1
+fi
+
+# Global variables.
+mode=$default_mode
+nonopt=
+prev=
+prevopt=
+run=
+show="$echo"
+show_help=
+execute_dlfiles=
+lo2o="s/\\.lo\$/.${objext}/"
+o2lo="s/\\.${objext}\$/.lo/"
+
+#####################################
+# Shell function definitions:
+# This seems to be the best place for them
+
+# Need a lot of goo to handle *both* DLLs and import libs
+# Has to be a shell function in order to 'eat' the argument
+# that is supplied when $file_magic_command is called.
+win32_libid () {
+  win32_libid_type="unknown"
+  win32_fileres=`file -L $1 2>/dev/null`
+  case $win32_fileres in
+  *ar\ archive\ import\ library*) # definitely import
+    win32_libid_type="x86 archive import"
+    ;;
+  *ar\ archive*) # could be an import, or static
+    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
+      grep -E 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
+      win32_nmres=`eval $NM -f posix -A $1 | \
+	sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
+      if test "X$win32_nmres" = "Ximport" ; then
+        win32_libid_type="x86 archive import"
+      else
+        win32_libid_type="x86 archive static"
+      fi
+    fi
+    ;;
+  *DLL*) 
+    win32_libid_type="x86 DLL"
+    ;;
+  *executable*) # but shell scripts are "executable" too...
+    case $win32_fileres in
+    *MS\ Windows\ PE\ Intel*)
+      win32_libid_type="x86 DLL"
+      ;;
+    esac
+    ;;
+  esac
+  $echo $win32_libid_type
+}
+
+# End of Shell function definitions
+#####################################
+
+# Parse our command line options once, thoroughly.
+while test "$#" -gt 0
+do
+  arg="$1"
+  shift
+
+  case $arg in
+  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
+  *) optarg= ;;
+  esac
+
+  # If the previous option needs an argument, assign it.
+  if test -n "$prev"; then
+    case $prev in
+    execute_dlfiles)
+      execute_dlfiles="$execute_dlfiles $arg"
+      ;;
+    tag)
+      tagname="$arg"
+
+      # Check whether tagname contains only valid characters
+      case $tagname in
+      *[!-_A-Za-z0-9,/]*)
+	$echo "$progname: invalid tag name: $tagname" 1>&2
+	exit 1
+	;;
+      esac
+
+      case $tagname in
+      CC)
+	# Don't test for the "default" C tag, as we know, it's there, but
+	# not specially marked.
+	;;
+      *)
+	if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$0" > /dev/null; then
+	  taglist="$taglist $tagname"
+	  # Evaluate the configuration.
+	  eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $0`"
+	else
+	  $echo "$progname: ignoring unknown tag $tagname" 1>&2
+	fi
+	;;
+      esac
+      ;;
+    *)
+      eval "$prev=\$arg"
+      ;;
+    esac
+
+    prev=
+    prevopt=
+    continue
+  fi
+
+  # Have we seen a non-optional argument yet?
+  case $arg in
+  --help)
+    show_help=yes
+    ;;
+
+  --version)
+    $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
+    $echo
+    $echo "Copyright (C) 2003  Free Software Foundation, Inc."
+    $echo "This is free software; see the source for copying conditions.  There is NO"
+    $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
+    exit 0
+    ;;
+
+  --config)
+    ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $0
+    # Now print the configurations for the tags.
+    for tagname in $taglist; do
+      ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$0"
+    done
+    exit 0
+    ;;
+
+  --debug)
+    $echo "$progname: enabling shell trace mode"
+    set -x
+    ;;
+
+  --dry-run | -n)
+    run=:
+    ;;
+
+  --features)
+    $echo "host: $host"
+    if test "$build_libtool_libs" = yes; then
+      $echo "enable shared libraries"
+    else
+      $echo "disable shared libraries"
+    fi
+    if test "$build_old_libs" = yes; then
+      $echo "enable static libraries"
+    else
+      $echo "disable static libraries"
+    fi
+    exit 0
+    ;;
+
+  --finish) mode="finish" ;;
+
+  --mode) prevopt="--mode" prev=mode ;;
+  --mode=*) mode="$optarg" ;;
+
+  --preserve-dup-deps) duplicate_deps="yes" ;;
+
+  --quiet | --silent)
+    show=:
+    ;;
+
+  --tag) prevopt="--tag" prev=tag ;;
+  --tag=*)
+    set tag "$optarg" ${1+"$@"}
+    shift
+    prev=tag
+    ;;
+
+  -dlopen)
+    prevopt="-dlopen"
+    prev=execute_dlfiles
+    ;;
+
+  -*)
+    $echo "$modename: unrecognized option \`$arg'" 1>&2
+    $echo "$help" 1>&2
+    exit 1
+    ;;
+
+  *)
+    nonopt="$arg"
+    break
+    ;;
+  esac
+done
+
+if test -n "$prevopt"; then
+  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
+  $echo "$help" 1>&2
+  exit 1
+fi
+
+# If this variable is set in any of the actions, the command in it
+# will be execed at the end.  This prevents here-documents from being
+# left over by shells.
+exec_cmd=
+
+if test -z "$show_help"; then
+
+  # Infer the operation mode.
+  if test -z "$mode"; then
+    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
+    $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2
+    case $nonopt in
+    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
+      mode=link
+      for arg
+      do
+	case $arg in
+	-c)
+	   mode=compile
+	   break
+	   ;;
+	esac
+      done
+      ;;
+    *db | *dbx | *strace | *truss)
+      mode=execute
+      ;;
+    *install*|cp|mv)
+      mode=install
+      ;;
+    *rm)
+      mode=uninstall
+      ;;
+    *)
+      # If we have no mode, but dlfiles were specified, then do execute mode.
+      test -n "$execute_dlfiles" && mode=execute
+
+      # Just use the default operation mode.
+      if test -z "$mode"; then
+	if test -n "$nonopt"; then
+	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
+	else
+	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
+	fi
+      fi
+      ;;
+    esac
+  fi
+
+  # Only execute mode is allowed to have -dlopen flags.
+  if test -n "$execute_dlfiles" && test "$mode" != execute; then
+    $echo "$modename: unrecognized option \`-dlopen'" 1>&2
+    $echo "$help" 1>&2
+    exit 1
+  fi
+
+  # Change the help message to a mode-specific one.
+  generic_help="$help"
+  help="Try \`$modename --help --mode=$mode' for more information."
+
+  # These modes are in order of execution frequency so that they run quickly.
+  case $mode in
+  # libtool compile mode
+  compile)
+    modename="$modename: compile"
+    # Get the compilation command and the source file.
+    base_compile=
+    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"
+    suppress_output=
+    arg_mode=normal
+    libobj=
+
+    for arg
+    do
+      case "$arg_mode" in
+      arg  )
+	# do not "continue".  Instead, add this to base_compile
+	lastarg="$arg"
+	arg_mode=normal
+	;;
+
+      target )
+	libobj="$arg"
+	arg_mode=normal
+	continue
+	;;
+
+      normal )
+	# Accept any command-line options.
+	case $arg in
+	-o)
+	  if test -n "$libobj" ; then
+	    $echo "$modename: you cannot specify \`-o' more than once" 1>&2
+	    exit 1
+	  fi
+	  arg_mode=target
+	  continue
+	  ;;
+
+	-static)
+	  build_old_libs=yes
+	  continue
+	  ;;
+
+	-prefer-pic)
+	  pic_mode=yes
+	  continue
+	  ;;
+
+	-prefer-non-pic)
+	  pic_mode=no
+	  continue
+	  ;;
+
+	-Xcompiler)
+	  arg_mode=arg  #  the next one goes into the "base_compile" arg list
+	  continue      #  The current "srcfile" will either be retained or
+	  ;;            #  replaced later.  I would guess that would be a bug.
+
+	-Wc,*)
+	  args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
+	  lastarg=
+	  save_ifs="$IFS"; IFS=','
+	  for arg in $args; do
+	    IFS="$save_ifs"
+
+	    # Double-quote args containing other shell metacharacters.
+	    # Many Bourne shells cannot handle close brackets correctly
+	    # in scan sets, so we specify it separately.
+	    case $arg in
+	      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	      arg="\"$arg\""
+	      ;;
+	    esac
+	    lastarg="$lastarg $arg"
+	  done
+	  IFS="$save_ifs"
+	  lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
+
+	  # Add the arguments to base_compile.
+	  base_compile="$base_compile $lastarg"
+	  continue
+	  ;;
+
+	* )
+	  # Accept the current argument as the source file.
+	  # The previous "srcfile" becomes the current argument.
+	  #
+	  lastarg="$srcfile"
+	  srcfile="$arg"
+	  ;;
+	esac  #  case $arg
+	;;
+      esac    #  case $arg_mode
+
+      # Aesthetically quote the previous argument.
+      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
+
+      case $lastarg in
+      # Double-quote args containing other shell metacharacters.
+      # Many Bourne shells cannot handle close brackets correctly
+      # in scan sets, so we specify it separately.
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	lastarg="\"$lastarg\""
+	;;
+      esac
+
+      base_compile="$base_compile $lastarg"
+    done # for arg
+
+    case $arg_mode in
+    arg)
+      $echo "$modename: you must specify an argument for -Xcompile"
+      exit 1
+      ;;
+    target)
+      $echo "$modename: you must specify a target with \`-o'" 1>&2
+      exit 1
+      ;;
+    *)
+      # Get the name of the library object.
+      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
+      ;;
+    esac
+
+    # Recognize several different file suffixes.
+    # If the user specifies -o file.o, it is replaced with file.lo
+    xform='[cCFSifmso]'
+    case $libobj in
+    *.ada) xform=ada ;;
+    *.adb) xform=adb ;;
+    *.ads) xform=ads ;;
+    *.asm) xform=asm ;;
+    *.c++) xform=c++ ;;
+    *.cc) xform=cc ;;
+    *.ii) xform=ii ;;
+    *.class) xform=class ;;
+    *.cpp) xform=cpp ;;
+    *.cxx) xform=cxx ;;
+    *.f90) xform=f90 ;;
+    *.for) xform=for ;;
+    *.java) xform=java ;;
+    esac
+
+    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
+
+    case $libobj in
+    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
+    *)
+      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
+      exit 1
+      ;;
+    esac
+
+    # Infer tagged configuration to use if any are available and
+    # if one wasn't chosen via the "--tag" command line option.
+    # Only attempt this if the compiler in the base compile
+    # command doesn't match the default compiler.
+    if test -n "$available_tags" && test -z "$tagname"; then
+      case $base_compile in
+      # Blanks in the command may have been stripped by the calling shell,
+      # but not from the CC environment variable when configure was run.
+      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "*) ;;
+      # Blanks at the start of $base_compile will cause this to fail
+      # if we don't check for them as well.
+      *)
+	for z in $available_tags; do
+	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
+	    # Evaluate the configuration.
+	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
+	    case "$base_compile " in
+	    "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*)
+	      # The compiler in the base compile command matches
+	      # the one in the tagged configuration.
+	      # Assume this is the tagged configuration we want.
+	      tagname=$z
+	      break
+	      ;;
+	    esac
+	  fi
+	done
+	# If $tagname still isn't set, then no tagged configuration
+	# was found and let the user know that the "--tag" command
+	# line option must be used.
+	if test -z "$tagname"; then
+	  $echo "$modename: unable to infer tagged configuration"
+	  $echo "$modename: specify a tag with \`--tag'" 1>&2
+	  exit 1
+#        else
+#          $echo "$modename: using $tagname tagged configuration"
+	fi
+	;;
+      esac
+    fi
+
+    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
+    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
+    if test "X$xdir" = "X$obj"; then
+      xdir=
+    else
+      xdir=$xdir/
+    fi
+    lobj=${xdir}$objdir/$objname
+
+    if test -z "$base_compile"; then
+      $echo "$modename: you must specify a compilation command" 1>&2
+      $echo "$help" 1>&2
+      exit 1
+    fi
+
+    # Delete any leftover library objects.
+    if test "$build_old_libs" = yes; then
+      removelist="$obj $lobj $libobj ${libobj}T"
+    else
+      removelist="$lobj $libobj ${libobj}T"
+    fi
+
+    $run $rm $removelist
+    trap "$run $rm $removelist; exit 1" 1 2 15
+
+    # On Cygwin there's no "real" PIC flag so we must build both object types
+    case $host_os in
+    cygwin* | mingw* | pw32* | os2*)
+      pic_mode=default
+      ;;
+    esac
+    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
+      # non-PIC code in shared libraries is not supported
+      pic_mode=default
+    fi
+
+    # Calculate the filename of the output object if compiler does
+    # not support -o with -c
+    if test "$compiler_c_o" = no; then
+      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
+      lockfile="$output_obj.lock"
+      removelist="$removelist $output_obj $lockfile"
+      trap "$run $rm $removelist; exit 1" 1 2 15
+    else
+      output_obj=
+      need_locks=no
+      lockfile=
+    fi
+
+    # Lock this critical section if it is needed
+    # We use this script file to make the link, it avoids creating a new file
+    if test "$need_locks" = yes; then
+      until $run ln "$0" "$lockfile" 2>/dev/null; do
+	$show "Waiting for $lockfile to be removed"
+	sleep 2
+      done
+    elif test "$need_locks" = warn; then
+      if test -f "$lockfile"; then
+	$echo "\
+*** ERROR, $lockfile exists and contains:
+`cat $lockfile 2>/dev/null`
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together.  If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+	$run $rm $removelist
+	exit 1
+      fi
+      $echo $srcfile > "$lockfile"
+    fi
+
+    if test -n "$fix_srcfile_path"; then
+      eval srcfile=\"$fix_srcfile_path\"
+    fi
+
+    $run $rm "$libobj" "${libobj}T"
+
+    # Create a libtool object file (analogous to a ".la" file),
+    # but don't create it if we're doing a dry run.
+    test -z "$run" && cat > ${libobj}T <<EOF
+# $libobj - a libtool object file
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# Name of the PIC object.
+EOF
+
+    # Only build a PIC object if we are building libtool libraries.
+    if test "$build_libtool_libs" = yes; then
+      # Without this assignment, base_compile gets emptied.
+      fbsd_hideous_sh_bug=$base_compile
+
+      if test "$pic_mode" != no; then
+	command="$base_compile $srcfile $pic_flag"
+      else
+	# Don't build PIC code
+	command="$base_compile $srcfile"
+      fi
+
+      if test ! -d "${xdir}$objdir"; then
+	$show "$mkdir ${xdir}$objdir"
+	$run $mkdir ${xdir}$objdir
+	status=$?
+	if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
+	  exit $status
+	fi
+      fi
+
+      if test -z "$output_obj"; then
+	# Place PIC objects in $objdir
+	command="$command -o $lobj"
+      fi
+
+      $run $rm "$lobj" "$output_obj"
+
+      $show "$command"
+      if $run eval "$command"; then :
+      else
+	test -n "$output_obj" && $run $rm $removelist
+	exit 1
+      fi
+
+      if test "$need_locks" = warn &&
+	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
+	$echo "\
+*** ERROR, $lockfile contains:
+`cat $lockfile 2>/dev/null`
+
+but it should contain:
+$srcfile
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together.  If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+	$run $rm $removelist
+	exit 1
+      fi
+
+      # Just move the object if needed, then go on to compile the next one
+      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
+	$show "$mv $output_obj $lobj"
+	if $run $mv $output_obj $lobj; then :
+	else
+	  error=$?
+	  $run $rm $removelist
+	  exit $error
+	fi
+      fi
+
+      # Append the name of the PIC object to the libtool object file.
+      test -z "$run" && cat >> ${libobj}T <<EOF
+pic_object='$objdir/$objname'
+
+EOF
+
+      # Allow error messages only from the first compilation.
+      suppress_output=' >/dev/null 2>&1'
+    else
+      # No PIC object so indicate it doesn't exist in the libtool
+      # object file.
+      test -z "$run" && cat >> ${libobj}T <<EOF
+pic_object=none
+
+EOF
+    fi
+
+    # Only build a position-dependent object if we build old libraries.
+    if test "$build_old_libs" = yes; then
+      if test "$pic_mode" != yes; then
+	# Don't build PIC code
+	command="$base_compile $srcfile"
+      else
+	command="$base_compile $srcfile $pic_flag"
+      fi
+      if test "$compiler_c_o" = yes; then
+	command="$command -o $obj"
+      fi
+
+      # Suppress compiler output if we already did a PIC compilation.
+      command="$command$suppress_output"
+      $run $rm "$obj" "$output_obj"
+      $show "$command"
+      if $run eval "$command"; then :
+      else
+	$run $rm $removelist
+	exit 1
+      fi
+
+      if test "$need_locks" = warn &&
+	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
+	$echo "\
+*** ERROR, $lockfile contains:
+`cat $lockfile 2>/dev/null`
+
+but it should contain:
+$srcfile
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together.  If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+	$run $rm $removelist
+	exit 1
+      fi
+
+      # Just move the object if needed
+      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
+	$show "$mv $output_obj $obj"
+	if $run $mv $output_obj $obj; then :
+	else
+	  error=$?
+	  $run $rm $removelist
+	  exit $error
+	fi
+      fi
+
+      # Append the name of the non-PIC object the libtool object file.
+      # Only append if the libtool object file exists.
+      test -z "$run" && cat >> ${libobj}T <<EOF
+# Name of the non-PIC object.
+non_pic_object='$objname'
+
+EOF
+    else
+      # Append the name of the non-PIC object the libtool object file.
+      # Only append if the libtool object file exists.
+      test -z "$run" && cat >> ${libobj}T <<EOF
+# Name of the non-PIC object.
+non_pic_object=none
+
+EOF
+    fi
+
+    $run $mv "${libobj}T" "${libobj}"
+
+    # Unlock the critical section if it was locked
+    if test "$need_locks" != no; then
+      $run $rm "$lockfile"
+    fi
+
+    exit 0
+    ;;
+
+  # libtool link mode
+  link | relink)
+    modename="$modename: link"
+    case $host in
+    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+      # It is impossible to link a dll without this setting, and
+      # we shouldn't force the makefile maintainer to figure out
+      # which system we are compiling for in order to pass an extra
+      # flag for every libtool invocation.
+      # allow_undefined=no
+
+      # FIXME: Unfortunately, there are problems with the above when trying
+      # to make a dll which has undefined symbols, in which case not
+      # even a static library is built.  For now, we need to specify
+      # -no-undefined on the libtool link line when we can be certain
+      # that all symbols are satisfied, otherwise we get a static library.
+      allow_undefined=yes
+      ;;
+    *)
+      allow_undefined=yes
+      ;;
+    esac
+    libtool_args="$nonopt"
+    base_compile="$nonopt"
+    compile_command="$nonopt"
+    finalize_command="$nonopt"
+
+    compile_rpath=
+    finalize_rpath=
+    compile_shlibpath=
+    finalize_shlibpath=
+    convenience=
+    old_convenience=
+    deplibs=
+    old_deplibs=
+    compiler_flags=
+    linker_flags=
+    dllsearchpath=
+    lib_search_path=`pwd`
+    inst_prefix_dir=
+
+    avoid_version=no
+    dlfiles=
+    dlprefiles=
+    dlself=no
+    export_dynamic=no
+    export_symbols=
+    export_symbols_regex=
+    generated=
+    libobjs=
+    ltlibs=
+    module=no
+    no_install=no
+    objs=
+    non_pic_objects=
+    prefer_static_libs=no
+    preload=no
+    prev=
+    prevarg=
+    release=
+    rpath=
+    xrpath=
+    perm_rpath=
+    temp_rpath=
+    thread_safe=no
+    vinfo=
+    vinfo_number=no
+
+    # We need to know -static, to get the right output filenames.
+    for arg
+    do
+      case $arg in
+      -all-static | -static)
+	if test "X$arg" = "X-all-static"; then
+	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
+	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
+	  fi
+	  if test -n "$link_static_flag"; then
+	    dlopen_self=$dlopen_self_static
+	  fi
+	else
+	  if test -z "$pic_flag" && test -n "$link_static_flag"; then
+	    dlopen_self=$dlopen_self_static
+	  fi
+	fi
+	build_libtool_libs=no
+	build_old_libs=yes
+	prefer_static_libs=yes
+	break
+	;;
+      esac
+    done
+
+    # See if our shared archives depend on static archives.
+    test -n "$old_archive_from_new_cmds" && build_old_libs=yes
+
+    # Go through the arguments, transforming them on the way.
+    while test "$#" -gt 0; do
+      arg="$1"
+      base_compile="$base_compile $arg"
+      shift
+      case $arg in
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
+	;;
+      *) qarg=$arg ;;
+      esac
+      libtool_args="$libtool_args $qarg"
+
+      # If the previous option needs an argument, assign it.
+      if test -n "$prev"; then
+	case $prev in
+	output)
+	  compile_command="$compile_command @OUTPUT@"
+	  finalize_command="$finalize_command @OUTPUT@"
+	  ;;
+	esac
+
+	case $prev in
+	dlfiles|dlprefiles)
+	  if test "$preload" = no; then
+	    # Add the symbol object into the linking commands.
+	    compile_command="$compile_command @SYMFILE@"
+	    finalize_command="$finalize_command @SYMFILE@"
+	    preload=yes
+	  fi
+	  case $arg in
+	  *.la | *.lo) ;;  # We handle these cases below.
+	  force)
+	    if test "$dlself" = no; then
+	      dlself=needless
+	      export_dynamic=yes
+	    fi
+	    prev=
+	    continue
+	    ;;
+	  self)
+	    if test "$prev" = dlprefiles; then
+	      dlself=yes
+	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
+	      dlself=yes
+	    else
+	      dlself=needless
+	      export_dynamic=yes
+	    fi
+	    prev=
+	    continue
+	    ;;
+	  *)
+	    if test "$prev" = dlfiles; then
+	      dlfiles="$dlfiles $arg"
+	    else
+	      dlprefiles="$dlprefiles $arg"
+	    fi
+	    prev=
+	    continue
+	    ;;
+	  esac
+	  ;;
+	expsyms)
+	  export_symbols="$arg"
+	  if test ! -f "$arg"; then
+	    $echo "$modename: symbol file \`$arg' does not exist"
+	    exit 1
+	  fi
+	  prev=
+	  continue
+	  ;;
+	expsyms_regex)
+	  export_symbols_regex="$arg"
+	  prev=
+	  continue
+	  ;;
+	inst_prefix)
+	  inst_prefix_dir="$arg"
+	  prev=
+	  continue
+	  ;;
+	release)
+	  release="-$arg"
+	  prev=
+	  continue
+	  ;;
+	objectlist)
+	  if test -f "$arg"; then
+	    save_arg=$arg
+	    moreargs=
+	    for fil in `cat $save_arg`
+	    do
+#	      moreargs="$moreargs $fil"
+	      arg=$fil
+	      # A libtool-controlled object.
+
+	      # Check to see that this really is a libtool object.
+	      if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+		pic_object=
+		non_pic_object=
+
+		# Read the .lo file
+		# If there is no directory component, then add one.
+		case $arg in
+		*/* | *\\*) . $arg ;;
+		*) . ./$arg ;;
+		esac
+
+		if test -z "$pic_object" || \
+		   test -z "$non_pic_object" ||
+		   test "$pic_object" = none && \
+		   test "$non_pic_object" = none; then
+		  $echo "$modename: cannot find name of object for \`$arg'" 1>&2
+		  exit 1
+		fi
+
+		# Extract subdirectory from the argument.
+		xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
+		if test "X$xdir" = "X$arg"; then
+		  xdir=
+		else
+		  xdir="$xdir/"
+		fi
+
+		if test "$pic_object" != none; then
+		  # Prepend the subdirectory the object is found in.
+		  pic_object="$xdir$pic_object"
+
+		  if test "$prev" = dlfiles; then
+		    if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
+		      dlfiles="$dlfiles $pic_object"
+		      prev=
+		      continue
+		    else
+		      # If libtool objects are unsupported, then we need to preload.
+		      prev=dlprefiles
+		    fi
+		  fi
+
+		  # CHECK ME:  I think I busted this.  -Ossama
+		  if test "$prev" = dlprefiles; then
+		    # Preload the old-style object.
+		    dlprefiles="$dlprefiles $pic_object"
+		    prev=
+		  fi
+
+		  # A PIC object.
+		  libobjs="$libobjs $pic_object"
+		  arg="$pic_object"
+		fi
+
+		# Non-PIC object.
+		if test "$non_pic_object" != none; then
+		  # Prepend the subdirectory the object is found in.
+		  non_pic_object="$xdir$non_pic_object"
+
+		  # A standard non-PIC object
+		  non_pic_objects="$non_pic_objects $non_pic_object"
+		  if test -z "$pic_object" || test "$pic_object" = none ; then
+		    arg="$non_pic_object"
+		  fi
+		fi
+	      else
+		# Only an error if not doing a dry-run.
+		if test -z "$run"; then
+		  $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
+		  exit 1
+		else
+		  # Dry-run case.
+
+		  # Extract subdirectory from the argument.
+		  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
+		  if test "X$xdir" = "X$arg"; then
+		    xdir=
+		  else
+		    xdir="$xdir/"
+		  fi
+
+		  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
+		  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
+		  libobjs="$libobjs $pic_object"
+		  non_pic_objects="$non_pic_objects $non_pic_object"
+		fi
+	      fi
+	    done
+	  else
+	    $echo "$modename: link input file \`$save_arg' does not exist"
+	    exit 1
+	  fi
+	  arg=$save_arg
+	  prev=
+	  continue
+	  ;;
+	rpath | xrpath)
+	  # We need an absolute path.
+	  case $arg in
+	  [\\/]* | [A-Za-z]:[\\/]*) ;;
+	  *)
+	    $echo "$modename: only absolute run-paths are allowed" 1>&2
+	    exit 1
+	    ;;
+	  esac
+	  if test "$prev" = rpath; then
+	    case "$rpath " in
+	    *" $arg "*) ;;
+	    *) rpath="$rpath $arg" ;;
+	    esac
+	  else
+	    case "$xrpath " in
+	    *" $arg "*) ;;
+	    *) xrpath="$xrpath $arg" ;;
+	    esac
+	  fi
+	  prev=
+	  continue
+	  ;;
+	xcompiler)
+	  compiler_flags="$compiler_flags $qarg"
+	  prev=
+	  compile_command="$compile_command $qarg"
+	  finalize_command="$finalize_command $qarg"
+	  continue
+	  ;;
+	xlinker)
+	  linker_flags="$linker_flags $qarg"
+	  compiler_flags="$compiler_flags $wl$qarg"
+	  prev=
+	  compile_command="$compile_command $wl$qarg"
+	  finalize_command="$finalize_command $wl$qarg"
+	  continue
+	  ;;
+	xcclinker)
+	  linker_flags="$linker_flags $qarg"
+	  compiler_flags="$compiler_flags $qarg"
+	  prev=
+	  compile_command="$compile_command $qarg"
+	  finalize_command="$finalize_command $qarg"
+	  continue
+	  ;;
+	*)
+	  eval "$prev=\"\$arg\""
+	  prev=
+	  continue
+	  ;;
+	esac
+      fi # test -n "$prev"
+
+      prevarg="$arg"
+
+      case $arg in
+      -all-static)
+	if test -n "$link_static_flag"; then
+	  compile_command="$compile_command $link_static_flag"
+	  finalize_command="$finalize_command $link_static_flag"
+	fi
+	continue
+	;;
+
+      -allow-undefined)
+	# FIXME: remove this flag sometime in the future.
+	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
+	continue
+	;;
+
+      -avoid-version)
+	avoid_version=yes
+	continue
+	;;
+
+      -dlopen)
+	prev=dlfiles
+	continue
+	;;
+
+      -dlpreopen)
+	prev=dlprefiles
+	continue
+	;;
+
+      -export-dynamic)
+	export_dynamic=yes
+	continue
+	;;
+
+      -export-symbols | -export-symbols-regex)
+	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
+	  $echo "$modename: more than one -exported-symbols argument is not allowed"
+	  exit 1
+	fi
+	if test "X$arg" = "X-export-symbols"; then
+	  prev=expsyms
+	else
+	  prev=expsyms_regex
+	fi
+	continue
+	;;
+
+      -inst-prefix-dir)
+	prev=inst_prefix
+	continue
+	;;
+
+      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
+      # so, if we see these flags be careful not to treat them like -L
+      -L[A-Z][A-Z]*:*)
+	case $with_gcc/$host in
+	no/*-*-irix* | /*-*-irix*)
+	  compile_command="$compile_command $arg"
+	  finalize_command="$finalize_command $arg"
+	  ;;
+	esac
+	continue
+	;;
+
+      -L*)
+	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
+	# We need an absolute path.
+	case $dir in
+	[\\/]* | [A-Za-z]:[\\/]*) ;;
+	*)
+	  absdir=`cd "$dir" && pwd`
+	  if test -z "$absdir"; then
+	    $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
+	    exit 1
+	  fi
+	  dir="$absdir"
+	  ;;
+	esac
+	case "$deplibs " in
+	*" -L$dir "*) ;;
+	*)
+	  deplibs="$deplibs -L$dir"
+	  lib_search_path="$lib_search_path $dir"
+	  ;;
+	esac
+	case $host in
+	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+	  case :$dllsearchpath: in
+	  *":$dir:"*) ;;
+	  *) dllsearchpath="$dllsearchpath:$dir";;
+	  esac
+	  ;;
+	esac
+	continue
+	;;
+
+      -l*)
+	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
+	  case $host in
+	  *-*-cygwin* | *-*-pw32* | *-*-beos*)
+	    # These systems don't actually have a C or math library (as such)
+	    continue
+	    ;;
+	  *-*-mingw* | *-*-os2*)
+	    # These systems don't actually have a C library (as such)
+	    test "X$arg" = "X-lc" && continue
+	    ;;
+	  *-*-openbsd* | *-*-freebsd*)
+	    # Do not include libc due to us having libc/libc_r.
+	    test "X$arg" = "X-lc" && continue
+	    ;;
+	  *-*-rhapsody* | *-*-darwin1.[012])
+	    # Rhapsody C and math libraries are in the System framework
+	    deplibs="$deplibs -framework System"
+	    continue
+	  esac
+	elif test "X$arg" = "X-lc_r"; then
+	 case $host in
+	 *-*-openbsd* | *-*-freebsd*)
+	   # Do not include libc_r directly, use -pthread flag.
+	   continue
+	   ;;
+	 esac
+	fi
+	deplibs="$deplibs $arg"
+	continue
+	;;
+
+      -module)
+	module=yes
+	continue
+	;;
+
+      # gcc -m* arguments should be passed to the linker via $compiler_flags
+      # in order to pass architecture information to the linker
+      # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo
+      # but this is not reliable with gcc because gcc may use -mfoo to
+      # select a different linker, different libraries, etc, while
+      # -Wl,-mfoo simply passes -mfoo to the linker.
+      -m*)
+	# Unknown arguments in both finalize_command and compile_command need
+	# to be aesthetically quoted because they are evaled later.
+	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+	case $arg in
+	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	  arg="\"$arg\""
+	  ;;
+	esac
+        compile_command="$compile_command $arg"
+        finalize_command="$finalize_command $arg"
+        if test "$with_gcc" = "yes" ; then
+          compiler_flags="$compiler_flags $arg"
+        fi
+        continue
+        ;;
+
+      -shrext)
+	prev=shrext
+	continue
+	;;
+
+      -no-fast-install)
+	fast_install=no
+	continue
+	;;
+
+      -no-install)
+	case $host in
+	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+	  # The PATH hackery in wrapper scripts is required on Windows
+	  # in order for the loader to find any dlls it needs.
+	  $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
+	  $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
+	  fast_install=no
+	  ;;
+	*) no_install=yes ;;
+	esac
+	continue
+	;;
+
+      -no-undefined)
+	allow_undefined=no
+	continue
+	;;
+
+      -objectlist)
+	prev=objectlist
+	continue
+	;;
+
+      -o) prev=output ;;
+
+      -release)
+	prev=release
+	continue
+	;;
+
+      -rpath)
+	prev=rpath
+	continue
+	;;
+
+      -R)
+	prev=xrpath
+	continue
+	;;
+
+      -R*)
+	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
+	# We need an absolute path.
+	case $dir in
+	[\\/]* | [A-Za-z]:[\\/]*) ;;
+	*)
+	  $echo "$modename: only absolute run-paths are allowed" 1>&2
+	  exit 1
+	  ;;
+	esac
+	case "$xrpath " in
+	*" $dir "*) ;;
+	*) xrpath="$xrpath $dir" ;;
+	esac
+	continue
+	;;
+
+      -static)
+	# The effects of -static are defined in a previous loop.
+	# We used to do the same as -all-static on platforms that
+	# didn't have a PIC flag, but the assumption that the effects
+	# would be equivalent was wrong.  It would break on at least
+	# Digital Unix and AIX.
+	continue
+	;;
+
+      -thread-safe)
+	thread_safe=yes
+	continue
+	;;
+
+      -version-info)
+	prev=vinfo
+	continue
+	;;
+      -version-number)
+	prev=vinfo
+	vinfo_number=yes
+	continue
+	;;
+
+      -Wc,*)
+	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
+	arg=
+	save_ifs="$IFS"; IFS=','
+	for flag in $args; do
+	  IFS="$save_ifs"
+	  case $flag in
+	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	    flag="\"$flag\""
+	    ;;
+	  esac
+	  arg="$arg $wl$flag"
+	  compiler_flags="$compiler_flags $flag"
+	done
+	IFS="$save_ifs"
+	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
+	;;
+
+      -Wl,*)
+	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
+	arg=
+	save_ifs="$IFS"; IFS=','
+	for flag in $args; do
+	  IFS="$save_ifs"
+	  case $flag in
+	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	    flag="\"$flag\""
+	    ;;
+	  esac
+	  arg="$arg $wl$flag"
+	  compiler_flags="$compiler_flags $wl$flag"
+	  linker_flags="$linker_flags $flag"
+	done
+	IFS="$save_ifs"
+	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
+	;;
+
+      -Xcompiler)
+	prev=xcompiler
+	continue
+	;;
+
+      -Xlinker)
+	prev=xlinker
+	continue
+	;;
+
+      -XCClinker)
+	prev=xcclinker
+	continue
+	;;
+
+      # Some other compiler flag.
+      -* | +*)
+	# Unknown arguments in both finalize_command and compile_command need
+	# to be aesthetically quoted because they are evaled later.
+	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+	case $arg in
+	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	  arg="\"$arg\""
+	  ;;
+	esac
+	;;
+
+      *.$objext)
+	# A standard object.
+	objs="$objs $arg"
+	;;
+
+      *.lo)
+	# A libtool-controlled object.
+
+	# Check to see that this really is a libtool object.
+	if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+	  pic_object=
+	  non_pic_object=
+
+	  # Read the .lo file
+	  # If there is no directory component, then add one.
+	  case $arg in
+	  */* | *\\*) . $arg ;;
+	  *) . ./$arg ;;
+	  esac
+
+	  if test -z "$pic_object" || \
+	     test -z "$non_pic_object" ||
+	     test "$pic_object" = none && \
+	     test "$non_pic_object" = none; then
+	    $echo "$modename: cannot find name of object for \`$arg'" 1>&2
+	    exit 1
+	  fi
+
+	  # Extract subdirectory from the argument.
+	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
+	  if test "X$xdir" = "X$arg"; then
+	    xdir=
+ 	  else
+	    xdir="$xdir/"
+	  fi
+
+	  if test "$pic_object" != none; then
+	    # Prepend the subdirectory the object is found in.
+	    pic_object="$xdir$pic_object"
+
+	    if test "$prev" = dlfiles; then
+	      if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
+		dlfiles="$dlfiles $pic_object"
+		prev=
+		continue
+	      else
+		# If libtool objects are unsupported, then we need to preload.
+		prev=dlprefiles
+	      fi
+	    fi
+
+	    # CHECK ME:  I think I busted this.  -Ossama
+	    if test "$prev" = dlprefiles; then
+	      # Preload the old-style object.
+	      dlprefiles="$dlprefiles $pic_object"
+	      prev=
+	    fi
+
+	    # A PIC object.
+	    libobjs="$libobjs $pic_object"
+	    arg="$pic_object"
+	  fi
+
+	  # Non-PIC object.
+	  if test "$non_pic_object" != none; then
+	    # Prepend the subdirectory the object is found in.
+	    non_pic_object="$xdir$non_pic_object"
+
+	    # A standard non-PIC object
+	    non_pic_objects="$non_pic_objects $non_pic_object"
+	    if test -z "$pic_object" || test "$pic_object" = none ; then
+	      arg="$non_pic_object"
+	    fi
+	  fi
+	else
+	  # Only an error if not doing a dry-run.
+	  if test -z "$run"; then
+	    $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
+	    exit 1
+	  else
+	    # Dry-run case.
+
+	    # Extract subdirectory from the argument.
+	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
+	    if test "X$xdir" = "X$arg"; then
+	      xdir=
+	    else
+	      xdir="$xdir/"
+	    fi
+
+	    pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
+	    non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
+	    libobjs="$libobjs $pic_object"
+	    non_pic_objects="$non_pic_objects $non_pic_object"
+	  fi
+	fi
+	;;
+
+      *.$libext)
+	# An archive.
+	deplibs="$deplibs $arg"
+	old_deplibs="$old_deplibs $arg"
+	continue
+	;;
+
+      *.la)
+	# A libtool-controlled library.
+
+	if test "$prev" = dlfiles; then
+	  # This library was specified with -dlopen.
+	  dlfiles="$dlfiles $arg"
+	  prev=
+	elif test "$prev" = dlprefiles; then
+	  # The library was specified with -dlpreopen.
+	  dlprefiles="$dlprefiles $arg"
+	  prev=
+	else
+	  deplibs="$deplibs $arg"
+	fi
+	continue
+	;;
+
+      # Some other compiler argument.
+      *)
+	# Unknown arguments in both finalize_command and compile_command need
+	# to be aesthetically quoted because they are evaled later.
+	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+	case $arg in
+	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
+	  arg="\"$arg\""
+	  ;;
+	esac
+	;;
+      esac # arg
+
+      # Now actually substitute the argument into the commands.
+      if test -n "$arg"; then
+	compile_command="$compile_command $arg"
+	finalize_command="$finalize_command $arg"
+      fi
+    done # argument parsing loop
+
+    if test -n "$prev"; then
+      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
+      $echo "$help" 1>&2
+      exit 1
+    fi
+
+    # Infer tagged configuration to use if any are available and
+    # if one wasn't chosen via the "--tag" command line option.
+    # Only attempt this if the compiler in the base link
+    # command doesn't match the default compiler.
+    if test -n "$available_tags" && test -z "$tagname"; then
+      case $base_compile in
+      # Blanks in the command may have been stripped by the calling shell,
+      # but not from the CC environment variable when configure was run.
+      "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*) ;;
+      # Blanks at the start of $base_compile will cause this to fail
+      # if we don't check for them as well.
+      *)
+	for z in $available_tags; do
+	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
+	    # Evaluate the configuration.
+	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
+	    case $base_compile in
+	    "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*)
+	      # The compiler in $compile_command matches
+	      # the one in the tagged configuration.
+	      # Assume this is the tagged configuration we want.
+	      tagname=$z
+	      break
+	      ;;
+	    esac
+	  fi
+	done
+	# If $tagname still isn't set, then no tagged configuration
+	# was found and let the user know that the "--tag" command
+	# line option must be used.
+	if test -z "$tagname"; then
+	  $echo "$modename: unable to infer tagged configuration"
+	  $echo "$modename: specify a tag with \`--tag'" 1>&2
+	  exit 1
+#       else
+#         $echo "$modename: using $tagname tagged configuration"
+	fi
+	;;
+      esac
+    fi
+
+    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
+      eval arg=\"$export_dynamic_flag_spec\"
+      compile_command="$compile_command $arg"
+      finalize_command="$finalize_command $arg"
+    fi
+
+    oldlibs=
+    # calculate the name of the file, without its directory
+    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
+    libobjs_save="$libobjs"
+
+    if test -n "$shlibpath_var"; then
+      # get the directories listed in $shlibpath_var
+      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
+    else
+      shlib_search_path=
+    fi
+    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
+    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
+
+    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
+    if test "X$output_objdir" = "X$output"; then
+      output_objdir="$objdir"
+    else
+      output_objdir="$output_objdir/$objdir"
+    fi
+    # Create the object directory.
+    if test ! -d "$output_objdir"; then
+      $show "$mkdir $output_objdir"
+      $run $mkdir $output_objdir
+      status=$?
+      if test "$status" -ne 0 && test ! -d "$output_objdir"; then
+	exit $status
+      fi
+    fi
+
+    # Determine the type of output
+    case $output in
+    "")
+      $echo "$modename: you must specify an output file" 1>&2
+      $echo "$help" 1>&2
+      exit 1
+      ;;
+    *.$libext) linkmode=oldlib ;;
+    *.lo | *.$objext) linkmode=obj ;;
+    *.la) linkmode=lib ;;
+    *) linkmode=prog ;; # Anything else should be a program.
+    esac
+
+    case $host in
+    *cygwin* | *mingw* | *pw32*)
+      # don't eliminate duplcations in $postdeps and $predeps
+      duplicate_compiler_generated_deps=yes
+      ;;
+    *)
+      duplicate_compiler_generated_deps=$duplicate_deps
+      ;;
+    esac
+    specialdeplibs=
+
+    libs=
+    # Find all interdependent deplibs by searching for libraries
+    # that are linked more than once (e.g. -la -lb -la)
+    for deplib in $deplibs; do
+      if test "X$duplicate_deps" = "Xyes" ; then
+	case "$libs " in
+	*" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+	esac
+      fi
+      libs="$libs $deplib"
+    done
+
+    if test "$linkmode" = lib; then
+      libs="$predeps $libs $compiler_lib_search_path $postdeps"
+
+      # Compute libraries that are listed more than once in $predeps
+      # $postdeps and mark them as special (i.e., whose duplicates are
+      # not to be eliminated).
+      pre_post_deps=
+      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
+	for pre_post_dep in $predeps $postdeps; do
+	  case "$pre_post_deps " in
+	  *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
+	  esac
+	  pre_post_deps="$pre_post_deps $pre_post_dep"
+	done
+      fi
+      pre_post_deps=
+    fi
+
+    deplibs=
+    newdependency_libs=
+    newlib_search_path=
+    need_relink=no # whether we're linking any uninstalled libtool libraries
+    notinst_deplibs= # not-installed libtool libraries
+    notinst_path= # paths that contain not-installed libtool libraries
+    case $linkmode in
+    lib)
+	passes="conv link"
+	for file in $dlfiles $dlprefiles; do
+	  case $file in
+	  *.la) ;;
+	  *)
+	    $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
+	    exit 1
+	    ;;
+	  esac
+	done
+	;;
+    prog)
+	compile_deplibs=
+	finalize_deplibs=
+	alldeplibs=no
+	newdlfiles=
+	newdlprefiles=
+	passes="conv scan dlopen dlpreopen link"
+	;;
+    *)  passes="conv"
+	;;
+    esac
+    for pass in $passes; do
+      if test "$linkmode,$pass" = "lib,link" ||
+	 test "$linkmode,$pass" = "prog,scan"; then
+	libs="$deplibs"
+	deplibs=
+      fi
+      if test "$linkmode" = prog; then
+	case $pass in
+	dlopen) libs="$dlfiles" ;;
+	dlpreopen) libs="$dlprefiles" ;;
+	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
+	esac
+      fi
+      if test "$pass" = dlopen; then
+	# Collect dlpreopened libraries
+	save_deplibs="$deplibs"
+	deplibs=
+      fi
+      for deplib in $libs; do
+	lib=
+	found=no
+	case $deplib in
+	-l*)
+	  if test "$linkmode" != lib && test "$linkmode" != prog; then
+	    $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2
+	    continue
+	  fi
+	  if test "$pass" = conv; then
+	    deplibs="$deplib $deplibs"
+	    continue
+	  fi
+	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
+	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
+	    # Search the libtool library
+	    lib="$searchdir/lib${name}.la"
+	    if test -f "$lib"; then
+	      found=yes
+	      break
+	    fi
+	  done
+	  if test "$found" != yes; then
+	    # deplib doesn't seem to be a libtool library
+	    if test "$linkmode,$pass" = "prog,link"; then
+	      compile_deplibs="$deplib $compile_deplibs"
+	      finalize_deplibs="$deplib $finalize_deplibs"
+	    else
+	      deplibs="$deplib $deplibs"
+	      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
+	    fi
+	    continue
+	  else # deplib is a libtool library
+	    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
+	    # We need to do some special things here, and not later.
+	    if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+	      case " $predeps $postdeps " in
+	      *" $deplib "*)
+		if (${SED} -e '2q' $lib |
+                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+		  library_names=
+		  old_library=
+		  case $lib in
+		  */* | *\\*) . $lib ;;
+		  *) . ./$lib ;;
+		  esac
+		  for l in $old_library $library_names; do
+		    ll="$l"
+		  done
+		  if test "X$ll" = "X$old_library" ; then # only static version available
+		    found=no
+		    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
+		    test "X$ladir" = "X$lib" && ladir="."
+		    lib=$ladir/$old_library
+		    if test "$linkmode,$pass" = "prog,link"; then
+		      compile_deplibs="$deplib $compile_deplibs"
+		      finalize_deplibs="$deplib $finalize_deplibs"
+		    else
+		      deplibs="$deplib $deplibs"
+		      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
+		    fi
+		    continue
+		  fi
+		fi
+	        ;;
+	      *) ;;
+	      esac
+	    fi
+	  fi
+	  ;; # -l
+	-L*)
+	  case $linkmode in
+	  lib)
+	    deplibs="$deplib $deplibs"
+	    test "$pass" = conv && continue
+	    newdependency_libs="$deplib $newdependency_libs"
+	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
+	    ;;
+	  prog)
+	    if test "$pass" = conv; then
+	      deplibs="$deplib $deplibs"
+	      continue
+	    fi
+	    if test "$pass" = scan; then
+	      deplibs="$deplib $deplibs"
+	      newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
+	    else
+	      compile_deplibs="$deplib $compile_deplibs"
+	      finalize_deplibs="$deplib $finalize_deplibs"
+	    fi
+	    ;;
+	  *)
+	    $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
+	    ;;
+	  esac # linkmode
+	  continue
+	  ;; # -L
+	-R*)
+	  if test "$pass" = link; then
+	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
+	    # Make sure the xrpath contains only unique directories.
+	    case "$xrpath " in
+	    *" $dir "*) ;;
+	    *) xrpath="$xrpath $dir" ;;
+	    esac
+	  fi
+	  deplibs="$deplib $deplibs"
+	  continue
+	  ;;
+	*.la) lib="$deplib" ;;
+	*.$libext)
+	  if test "$pass" = conv; then
+	    deplibs="$deplib $deplibs"
+	    continue
+	  fi
+	  case $linkmode in
+	  lib)
+	    if test "$deplibs_check_method" != pass_all; then
+	      $echo
+	      $echo "*** Warning: Trying to link with static lib archive $deplib."
+	      $echo "*** I have the capability to make that library automatically link in when"
+	      $echo "*** you link to this library.  But I can only do this if you have a"
+	      $echo "*** shared version of the library, which you do not appear to have"
+	      $echo "*** because the file extensions .$libext of this argument makes me believe"
+	      $echo "*** that it is just a static archive that I should not used here."
+	    else
+	      $echo
+	      $echo "*** Warning: Linking the shared library $output against the"
+	      $echo "*** static library $deplib is not portable!"
+	      deplibs="$deplib $deplibs"
+	    fi
+	    continue
+	    ;;
+	  prog)
+	    if test "$pass" != link; then
+	      deplibs="$deplib $deplibs"
+	    else
+	      compile_deplibs="$deplib $compile_deplibs"
+	      finalize_deplibs="$deplib $finalize_deplibs"
+	    fi
+	    continue
+	    ;;
+	  esac # linkmode
+	  ;; # *.$libext
+	*.lo | *.$objext)
+	  if test "$pass" = conv; then
+	    deplibs="$deplib $deplibs"
+	  elif test "$linkmode" = prog; then
+	    if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+	      # If there is no dlopen support or we're linking statically,
+	      # we need to preload.
+	      newdlprefiles="$newdlprefiles $deplib"
+	      compile_deplibs="$deplib $compile_deplibs"
+	      finalize_deplibs="$deplib $finalize_deplibs"
+	    else
+	      newdlfiles="$newdlfiles $deplib"
+	    fi
+	  fi
+	  continue
+	  ;;
+	%DEPLIBS%)
+	  alldeplibs=yes
+	  continue
+	  ;;
+	esac # case $deplib
+	if test "$found" = yes || test -f "$lib"; then :
+	else
+	  $echo "$modename: cannot find the library \`$lib'" 1>&2
+	  exit 1
+	fi
+
+	# Check to see that this really is a libtool archive.
+	if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+	else
+	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+	  exit 1
+	fi
+
+	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
+	test "X$ladir" = "X$lib" && ladir="."
+
+	dlname=
+	dlopen=
+	dlpreopen=
+	libdir=
+	library_names=
+	old_library=
+	# If the library was installed with an old release of libtool,
+	# it will not redefine variables installed, or shouldnotlink
+	installed=yes
+	shouldnotlink=no
+
+	# Read the .la file
+	case $lib in
+	*/* | *\\*) . $lib ;;
+	*) . ./$lib ;;
+	esac
+
+	if test "$linkmode,$pass" = "lib,link" ||
+	   test "$linkmode,$pass" = "prog,scan" ||
+	   { test "$linkmode" != prog && test "$linkmode" != lib; }; then
+	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
+	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
+	fi
+
+	if test "$pass" = conv; then
+	  # Only check for convenience libraries
+	  deplibs="$lib $deplibs"
+	  if test -z "$libdir"; then
+	    if test -z "$old_library"; then
+	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
+	      exit 1
+	    fi
+	    # It is a libtool convenience library, so add in its objects.
+	    convenience="$convenience $ladir/$objdir/$old_library"
+	    old_convenience="$old_convenience $ladir/$objdir/$old_library"
+	    tmp_libs=
+	    for deplib in $dependency_libs; do
+	      deplibs="$deplib $deplibs"
+              if test "X$duplicate_deps" = "Xyes" ; then
+	        case "$tmp_libs " in
+	        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+	        esac
+              fi
+	      tmp_libs="$tmp_libs $deplib"
+	    done
+	  elif test "$linkmode" != prog && test "$linkmode" != lib; then
+	    $echo "$modename: \`$lib' is not a convenience library" 1>&2
+	    exit 1
+	  fi
+	  continue
+	fi # $pass = conv
+
+    
+	# Get the name of the library we link against.
+	linklib=
+	for l in $old_library $library_names; do
+	  linklib="$l"
+	done
+	if test -z "$linklib"; then
+	  $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
+	  exit 1
+	fi
+
+	# This library was specified with -dlopen.
+	if test "$pass" = dlopen; then
+	  if test -z "$libdir"; then
+	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
+	    exit 1
+	  fi
+	  if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+	    # If there is no dlname, no dlopen support or we're linking
+	    # statically, we need to preload.  We also need to preload any
+	    # dependent libraries so libltdl's deplib preloader doesn't
+	    # bomb out in the load deplibs phase.
+	    dlprefiles="$dlprefiles $lib $dependency_libs"
+	  else
+	    newdlfiles="$newdlfiles $lib"
+	  fi
+	  continue
+	fi # $pass = dlopen
+
+	# We need an absolute path.
+	case $ladir in
+	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
+	*)
+	  abs_ladir=`cd "$ladir" && pwd`
+	  if test -z "$abs_ladir"; then
+	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
+	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
+	    abs_ladir="$ladir"
+	  fi
+	  ;;
+	esac
+	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+
+	# Find the relevant object directory and library name.
+	if test "X$installed" = Xyes; then
+	  if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
+	    $echo "$modename: warning: library \`$lib' was moved." 1>&2
+	    dir="$ladir"
+	    absdir="$abs_ladir"
+	    libdir="$abs_ladir"
+	  else
+	    dir="$libdir"
+	    absdir="$libdir"
+	  fi
+	else
+	  dir="$ladir/$objdir"
+	  absdir="$abs_ladir/$objdir"
+	  # Remove this search path later
+	  notinst_path="$notinst_path $abs_ladir"
+	fi # $installed = yes
+	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
+
+	# This library was specified with -dlpreopen.
+	if test "$pass" = dlpreopen; then
+	  if test -z "$libdir"; then
+	    $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
+	    exit 1
+	  fi
+	  # Prefer using a static library (so that no silly _DYNAMIC symbols
+	  # are required to link).
+	  if test -n "$old_library"; then
+	    newdlprefiles="$newdlprefiles $dir/$old_library"
+	  # Otherwise, use the dlname, so that lt_dlopen finds it.
+	  elif test -n "$dlname"; then
+	    newdlprefiles="$newdlprefiles $dir/$dlname"
+	  else
+	    newdlprefiles="$newdlprefiles $dir/$linklib"
+	  fi
+	fi # $pass = dlpreopen
+
+	if test -z "$libdir"; then
+	  # Link the convenience library
+	  if test "$linkmode" = lib; then
+	    deplibs="$dir/$old_library $deplibs"
+	  elif test "$linkmode,$pass" = "prog,link"; then
+	    compile_deplibs="$dir/$old_library $compile_deplibs"
+	    finalize_deplibs="$dir/$old_library $finalize_deplibs"
+	  else
+	    deplibs="$lib $deplibs" # used for prog,scan pass
+	  fi
+	  continue
+	fi
+
+    
+	if test "$linkmode" = prog && test "$pass" != link; then
+	  newlib_search_path="$newlib_search_path $ladir"
+	  deplibs="$lib $deplibs"
+
+	  linkalldeplibs=no
+	  if test "$link_all_deplibs" != no || test -z "$library_names" ||
+	     test "$build_libtool_libs" = no; then
+	    linkalldeplibs=yes
+	  fi
+
+	  tmp_libs=
+	  for deplib in $dependency_libs; do
+	    case $deplib in
+	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
+	    esac
+	    # Need to link against all dependency_libs?
+	    if test "$linkalldeplibs" = yes; then
+	      deplibs="$deplib $deplibs"
+	    else
+	      # Need to hardcode shared library paths
+	      # or/and link against static libraries
+	      newdependency_libs="$deplib $newdependency_libs"
+	    fi
+	    if test "X$duplicate_deps" = "Xyes" ; then
+	      case "$tmp_libs " in
+	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+	      esac
+	    fi
+	    tmp_libs="$tmp_libs $deplib"
+	  done # for deplib
+	  continue
+	fi # $linkmode = prog...
+
+	if test "$linkmode,$pass" = "prog,link"; then
+	  if test -n "$library_names" &&
+	     { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
+	    # We need to hardcode the library path
+	    if test -n "$shlibpath_var"; then
+	      # Make sure the rpath contains only unique directories.
+	      case "$temp_rpath " in
+	      *" $dir "*) ;;
+	      *" $absdir "*) ;;
+	      *) temp_rpath="$temp_rpath $dir" ;;
+	      esac
+	    fi
+
+	    # Hardcode the library path.
+	    # Skip directories that are in the system default run-time
+	    # search path.
+	    case " $sys_lib_dlsearch_path " in
+	    *" $absdir "*) ;;
+	    *)
+	      case "$compile_rpath " in
+	      *" $absdir "*) ;;
+	      *) compile_rpath="$compile_rpath $absdir"
+	      esac
+	      ;;
+	    esac
+	    case " $sys_lib_dlsearch_path " in
+	    *" $libdir "*) ;;
+	    *)
+	      case "$finalize_rpath " in
+	      *" $libdir "*) ;;
+	      *) finalize_rpath="$finalize_rpath $libdir"
+	      esac
+	      ;;
+	    esac
+	  fi # $linkmode,$pass = prog,link...
+
+	  if test "$alldeplibs" = yes &&
+	     { test "$deplibs_check_method" = pass_all ||
+	       { test "$build_libtool_libs" = yes &&
+		 test -n "$library_names"; }; }; then
+	    # We only need to search for static libraries
+	    continue
+	  fi
+	fi
+
+	link_static=no # Whether the deplib will be linked statically
+	if test -n "$library_names" &&
+	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
+	  if test "$installed" = no; then
+	    notinst_deplibs="$notinst_deplibs $lib"
+	    need_relink=yes
+	  fi
+	  # This is a shared library
+	
+      # Warn about portability, can't link against -module's on some systems (darwin)
+      if test "$shouldnotlink" = yes && test "$pass" = link ; then
+	    $echo
+	    if test "$linkmode" = prog; then
+	      $echo "*** Warning: Linking the executable $output against the loadable module"
+	    else
+	      $echo "*** Warning: Linking the shared library $output against the loadable module"
+	    fi
+	    $echo "*** $linklib is not portable!"    
+      fi	  
+	  if test "$linkmode" = lib &&
+	     test "$hardcode_into_libs" = yes; then
+	    # Hardcode the library path.
+	    # Skip directories that are in the system default run-time
+	    # search path.
+	    case " $sys_lib_dlsearch_path " in
+	    *" $absdir "*) ;;
+	    *)
+	      case "$compile_rpath " in
+	      *" $absdir "*) ;;
+	      *) compile_rpath="$compile_rpath $absdir"
+	      esac
+	      ;;
+	    esac
+	    case " $sys_lib_dlsearch_path " in
+	    *" $libdir "*) ;;
+	    *)
+	      case "$finalize_rpath " in
+	      *" $libdir "*) ;;
+	      *) finalize_rpath="$finalize_rpath $libdir"
+	      esac
+	      ;;
+	    esac
+	  fi
+
+	  if test -n "$old_archive_from_expsyms_cmds"; then
+	    # figure out the soname
+	    set dummy $library_names
+	    realname="$2"
+	    shift; shift
+	    libname=`eval \\$echo \"$libname_spec\"`
+	    # use dlname if we got it. it's perfectly good, no?
+	    if test -n "$dlname"; then
+	      soname="$dlname"
+	    elif test -n "$soname_spec"; then
+	      # bleh windows
+	      case $host in
+	      *cygwin* | mingw*)
+		major=`expr $current - $age`
+		versuffix="-$major"
+		;;
+	      esac
+	      eval soname=\"$soname_spec\"
+	    else
+	      soname="$realname"
+	    fi
+
+	    # Make a new name for the extract_expsyms_cmds to use
+	    soroot="$soname"
+	    soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
+	    newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
+
+	    # If the library has no export list, then create one now
+	    if test -f "$output_objdir/$soname-def"; then :
+	    else
+	      $show "extracting exported symbol list from \`$soname'"
+	      save_ifs="$IFS"; IFS='~'
+	      eval cmds=\"$extract_expsyms_cmds\"
+	      for cmd in $cmds; do
+		IFS="$save_ifs"
+		$show "$cmd"
+		$run eval "$cmd" || exit $?
+	      done
+	      IFS="$save_ifs"
+	    fi
+
+	    # Create $newlib
+	    if test -f "$output_objdir/$newlib"; then :; else
+	      $show "generating import library for \`$soname'"
+	      save_ifs="$IFS"; IFS='~'
+	      eval cmds=\"$old_archive_from_expsyms_cmds\"
+	      for cmd in $cmds; do
+		IFS="$save_ifs"
+		$show "$cmd"
+		$run eval "$cmd" || exit $?
+	      done
+	      IFS="$save_ifs"
+	    fi
+	    # make sure the library variables are pointing to the new library
+	    dir=$output_objdir
+	    linklib=$newlib
+	  fi # test -n "$old_archive_from_expsyms_cmds"
+
+	  if test "$linkmode" = prog || test "$mode" != relink; then
+	    add_shlibpath=
+	    add_dir=
+	    add=
+	    lib_linked=yes
+	    case $hardcode_action in
+	    immediate | unsupported)
+	      if test "$hardcode_direct" = no; then
+		add="$dir/$linklib"
+		case $host in
+		  *-*-sco3.2v5* ) add_dir="-L$dir" ;;
+		  *-*-darwin* )
+		    # if the lib is a module then we can not link against it, someone
+		    # is ignoring the new warnings I added
+		    if /usr/bin/file -L $add 2> /dev/null | grep "bundle" >/dev/null ; then
+		      $echo "** Warning, lib $linklib is a module, not a shared library"
+		      if test -z "$old_library" ; then
+		        $echo
+		        $echo "** And there doesn't seem to be a static archive available"
+		        $echo "** The link will probably fail, sorry"
+		      else
+		        add="$dir/$old_library"
+		      fi 
+		    fi
+		esac
+	      elif test "$hardcode_minus_L" = no; then
+		case $host in
+		*-*-sunos*) add_shlibpath="$dir" ;;
+		esac
+		add_dir="-L$dir"
+		add="-l$name"
+	      elif test "$hardcode_shlibpath_var" = no; then
+		add_shlibpath="$dir"
+		add="-l$name"
+	      else
+		lib_linked=no
+	      fi
+	      ;;
+	    relink)
+	      if test "$hardcode_direct" = yes; then
+		add="$dir/$linklib"
+	      elif test "$hardcode_minus_L" = yes; then
+		add_dir="-L$dir"
+		# Try looking first in the location we're being installed to.
+		if test -n "$inst_prefix_dir"; then
+		  case "$libdir" in
+		    [\\/]*)
+		      add_dir="-L$inst_prefix_dir$libdir $add_dir"
+		      ;;
+		  esac
+		fi
+		add="-l$name"
+	      elif test "$hardcode_shlibpath_var" = yes; then
+		add_shlibpath="$dir"
+		add="-l$name"
+	      else
+		lib_linked=no
+	      fi
+	      ;;
+	    *) lib_linked=no ;;
+	    esac
+
+	    if test "$lib_linked" != yes; then
+	      $echo "$modename: configuration error: unsupported hardcode properties"
+	      exit 1
+	    fi
+
+	    if test -n "$add_shlibpath"; then
+	      case :$compile_shlibpath: in
+	      *":$add_shlibpath:"*) ;;
+	      *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
+	      esac
+	    fi
+	    if test "$linkmode" = prog; then
+	      test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
+	      test -n "$add" && compile_deplibs="$add $compile_deplibs"
+	    else
+	      test -n "$add_dir" && deplibs="$add_dir $deplibs"
+	      test -n "$add" && deplibs="$add $deplibs"
+	      if test "$hardcode_direct" != yes && \
+		 test "$hardcode_minus_L" != yes && \
+		 test "$hardcode_shlibpath_var" = yes; then
+		case :$finalize_shlibpath: in
+		*":$libdir:"*) ;;
+		*) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
+		esac
+	      fi
+	    fi
+	  fi
+
+	  if test "$linkmode" = prog || test "$mode" = relink; then
+	    add_shlibpath=
+	    add_dir=
+	    add=
+	    # Finalize command for both is simple: just hardcode it.
+	    if test "$hardcode_direct" = yes; then
+	      add="$libdir/$linklib"
+	    elif test "$hardcode_minus_L" = yes; then
+	      add_dir="-L$libdir"
+	      add="-l$name"
+	    elif test "$hardcode_shlibpath_var" = yes; then
+	      case :$finalize_shlibpath: in
+	      *":$libdir:"*) ;;
+	      *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
+	      esac
+	      add="-l$name"
+	    elif test "$hardcode_automatic" = yes; then
+	      if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then
+	        add="$inst_prefix_dir$libdir/$linklib"
+	      else
+	        add="$libdir/$linklib"
+	      fi
+	    else
+	      # We cannot seem to hardcode it, guess we'll fake it.
+	      add_dir="-L$libdir"
+	      # Try looking first in the location we're being installed to.
+	      if test -n "$inst_prefix_dir"; then
+		case "$libdir" in
+		  [\\/]*)
+		    add_dir="-L$inst_prefix_dir$libdir $add_dir"
+		    ;;
+		esac
+	      fi
+	      add="-l$name"
+	    fi
+
+	    if test "$linkmode" = prog; then
+	      test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
+	      test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
+	    else
+	      test -n "$add_dir" && deplibs="$add_dir $deplibs"
+	      test -n "$add" && deplibs="$add $deplibs"
+	    fi
+	  fi
+	elif test "$linkmode" = prog; then
+	  # Here we assume that one of hardcode_direct or hardcode_minus_L
+	  # is not unsupported.  This is valid on all known static and
+	  # shared platforms.
+	  if test "$hardcode_direct" != unsupported; then
+	    test -n "$old_library" && linklib="$old_library"
+	    compile_deplibs="$dir/$linklib $compile_deplibs"
+	    finalize_deplibs="$dir/$linklib $finalize_deplibs"
+	  else
+	    compile_deplibs="-l$name -L$dir $compile_deplibs"
+	    finalize_deplibs="-l$name -L$dir $finalize_deplibs"
+	  fi
+	elif test "$build_libtool_libs" = yes; then
+	  # Not a shared library
+	  if test "$deplibs_check_method" != pass_all; then
+	    # We're trying link a shared library against a static one
+	    # but the system doesn't support it.
+
+	    # Just print a warning and add the library to dependency_libs so
+	    # that the program can be linked against the static library.
+	    $echo
+	    $echo "*** Warning: This system can not link to static lib archive $lib."
+	    $echo "*** I have the capability to make that library automatically link in when"
+	    $echo "*** you link to this library.  But I can only do this if you have a"
+	    $echo "*** shared version of the library, which you do not appear to have."
+	    if test "$module" = yes; then
+	      $echo "*** But as you try to build a module library, libtool will still create "
+	      $echo "*** a static module, that should work as long as the dlopening application"
+	      $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
+	      if test -z "$global_symbol_pipe"; then
+		$echo
+		$echo "*** However, this would only work if libtool was able to extract symbol"
+		$echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+		$echo "*** not find such a program.  So, this module is probably useless."
+		$echo "*** \`nm' from GNU binutils and a full rebuild may help."
+	      fi
+	      if test "$build_old_libs" = no; then
+		build_libtool_libs=module
+		build_old_libs=yes
+	      else
+		build_libtool_libs=no
+	      fi
+	    fi
+	  else
+	    convenience="$convenience $dir/$old_library"
+	    old_convenience="$old_convenience $dir/$old_library"
+	    deplibs="$dir/$old_library $deplibs"
+	    link_static=yes
+	  fi
+	fi # link shared/static library?
+
+	if test "$linkmode" = lib; then
+	  if test -n "$dependency_libs" &&
+	     { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes ||
+	       test "$link_static" = yes; }; then
+	    # Extract -R from dependency_libs
+	    temp_deplibs=
+	    for libdir in $dependency_libs; do
+	      case $libdir in
+	      -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
+		   case " $xrpath " in
+		   *" $temp_xrpath "*) ;;
+		   *) xrpath="$xrpath $temp_xrpath";;
+		   esac;;
+	      *) temp_deplibs="$temp_deplibs $libdir";;
+	      esac
+	    done
+	    dependency_libs="$temp_deplibs"
+	  fi
+
+	  newlib_search_path="$newlib_search_path $absdir"
+	  # Link against this library
+	  test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
+	  # ... and its dependency_libs
+	  tmp_libs=
+	  for deplib in $dependency_libs; do
+	    newdependency_libs="$deplib $newdependency_libs"
+	    if test "X$duplicate_deps" = "Xyes" ; then
+	      case "$tmp_libs " in
+	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+	      esac
+	    fi
+	    tmp_libs="$tmp_libs $deplib"
+	  done
+
+	  if test "$link_all_deplibs" != no; then
+	    # Add the search paths of all dependency libraries
+	    for deplib in $dependency_libs; do
+	      case $deplib in
+	      -L*) path="$deplib" ;;
+	      *.la)
+		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
+		test "X$dir" = "X$deplib" && dir="."
+		# We need an absolute path.
+		case $dir in
+		[\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
+		*)
+		  absdir=`cd "$dir" && pwd`
+		  if test -z "$absdir"; then
+		    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
+		    absdir="$dir"
+		  fi
+		  ;;
+		esac
+		if grep "^installed=no" $deplib > /dev/null; then
+		  path="$absdir/$objdir"
+		else
+		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+		  if test -z "$libdir"; then
+		    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
+		    exit 1
+		  fi
+		  if test "$absdir" != "$libdir"; then
+		    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
+		  fi
+		  path="$absdir"
+		fi
+		depdepl=
+		case $host in
+		*-*-darwin*)
+		  # we do not want to link against static libs, but need to link against shared
+		  eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
+		  if test -n "$deplibrary_names" ; then
+		    for tmp in $deplibrary_names ; do
+		      depdepl=$tmp
+		    done
+		    if test -f "$path/$depdepl" ; then
+		      depdepl="$path/$depdepl"
+		   fi
+		    newlib_search_path="$newlib_search_path $path"
+		    path=""
+		  fi
+		  ;;
+		*)
+		path="-L$path"
+		;;
+		esac 
+		
+		;;
+		  -l*)
+		case $host in
+		*-*-darwin*)
+		 # Again, we only want to link against shared libraries
+		 eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
+		 for tmp in $newlib_search_path ; do
+		     if test -f "$tmp/lib$tmp_libs.dylib" ; then
+		       eval depdepl="$tmp/lib$tmp_libs.dylib"
+		       break
+		     fi  
+         done
+         path=""
+		  ;;
+		*) continue ;;
+		esac  		  
+		;;
+	      *) continue ;;
+	      esac
+	      case " $deplibs " in
+	      *" $depdepl "*) ;;
+	      *) deplibs="$deplibs $depdepl" ;;
+	      esac	      
+	      case " $deplibs " in
+	      *" $path "*) ;;
+	      *) deplibs="$deplibs $path" ;;
+	      esac
+	    done
+	  fi # link_all_deplibs != no
+	fi # linkmode = lib
+      done # for deplib in $libs
+      dependency_libs="$newdependency_libs"
+      if test "$pass" = dlpreopen; then
+	# Link the dlpreopened libraries before other libraries
+	for deplib in $save_deplibs; do
+	  deplibs="$deplib $deplibs"
+	done
+      fi
+      if test "$pass" != dlopen; then
+	if test "$pass" != conv; then
+	  # Make sure lib_search_path contains only unique directories.
+	  lib_search_path=
+	  for dir in $newlib_search_path; do
+	    case "$lib_search_path " in
+	    *" $dir "*) ;;
+	    *) lib_search_path="$lib_search_path $dir" ;;
+	    esac
+	  done
+	  newlib_search_path=
+	fi
+
+	if test "$linkmode,$pass" != "prog,link"; then
+	  vars="deplibs"
+	else
+	  vars="compile_deplibs finalize_deplibs"
+	fi
+	for var in $vars dependency_libs; do
+	  # Add libraries to $var in reverse order
+	  eval tmp_libs=\"\$$var\"
+	  new_libs=
+	  for deplib in $tmp_libs; do
+	    # FIXME: Pedantically, this is the right thing to do, so
+	    #        that some nasty dependency loop isn't accidentally
+	    #        broken:
+	    #new_libs="$deplib $new_libs"
+	    # Pragmatically, this seems to cause very few problems in
+	    # practice:
+	    case $deplib in
+	    -L*) new_libs="$deplib $new_libs" ;;
+	    -R*) ;;
+	    *)
+	      # And here is the reason: when a library appears more
+	      # than once as an explicit dependence of a library, or
+	      # is implicitly linked in more than once by the
+	      # compiler, it is considered special, and multiple
+	      # occurrences thereof are not removed.  Compare this
+	      # with having the same library being listed as a
+	      # dependency of multiple other libraries: in this case,
+	      # we know (pedantically, we assume) the library does not
+	      # need to be listed more than once, so we keep only the
+	      # last copy.  This is not always right, but it is rare
+	      # enough that we require users that really mean to play
+	      # such unportable linking tricks to link the library
+	      # using -Wl,-lname, so that libtool does not consider it
+	      # for duplicate removal.
+	      case " $specialdeplibs " in
+	      *" $deplib "*) new_libs="$deplib $new_libs" ;;
+	      *)
+		case " $new_libs " in
+		*" $deplib "*) ;;
+		*) new_libs="$deplib $new_libs" ;;
+		esac
+		;;
+	      esac
+	      ;;
+	    esac
+	  done
+	  tmp_libs=
+	  for deplib in $new_libs; do
+	    case $deplib in
+	    -L*)
+	      case " $tmp_libs " in
+	      *" $deplib "*) ;;
+	      *) tmp_libs="$tmp_libs $deplib" ;;
+	      esac
+	      ;;
+	    *) tmp_libs="$tmp_libs $deplib" ;;
+	    esac
+	  done
+	  eval $var=\"$tmp_libs\"
+	done # for var
+      fi
+      # Last step: remove runtime libs from dependency_libs (they stay in deplibs)
+      tmp_libs=
+      for i in $dependency_libs ; do
+	case " $predeps $postdeps $compiler_lib_search_path " in
+	*" $i "*)
+	  i=""
+	  ;;
+	esac
+	if test -n "$i" ; then
+	  tmp_libs="$tmp_libs $i"
+	fi
+      done
+      dependency_libs=$tmp_libs
+    done # for pass
+    if test "$linkmode" = prog; then
+      dlfiles="$newdlfiles"
+      dlprefiles="$newdlprefiles"
+    fi
+
+    case $linkmode in
+    oldlib)
+      if test -n "$deplibs"; then
+	$echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
+      fi
+
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
+      fi
+
+      if test -n "$rpath"; then
+	$echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
+      fi
+
+      if test -n "$xrpath"; then
+	$echo "$modename: warning: \`-R' is ignored for archives" 1>&2
+      fi
+
+      if test -n "$vinfo"; then
+	$echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
+      fi
+
+      if test -n "$release"; then
+	$echo "$modename: warning: \`-release' is ignored for archives" 1>&2
+      fi
+
+      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
+	$echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
+      fi
+
+      # Now set the variables for building old libraries.
+      build_libtool_libs=no
+      oldlibs="$output"
+      objs="$objs$old_deplibs"
+      ;;
+
+    lib)
+      # Make sure we only generate libraries of the form `libNAME.la'.
+      case $outputname in
+      lib*)
+	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
+	eval shared_ext=\"$shrext\"
+	eval libname=\"$libname_spec\"
+	;;
+      *)
+	if test "$module" = no; then
+	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
+	  $echo "$help" 1>&2
+	  exit 1
+	fi
+	if test "$need_lib_prefix" != no; then
+	  # Add the "lib" prefix for modules if required
+	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
+	  eval shared_ext=\"$shrext\"
+	  eval libname=\"$libname_spec\"
+	else
+	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
+	fi
+	;;
+      esac
+
+      if test -n "$objs"; then
+	if test "$deplibs_check_method" != pass_all; then
+	  $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
+	  exit 1
+	else
+	  $echo
+	  $echo "*** Warning: Linking the shared library $output against the non-libtool"
+	  $echo "*** objects $objs is not portable!"
+	  libobjs="$libobjs $objs"
+	fi
+      fi
+
+      if test "$dlself" != no; then
+	$echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
+      fi
+
+      set dummy $rpath
+      if test "$#" -gt 2; then
+	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
+      fi
+      install_libdir="$2"
+
+      oldlibs=
+      if test -z "$rpath"; then
+	if test "$build_libtool_libs" = yes; then
+	  # Building a libtool convenience library.
+	  # Some compilers have problems with a `.al' extension so
+	  # convenience libraries should have the same extension an
+	  # archive normally would.
+	  oldlibs="$output_objdir/$libname.$libext $oldlibs"
+	  build_libtool_libs=convenience
+	  build_old_libs=yes
+	fi
+
+	if test -n "$vinfo"; then
+	  $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
+	fi
+
+	if test -n "$release"; then
+	  $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
+	fi
+      else
+
+	# Parse the version information argument.
+	save_ifs="$IFS"; IFS=':'
+	set dummy $vinfo 0 0 0
+	IFS="$save_ifs"
+
+	if test -n "$8"; then
+	  $echo "$modename: too many parameters to \`-version-info'" 1>&2
+	  $echo "$help" 1>&2
+	  exit 1
+	fi
+
+	# convert absolute version numbers to libtool ages
+	# this retains compatibility with .la files and attempts
+	# to make the code below a bit more comprehensible
+	
+	case $vinfo_number in
+	yes)
+	  number_major="$2"
+	  number_minor="$3"
+	  number_revision="$4"
+	  #
+	  # There are really only two kinds -- those that
+	  # use the current revision as the major version
+	  # and those that subtract age and use age as
+	  # a minor version.  But, then there is irix
+	  # which has an extra 1 added just for fun
+	  #
+	  case $version_type in
+	  darwin|linux|osf|windows)
+	    current=`expr $number_major + $number_minor`
+	    age="$number_minor"
+	    revision="$number_revision"
+	    ;;
+	  freebsd-aout|freebsd-elf|sunos)
+	    current="$number_major"
+	    revision="$number_minor"
+	    age="0"
+	    ;;
+	  irix|nonstopux)
+	    current=`expr $number_major + $number_minor - 1`
+	    age="$number_minor"
+	    revision="$number_minor"
+	    ;;
+	  esac
+	  ;;
+	no)
+	  current="$2"
+	  revision="$3"
+	  age="$4"
+	  ;;
+	esac
+
+	# Check that each of the things are valid numbers.
+	case $current in
+	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
+	*)
+	  $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
+	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+	  exit 1
+	  ;;
+	esac
+
+	case $revision in
+	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
+	*)
+	  $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
+	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+	  exit 1
+	  ;;
+	esac
+
+	case $age in
+	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
+	*)
+	  $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
+	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+	  exit 1
+	  ;;
+	esac
+
+	if test "$age" -gt "$current"; then
+	  $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
+	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+	  exit 1
+	fi
+
+	# Calculate the version variables.
+	major=
+	versuffix=
+	verstring=
+	case $version_type in
+	none) ;;
+
+	darwin)
+	  # Like Linux, but with the current version available in
+	  # verstring for coding it into the library header
+	  major=.`expr $current - $age`
+	  versuffix="$major.$age.$revision"
+	  # Darwin ld doesn't like 0 for these options...
+	  minor_current=`expr $current + 1`
+	  verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
+	  ;;
+
+	freebsd-aout)
+	  major=".$current"
+	  versuffix=".$current.$revision";
+	  ;;
+
+	freebsd-elf)
+	  major=".$current"
+	  versuffix=".$current";
+	  ;;
+
+	irix | nonstopux)
+	  major=`expr $current - $age + 1`
+
+	  case $version_type in
+	    nonstopux) verstring_prefix=nonstopux ;;
+	    *)         verstring_prefix=sgi ;;
+	  esac
+	  verstring="$verstring_prefix$major.$revision"
+
+	  # Add in all the interfaces that we are compatible with.
+	  loop=$revision
+	  while test "$loop" -ne 0; do
+	    iface=`expr $revision - $loop`
+	    loop=`expr $loop - 1`
+	    verstring="$verstring_prefix$major.$iface:$verstring"
+	  done
+
+	  # Before this point, $major must not contain `.'.
+	  major=.$major
+	  versuffix="$major.$revision"
+	  ;;
+
+	linux)
+	  major=.`expr $current - $age`
+	  versuffix="$major.$age.$revision"
+	  ;;
+
+	osf)
+	  major=.`expr $current - $age`
+	  versuffix=".$current.$age.$revision"
+	  verstring="$current.$age.$revision"
+
+	  # Add in all the interfaces that we are compatible with.
+	  loop=$age
+	  while test "$loop" -ne 0; do
+	    iface=`expr $current - $loop`
+	    loop=`expr $loop - 1`
+	    verstring="$verstring:${iface}.0"
+	  done
+
+	  # Make executables depend on our current version.
+	  verstring="$verstring:${current}.0"
+	  ;;
+
+	sunos)
+	  major=".$current"
+	  versuffix=".$current.$revision"
+	  ;;
+
+	windows)
+	  # Use '-' rather than '.', since we only want one
+	  # extension on DOS 8.3 filesystems.
+	  major=`expr $current - $age`
+	  versuffix="-$major"
+	  ;;
+
+	*)
+	  $echo "$modename: unknown library version type \`$version_type'" 1>&2
+	  $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
+	  exit 1
+	  ;;
+	esac
+
+	# Clear the version info if we defaulted, and they specified a release.
+	if test -z "$vinfo" && test -n "$release"; then
+	  major=
+	  case $version_type in
+	  darwin)
+	    # we can't check for "0.0" in archive_cmds due to quoting
+	    # problems, so we reset it completely
+	    verstring=
+	    ;;
+	  *)
+	    verstring="0.0"
+	    ;;
+	  esac
+	  if test "$need_version" = no; then
+	    versuffix=
+	  else
+	    versuffix=".0.0"
+	  fi
+	fi
+
+	# Remove version info from name if versioning should be avoided
+	if test "$avoid_version" = yes && test "$need_version" = no; then
+	  major=
+	  versuffix=
+	  verstring=""
+	fi
+
+	# Check to see if the archive will have undefined symbols.
+	if test "$allow_undefined" = yes; then
+	  if test "$allow_undefined_flag" = unsupported; then
+	    $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
+	    build_libtool_libs=no
+	    build_old_libs=yes
+	  fi
+	else
+	  # Don't allow undefined symbols.
+	  allow_undefined_flag="$no_undefined_flag"
+	fi
+      fi
+
+      if test "$mode" != relink; then
+	# Remove our outputs, but don't remove object files since they
+	# may have been created when compiling PIC objects.
+	removelist=
+	tempremovelist=`$echo "$output_objdir/*"`
+	for p in $tempremovelist; do
+	  case $p in
+	    *.$objext)
+	       ;;
+	    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
+	       removelist="$removelist $p"
+	       ;;
+	    *) ;;
+	  esac
+	done
+	if test -n "$removelist"; then
+	  $show "${rm}r $removelist"
+	  $run ${rm}r $removelist
+	fi
+      fi
+
+      # Now set the variables for building old libraries.
+      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
+	oldlibs="$oldlibs $output_objdir/$libname.$libext"
+
+	# Transform .lo files to .o files.
+	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
+      fi
+
+      # Eliminate all temporary directories.
+      for path in $notinst_path; do
+	lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
+	deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
+	dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
+      done
+
+      if test -n "$xrpath"; then
+	# If the user specified any rpath flags, then add them.
+	temp_xrpath=
+	for libdir in $xrpath; do
+	  temp_xrpath="$temp_xrpath -R$libdir"
+	  case "$finalize_rpath " in
+	  *" $libdir "*) ;;
+	  *) finalize_rpath="$finalize_rpath $libdir" ;;
+	  esac
+	done
+	if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
+	  dependency_libs="$temp_xrpath $dependency_libs"
+	fi
+      fi
+
+      # Make sure dlfiles contains only unique files that won't be dlpreopened
+      old_dlfiles="$dlfiles"
+      dlfiles=
+      for lib in $old_dlfiles; do
+	case " $dlprefiles $dlfiles " in
+	*" $lib "*) ;;
+	*) dlfiles="$dlfiles $lib" ;;
+	esac
+      done
+
+      # Make sure dlprefiles contains only unique files
+      old_dlprefiles="$dlprefiles"
+      dlprefiles=
+      for lib in $old_dlprefiles; do
+	case "$dlprefiles " in
+	*" $lib "*) ;;
+	*) dlprefiles="$dlprefiles $lib" ;;
+	esac
+      done
+
+      if test "$build_libtool_libs" = yes; then
+	if test -n "$rpath"; then
+	  case $host in
+	  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
+	    # these systems don't actually have a c library (as such)!
+	    ;;
+	  *-*-rhapsody* | *-*-darwin1.[012])
+	    # Rhapsody C library is in the System framework
+	    deplibs="$deplibs -framework System"
+	    ;;
+	  *-*-netbsd*)
+	    # Don't link with libc until the a.out ld.so is fixed.
+	    ;;
+	  *-*-openbsd* | *-*-freebsd*)
+	    # Do not include libc due to us having libc/libc_r.
+	    test "X$arg" = "X-lc" && continue
+	    ;;
+ 	  *)
+	    # Add libc to deplibs on all other systems if necessary.
+	    if test "$build_libtool_need_lc" = "yes"; then
+	      deplibs="$deplibs -lc"
+	    fi
+	    ;;
+	  esac
+	fi
+
+	# Transform deplibs into only deplibs that can be linked in shared.
+	name_save=$name
+	libname_save=$libname
+	release_save=$release
+	versuffix_save=$versuffix
+	major_save=$major
+	# I'm not sure if I'm treating the release correctly.  I think
+	# release should show up in the -l (ie -lgmp5) so we don't want to
+	# add it in twice.  Is that correct?
+	release=""
+	versuffix=""
+	major=""
+	newdeplibs=
+	droppeddeps=no
+	case $deplibs_check_method in
+	pass_all)
+	  # Don't check for shared/static.  Everything works.
+	  # This might be a little naive.  We might want to check
+	  # whether the library exists or not.  But this is on
+	  # osf3 & osf4 and I'm not really sure... Just
+	  # implementing what was already the behavior.
+	  newdeplibs=$deplibs
+	  ;;
+	test_compile)
+	  # This code stresses the "libraries are programs" paradigm to its
+	  # limits. Maybe even breaks it.  We compile a program, linking it
+	  # against the deplibs as a proxy for the library.  Then we can check
+	  # whether they linked in statically or dynamically with ldd.
+	  $rm conftest.c
+	  cat > conftest.c <<EOF
+	  int main() { return 0; }
+EOF
+	  $rm conftest
+	  $LTCC -o conftest conftest.c $deplibs
+	  if test "$?" -eq 0 ; then
+	    ldd_output=`ldd conftest`
+	    for i in $deplibs; do
+	      name="`expr $i : '-l\(.*\)'`"
+	      # If $name is empty we are operating on a -L argument.
+              if test "$name" != "" && test "$name" -ne "0"; then
+		if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+		  case " $predeps $postdeps " in
+		  *" $i "*)
+		    newdeplibs="$newdeplibs $i"
+		    i=""
+		    ;;
+		  esac
+	        fi
+		if test -n "$i" ; then
+		  libname=`eval \\$echo \"$libname_spec\"`
+		  deplib_matches=`eval \\$echo \"$library_names_spec\"`
+		  set dummy $deplib_matches
+		  deplib_match=$2
+		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
+		    newdeplibs="$newdeplibs $i"
+		  else
+		    droppeddeps=yes
+		    $echo
+		    $echo "*** Warning: dynamic linker does not accept needed library $i."
+		    $echo "*** I have the capability to make that library automatically link in when"
+		    $echo "*** you link to this library.  But I can only do this if you have a"
+		    $echo "*** shared version of the library, which I believe you do not have"
+		    $echo "*** because a test_compile did reveal that the linker did not use it for"
+		    $echo "*** its dynamic dependency list that programs get resolved with at runtime."
+		  fi
+		fi
+	      else
+		newdeplibs="$newdeplibs $i"
+	      fi
+	    done
+	  else
+	    # Error occurred in the first compile.  Let's try to salvage
+	    # the situation: Compile a separate program for each library.
+	    for i in $deplibs; do
+	      name="`expr $i : '-l\(.*\)'`"
+	      # If $name is empty we are operating on a -L argument.
+              if test "$name" != "" && test "$name" != "0"; then
+		$rm conftest
+		$LTCC -o conftest conftest.c $i
+		# Did it work?
+		if test "$?" -eq 0 ; then
+		  ldd_output=`ldd conftest`
+		  if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+		    case " $predeps $postdeps " in
+		    *" $i "*)
+		      newdeplibs="$newdeplibs $i"
+		      i=""
+		      ;;
+		    esac
+		  fi
+		  if test -n "$i" ; then
+		    libname=`eval \\$echo \"$libname_spec\"`
+		    deplib_matches=`eval \\$echo \"$library_names_spec\"`
+		    set dummy $deplib_matches
+		    deplib_match=$2
+		    if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
+		      newdeplibs="$newdeplibs $i"
+		    else
+		      droppeddeps=yes
+		      $echo
+		      $echo "*** Warning: dynamic linker does not accept needed library $i."
+		      $echo "*** I have the capability to make that library automatically link in when"
+		      $echo "*** you link to this library.  But I can only do this if you have a"
+		      $echo "*** shared version of the library, which you do not appear to have"
+		      $echo "*** because a test_compile did reveal that the linker did not use this one"
+		      $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
+		    fi
+		  fi
+		else
+		  droppeddeps=yes
+		  $echo
+		  $echo "*** Warning!  Library $i is needed by this library but I was not able to"
+		  $echo "***  make it link in!  You will probably need to install it or some"
+		  $echo "*** library that it depends on before this library will be fully"
+		  $echo "*** functional.  Installing it before continuing would be even better."
+		fi
+	      else
+		newdeplibs="$newdeplibs $i"
+	      fi
+	    done
+	  fi
+	  ;;
+	file_magic*)
+	  set dummy $deplibs_check_method
+	  file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
+	  for a_deplib in $deplibs; do
+	    name="`expr $a_deplib : '-l\(.*\)'`"
+	    # If $name is empty we are operating on a -L argument.
+            if test "$name" != "" && test  "$name" != "0"; then
+	      if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+		case " $predeps $postdeps " in
+		*" $a_deplib "*)
+		  newdeplibs="$newdeplibs $a_deplib"
+		  a_deplib=""
+		  ;;
+		esac
+	      fi
+	      if test -n "$a_deplib" ; then
+		libname=`eval \\$echo \"$libname_spec\"`
+		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
+		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
+		  for potent_lib in $potential_libs; do
+		      # Follow soft links.
+		      if ls -lLd "$potent_lib" 2>/dev/null \
+			 | grep " -> " >/dev/null; then
+			continue
+		      fi
+		      # The statement above tries to avoid entering an
+		      # endless loop below, in case of cyclic links.
+		      # We might still enter an endless loop, since a link
+		      # loop can be closed while we follow links,
+		      # but so what?
+		      potlib="$potent_lib"
+		      while test -h "$potlib" 2>/dev/null; do
+			potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
+			case $potliblink in
+			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
+			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
+			esac
+		      done
+		      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
+			 | ${SED} 10q \
+			 | $EGREP "$file_magic_regex" > /dev/null; then
+			newdeplibs="$newdeplibs $a_deplib"
+			a_deplib=""
+			break 2
+		      fi
+		  done
+		done
+	      fi
+	      if test -n "$a_deplib" ; then
+		droppeddeps=yes
+		$echo
+		$echo "*** Warning: linker path does not have real file for library $a_deplib."
+		$echo "*** I have the capability to make that library automatically link in when"
+		$echo "*** you link to this library.  But I can only do this if you have a"
+		$echo "*** shared version of the library, which you do not appear to have"
+		$echo "*** because I did check the linker path looking for a file starting"
+		if test -z "$potlib" ; then
+		  $echo "*** with $libname but no candidates were found. (...for file magic test)"
+		else
+		  $echo "*** with $libname and none of the candidates passed a file format test"
+		  $echo "*** using a file magic. Last file checked: $potlib"
+		fi
+	      fi
+	    else
+	      # Add a -L argument.
+	      newdeplibs="$newdeplibs $a_deplib"
+	    fi
+	  done # Gone through all deplibs.
+	  ;;
+	match_pattern*)
+	  set dummy $deplibs_check_method
+	  match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
+	  for a_deplib in $deplibs; do
+	    name="`expr $a_deplib : '-l\(.*\)'`"
+	    # If $name is empty we are operating on a -L argument.
+	    if test -n "$name" && test "$name" != "0"; then
+	      if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+		case " $predeps $postdeps " in
+		*" $a_deplib "*)
+		  newdeplibs="$newdeplibs $a_deplib"
+		  a_deplib=""
+		  ;;
+		esac
+	      fi
+	      if test -n "$a_deplib" ; then
+		libname=`eval \\$echo \"$libname_spec\"`
+		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
+		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
+		  for potent_lib in $potential_libs; do
+		    potlib="$potent_lib" # see symlink-check above in file_magic test
+		    if eval $echo \"$potent_lib\" 2>/dev/null \
+		        | ${SED} 10q \
+		        | $EGREP "$match_pattern_regex" > /dev/null; then
+		      newdeplibs="$newdeplibs $a_deplib"
+		      a_deplib=""
+		      break 2
+		    fi
+		  done
+		done
+	      fi
+	      if test -n "$a_deplib" ; then
+		droppeddeps=yes
+		$echo
+		$echo "*** Warning: linker path does not have real file for library $a_deplib."
+		$echo "*** I have the capability to make that library automatically link in when"
+		$echo "*** you link to this library.  But I can only do this if you have a"
+		$echo "*** shared version of the library, which you do not appear to have"
+		$echo "*** because I did check the linker path looking for a file starting"
+		if test -z "$potlib" ; then
+		  $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
+		else
+		  $echo "*** with $libname and none of the candidates passed a file format test"
+		  $echo "*** using a regex pattern. Last file checked: $potlib"
+		fi
+	      fi
+	    else
+	      # Add a -L argument.
+	      newdeplibs="$newdeplibs $a_deplib"
+	    fi
+	  done # Gone through all deplibs.
+	  ;;
+	none | unknown | *)
+	  newdeplibs=""
+	  tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
+	    -e 's/ -[LR][^ ]*//g'`
+	  if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
+	    for i in $predeps $postdeps ; do
+	      # can't use Xsed below, because $i might contain '/'
+	      tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
+	    done
+	  fi
+	  if $echo "X $tmp_deplibs" | $Xsed -e 's/[ 	]//g' \
+	    | grep . >/dev/null; then
+	    $echo
+	    if test "X$deplibs_check_method" = "Xnone"; then
+	      $echo "*** Warning: inter-library dependencies are not supported in this platform."
+	    else
+	      $echo "*** Warning: inter-library dependencies are not known to be supported."
+	    fi
+	    $echo "*** All declared inter-library dependencies are being dropped."
+	    droppeddeps=yes
+	  fi
+	  ;;
+	esac
+	versuffix=$versuffix_save
+	major=$major_save
+	release=$release_save
+	libname=$libname_save
+	name=$name_save
+
+	case $host in
+	*-*-rhapsody* | *-*-darwin1.[012])
+	  # On Rhapsody replace the C library is the System framework
+	  newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
+	  ;;
+	esac
+
+	if test "$droppeddeps" = yes; then
+	  if test "$module" = yes; then
+	    $echo
+	    $echo "*** Warning: libtool could not satisfy all declared inter-library"
+	    $echo "*** dependencies of module $libname.  Therefore, libtool will create"
+	    $echo "*** a static module, that should work as long as the dlopening"
+	    $echo "*** application is linked with the -dlopen flag."
+	    if test -z "$global_symbol_pipe"; then
+	      $echo
+	      $echo "*** However, this would only work if libtool was able to extract symbol"
+	      $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+	      $echo "*** not find such a program.  So, this module is probably useless."
+	      $echo "*** \`nm' from GNU binutils and a full rebuild may help."
+	    fi
+	    if test "$build_old_libs" = no; then
+	      oldlibs="$output_objdir/$libname.$libext"
+	      build_libtool_libs=module
+	      build_old_libs=yes
+	    else
+	      build_libtool_libs=no
+	    fi
+	  else
+	    $echo "*** The inter-library dependencies that have been dropped here will be"
+	    $echo "*** automatically added whenever a program is linked with this library"
+	    $echo "*** or is declared to -dlopen it."
+
+	    if test "$allow_undefined" = no; then
+	      $echo
+	      $echo "*** Since this library must not contain undefined symbols,"
+	      $echo "*** because either the platform does not support them or"
+	      $echo "*** it was explicitly requested with -no-undefined,"
+	      $echo "*** libtool will only create a static version of it."
+	      if test "$build_old_libs" = no; then
+		oldlibs="$output_objdir/$libname.$libext"
+		build_libtool_libs=module
+		build_old_libs=yes
+	      else
+		build_libtool_libs=no
+	      fi
+	    fi
+	  fi
+	fi
+	# Done checking deplibs!
+	deplibs=$newdeplibs
+      fi
+
+      # All the library-specific variables (install_libdir is set above).
+      library_names=
+      old_library=
+      dlname=
+
+      # Test again, we may have decided not to build it any more
+      if test "$build_libtool_libs" = yes; then
+	if test "$hardcode_into_libs" = yes; then
+	  # Hardcode the library paths
+	  hardcode_libdirs=
+	  dep_rpath=
+	  rpath="$finalize_rpath"
+	  test "$mode" != relink && rpath="$compile_rpath$rpath"
+	  for libdir in $rpath; do
+	    if test -n "$hardcode_libdir_flag_spec"; then
+	      if test -n "$hardcode_libdir_separator"; then
+		if test -z "$hardcode_libdirs"; then
+		  hardcode_libdirs="$libdir"
+		else
+		  # Just accumulate the unique libdirs.
+		  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+		  *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+		    ;;
+		  *)
+		    hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+		    ;;
+		  esac
+		fi
+	      else
+		eval flag=\"$hardcode_libdir_flag_spec\"
+		dep_rpath="$dep_rpath $flag"
+	      fi
+	    elif test -n "$runpath_var"; then
+	      case "$perm_rpath " in
+	      *" $libdir "*) ;;
+	      *) perm_rpath="$perm_rpath $libdir" ;;
+	      esac
+	    fi
+	  done
+	  # Substitute the hardcoded libdirs into the rpath.
+	  if test -n "$hardcode_libdir_separator" &&
+	     test -n "$hardcode_libdirs"; then
+	    libdir="$hardcode_libdirs"
+	    if test -n "$hardcode_libdir_flag_spec_ld"; then
+	      eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
+	    else
+	      eval dep_rpath=\"$hardcode_libdir_flag_spec\"
+	    fi
+	  fi
+	  if test -n "$runpath_var" && test -n "$perm_rpath"; then
+	    # We should set the runpath_var.
+	    rpath=
+	    for dir in $perm_rpath; do
+	      rpath="$rpath$dir:"
+	    done
+	    eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
+	  fi
+	  test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
+	fi
+
+	shlibpath="$finalize_shlibpath"
+	test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
+	if test -n "$shlibpath"; then
+	  eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
+	fi
+
+	# Get the real and link names of the library.
+	eval shared_ext=\"$shrext\"
+	eval library_names=\"$library_names_spec\"
+	set dummy $library_names
+	realname="$2"
+	shift; shift
+
+	if test -n "$soname_spec"; then
+	  eval soname=\"$soname_spec\"
+	else
+	  soname="$realname"
+	fi
+	if test -z "$dlname"; then
+	  dlname=$soname
+	fi
+
+	lib="$output_objdir/$realname"
+	for link
+	do
+	  linknames="$linknames $link"
+	done
+
+	# Use standard objects if they are pic
+	test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+
+	# Prepare the list of exported symbols
+	if test -z "$export_symbols"; then
+	  if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
+	    $show "generating symbol list for \`$libname.la'"
+	    export_symbols="$output_objdir/$libname.exp"
+	    $run $rm $export_symbols
+	    eval cmds=\"$export_symbols_cmds\"
+	    save_ifs="$IFS"; IFS='~'
+	    for cmd in $cmds; do
+	      IFS="$save_ifs"
+	      if len=`expr "X$cmd" : ".*"` &&
+	       test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
+	        $show "$cmd"
+	        $run eval "$cmd" || exit $?
+	        skipped_export=false
+	      else
+	        # The command line is too long to execute in one step.
+	        $show "using reloadable object file for export list..."
+	        skipped_export=:
+	      fi
+	    done
+	    IFS="$save_ifs"
+	    if test -n "$export_symbols_regex"; then
+	      $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
+	      $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
+	      $show "$mv \"${export_symbols}T\" \"$export_symbols\""
+	      $run eval '$mv "${export_symbols}T" "$export_symbols"'
+	    fi
+	  fi
+	fi
+
+	if test -n "$export_symbols" && test -n "$include_expsyms"; then
+	  $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
+	fi
+
+	tmp_deplibs=
+	for test_deplib in $deplibs; do
+		case " $convenience " in
+		*" $test_deplib "*) ;;
+		*) 
+			tmp_deplibs="$tmp_deplibs $test_deplib"
+			;;
+		esac
+	done
+	deplibs="$tmp_deplibs" 
+
+	if test -n "$convenience"; then
+	  if test -n "$whole_archive_flag_spec"; then
+	    save_libobjs=$libobjs
+	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
+	  else
+	    gentop="$output_objdir/${outputname}x"
+	    $show "${rm}r $gentop"
+	    $run ${rm}r "$gentop"
+	    $show "$mkdir $gentop"
+	    $run $mkdir "$gentop"
+	    status=$?
+	    if test "$status" -ne 0 && test ! -d "$gentop"; then
+	      exit $status
+	    fi
+	    generated="$generated $gentop"
+
+	    for xlib in $convenience; do
+	      # Extract the objects.
+	      case $xlib in
+	      [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+	      *) xabs=`pwd`"/$xlib" ;;
+	      esac
+	      xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+	      xdir="$gentop/$xlib"
+
+	      $show "${rm}r $xdir"
+	      $run ${rm}r "$xdir"
+	      $show "$mkdir $xdir"
+	      $run $mkdir "$xdir"
+	      status=$?
+	      if test "$status" -ne 0 && test ! -d "$xdir"; then
+		exit $status
+	      fi
+	      # We will extract separately just the conflicting names and we will no
+	      # longer touch any unique names. It is faster to leave these extract
+	      # automatically by $AR in one run.
+	      $show "(cd $xdir && $AR x $xabs)"
+	      $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+	      if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
+		:
+	      else
+		$echo "$modename: warning: object name conflicts; renaming object files" 1>&2
+		$echo "$modename: warning: to ensure that they will not overwrite" 1>&2
+		$AR t "$xabs" | sort | uniq -cd | while read -r count name
+		do
+		  i=1
+		  while test "$i" -le "$count"
+		  do
+		   # Put our $i before any first dot (extension)
+		   # Never overwrite any file
+		   name_to="$name"
+		   while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
+		   do
+		     name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
+		   done
+		   $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
+		   $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
+		   i=`expr $i + 1`
+		  done
+		done
+	      fi
+
+	      libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
+	    done
+	  fi
+	fi
+
+	if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
+	  eval flag=\"$thread_safe_flag_spec\"
+	  linker_flags="$linker_flags $flag"
+	fi
+
+	# Make a backup of the uninstalled library when relinking
+	if test "$mode" = relink; then
+	  $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
+	fi
+
+	# Do each of the archive commands.
+	if test "$module" = yes && test -n "$module_cmds" ; then
+	  if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
+	    eval cmds=\"$module_expsym_cmds\"
+	  else
+	    eval cmds=\"$module_cmds\"
+	  fi
+	else
+	if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
+	  eval cmds=\"$archive_expsym_cmds\"
+	else
+	  eval cmds=\"$archive_cmds\"
+	  fi
+	fi
+
+	if test "X$skipped_export" != "X:" && len=`expr "X$cmds" : ".*"` &&
+	   test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
+	  :
+	else
+	  # The command line is too long to link in one step, link piecewise.
+	  $echo "creating reloadable object files..."
+
+	  # Save the value of $output and $libobjs because we want to
+	  # use them later.  If we have whole_archive_flag_spec, we
+	  # want to use save_libobjs as it was before
+	  # whole_archive_flag_spec was expanded, because we can't
+	  # assume the linker understands whole_archive_flag_spec.
+	  # This may have to be revisited, in case too many
+	  # convenience libraries get linked in and end up exceeding
+	  # the spec.
+	  if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
+	    save_libobjs=$libobjs
+	  fi
+	  save_output=$output
+
+	  # Clear the reloadable object creation command queue and
+	  # initialize k to one.
+	  test_cmds=
+	  concat_cmds=
+	  objlist=
+	  delfiles=
+	  last_robj=
+	  k=1
+	  output=$output_objdir/$save_output-${k}.$objext
+	  # Loop over the list of objects to be linked.
+	  for obj in $save_libobjs
+	  do
+	    eval test_cmds=\"$reload_cmds $objlist $last_robj\"
+	    if test "X$objlist" = X ||
+	       { len=`expr "X$test_cmds" : ".*"` &&
+		 test "$len" -le "$max_cmd_len"; }; then
+	      objlist="$objlist $obj"
+	    else
+	      # The command $test_cmds is almost too long, add a
+	      # command to the queue.
+	      if test "$k" -eq 1 ; then
+		# The first file doesn't have a previous command to add.
+		eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
+	      else
+		# All subsequent reloadable object files will link in
+		# the last one created.
+		eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
+	      fi
+	      last_robj=$output_objdir/$save_output-${k}.$objext
+	      k=`expr $k + 1`
+	      output=$output_objdir/$save_output-${k}.$objext
+	      objlist=$obj
+	      len=1
+	    fi
+	  done
+	  # Handle the remaining objects by creating one last
+	  # reloadable object file.  All subsequent reloadable object
+	  # files will link in the last one created.
+	  test -z "$concat_cmds" || concat_cmds=$concat_cmds~
+	  eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
+
+	  if ${skipped_export-false}; then
+	    $show "generating symbol list for \`$libname.la'"
+	    export_symbols="$output_objdir/$libname.exp"
+	    $run $rm $export_symbols
+	    libobjs=$output
+	    # Append the command to create the export file.
+	    eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
+          fi
+
+	  # Set up a command to remove the reloadale object files
+	  # after they are used.
+	  i=0
+	  while test "$i" -lt "$k"
+	  do
+	    i=`expr $i + 1`
+	    delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
+	  done
+
+	  $echo "creating a temporary reloadable object file: $output"
+
+	  # Loop through the commands generated above and execute them.
+	  save_ifs="$IFS"; IFS='~'
+	  for cmd in $concat_cmds; do
+	    IFS="$save_ifs"
+	    $show "$cmd"
+	    $run eval "$cmd" || exit $?
+	  done
+	  IFS="$save_ifs"
+
+	  libobjs=$output
+	  # Restore the value of output.
+	  output=$save_output
+
+	  if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
+	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
+	  fi
+	  # Expand the library linking commands again to reset the
+	  # value of $libobjs for piecewise linking.
+
+	  # Do each of the archive commands.
+	  if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
+	    eval cmds=\"$archive_expsym_cmds\"
+	  else
+	    eval cmds=\"$archive_cmds\"
+	  fi
+
+	  # Append the command to remove the reloadable object files
+	  # to the just-reset $cmds.
+	  eval cmds=\"\$cmds~$rm $delfiles\"
+	fi
+	save_ifs="$IFS"; IFS='~'
+	for cmd in $cmds; do
+	  IFS="$save_ifs"
+	  $show "$cmd"
+	  $run eval "$cmd" || exit $?
+	done
+	IFS="$save_ifs"
+
+	# Restore the uninstalled library and exit
+	if test "$mode" = relink; then
+	  $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
+	  exit 0
+	fi
+
+	# Create links to the real library.
+	for linkname in $linknames; do
+	  if test "$realname" != "$linkname"; then
+	    $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
+	    $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
+	  fi
+	done
+
+	# If -module or -export-dynamic was specified, set the dlname.
+	if test "$module" = yes || test "$export_dynamic" = yes; then
+	  # On all known operating systems, these are identical.
+	  dlname="$soname"
+	fi
+      fi
+      ;;
+
+    obj)
+      if test -n "$deplibs"; then
+	$echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
+      fi
+
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+	$echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
+      fi
+
+      if test -n "$rpath"; then
+	$echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
+      fi
+
+      if test -n "$xrpath"; then
+	$echo "$modename: warning: \`-R' is ignored for objects" 1>&2
+      fi
+
+      if test -n "$vinfo"; then
+	$echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
+      fi
+
+      if test -n "$release"; then
+	$echo "$modename: warning: \`-release' is ignored for objects" 1>&2
+      fi
+
+      case $output in
+      *.lo)
+	if test -n "$objs$old_deplibs"; then
+	  $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
+	  exit 1
+	fi
+	libobj="$output"
+	obj=`$echo "X$output" | $Xsed -e "$lo2o"`
+	;;
+      *)
+	libobj=
+	obj="$output"
+	;;
+      esac
+
+      # Delete the old objects.
+      $run $rm $obj $libobj
+
+      # Objects from convenience libraries.  This assumes
+      # single-version convenience libraries.  Whenever we create
+      # different ones for PIC/non-PIC, this we'll have to duplicate
+      # the extraction.
+      reload_conv_objs=
+      gentop=
+      # reload_cmds runs $LD directly, so let us get rid of
+      # -Wl from whole_archive_flag_spec
+      wl=
+
+      if test -n "$convenience"; then
+	if test -n "$whole_archive_flag_spec"; then
+	  eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
+	else
+	  gentop="$output_objdir/${obj}x"
+	  $show "${rm}r $gentop"
+	  $run ${rm}r "$gentop"
+	  $show "$mkdir $gentop"
+	  $run $mkdir "$gentop"
+	  status=$?
+	  if test "$status" -ne 0 && test ! -d "$gentop"; then
+	    exit $status
+	  fi
+	  generated="$generated $gentop"
+
+	  for xlib in $convenience; do
+	    # Extract the objects.
+	    case $xlib in
+	    [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+	    *) xabs=`pwd`"/$xlib" ;;
+	    esac
+	    xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+	    xdir="$gentop/$xlib"
+
+	    $show "${rm}r $xdir"
+	    $run ${rm}r "$xdir"
+	    $show "$mkdir $xdir"
+	    $run $mkdir "$xdir"
+	    status=$?
+	    if test "$status" -ne 0 && test ! -d "$xdir"; then
+	      exit $status
+	    fi
+	    # We will extract separately just the conflicting names and we will no
+	    # longer touch any unique names. It is faster to leave these extract
+	    # automatically by $AR in one run.
+	    $show "(cd $xdir && $AR x $xabs)"
+	    $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+	    if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
+	      :
+	    else
+	      $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
+	      $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
+	      $AR t "$xabs" | sort | uniq -cd | while read -r count name
+	      do
+		i=1
+		while test "$i" -le "$count"
+		do
+		 # Put our $i before any first dot (extension)
+		 # Never overwrite any file
+		 name_to="$name"
+		 while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
+		 do
+		   name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
+		 done
+		 $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
+		 $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
+		 i=`expr $i + 1`
+		done
+	      done
+	    fi
+
+	    reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
+	  done
+	fi
+      fi
+
+      # Create the old-style object.
+      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
+
+      output="$obj"
+      eval cmds=\"$reload_cmds\"
+      save_ifs="$IFS"; IFS='~'
+      for cmd in $cmds; do
+	IFS="$save_ifs"
+	$show "$cmd"
+	$run eval "$cmd" || exit $?
+      done
+      IFS="$save_ifs"
+
+      # Exit if we aren't doing a library object file.
+      if test -z "$libobj"; then
+	if test -n "$gentop"; then
+	  $show "${rm}r $gentop"
+	  $run ${rm}r $gentop
+	fi
+
+	exit 0
+      fi
+
+      if test "$build_libtool_libs" != yes; then
+	if test -n "$gentop"; then
+	  $show "${rm}r $gentop"
+	  $run ${rm}r $gentop
+	fi
+
+	# Create an invalid libtool object if no PIC, so that we don't
+	# accidentally link it into a program.
+	# $show "echo timestamp > $libobj"
+	# $run eval "echo timestamp > $libobj" || exit $?
+	exit 0
+      fi
+
+      if test -n "$pic_flag" || test "$pic_mode" != default; then
+	# Only do commands if we really have different PIC objects.
+	reload_objs="$libobjs $reload_conv_objs"
+	output="$libobj"
+	eval cmds=\"$reload_cmds\"
+	save_ifs="$IFS"; IFS='~'
+	for cmd in $cmds; do
+	  IFS="$save_ifs"
+	  $show "$cmd"
+	  $run eval "$cmd" || exit $?
+	done
+	IFS="$save_ifs"
+      fi
+
+      if test -n "$gentop"; then
+	$show "${rm}r $gentop"
+	$run ${rm}r $gentop
+      fi
+
+      exit 0
+      ;;
+
+    prog)
+      case $host in
+	*cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
+      esac
+      if test -n "$vinfo"; then
+	$echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
+      fi
+
+      if test -n "$release"; then
+	$echo "$modename: warning: \`-release' is ignored for programs" 1>&2
+      fi
+
+      if test "$preload" = yes; then
+	if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
+	   test "$dlopen_self_static" = unknown; then
+	  $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
+	fi
+      fi
+
+      case $host in
+      *-*-rhapsody* | *-*-darwin1.[012])
+	# On Rhapsody replace the C library is the System framework
+	compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
+	finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
+	;;
+      esac
+
+      case $host in
+      *darwin*)
+        # Don't allow lazy linking, it breaks C++ global constructors
+        if test "$tagname" = CXX ; then
+        compile_command="$compile_command ${wl}-bind_at_load"
+        finalize_command="$finalize_command ${wl}-bind_at_load"
+        fi
+        ;;
+      esac
+
+      compile_command="$compile_command $compile_deplibs"
+      finalize_command="$finalize_command $finalize_deplibs"
+
+      if test -n "$rpath$xrpath"; then
+	# If the user specified any rpath flags, then add them.
+	for libdir in $rpath $xrpath; do
+	  # This is the magic to use -rpath.
+	  case "$finalize_rpath " in
+	  *" $libdir "*) ;;
+	  *) finalize_rpath="$finalize_rpath $libdir" ;;
+	  esac
+	done
+      fi
+
+      # Now hardcode the library paths
+      rpath=
+      hardcode_libdirs=
+      for libdir in $compile_rpath $finalize_rpath; do
+	if test -n "$hardcode_libdir_flag_spec"; then
+	  if test -n "$hardcode_libdir_separator"; then
+	    if test -z "$hardcode_libdirs"; then
+	      hardcode_libdirs="$libdir"
+	    else
+	      # Just accumulate the unique libdirs.
+	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+	      *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+		;;
+	      *)
+		hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+		;;
+	      esac
+	    fi
+	  else
+	    eval flag=\"$hardcode_libdir_flag_spec\"
+	    rpath="$rpath $flag"
+	  fi
+	elif test -n "$runpath_var"; then
+	  case "$perm_rpath " in
+	  *" $libdir "*) ;;
+	  *) perm_rpath="$perm_rpath $libdir" ;;
+	  esac
+	fi
+	case $host in
+	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+	  case :$dllsearchpath: in
+	  *":$libdir:"*) ;;
+	  *) dllsearchpath="$dllsearchpath:$libdir";;
+	  esac
+	  ;;
+	esac
+      done
+      # Substitute the hardcoded libdirs into the rpath.
+      if test -n "$hardcode_libdir_separator" &&
+	 test -n "$hardcode_libdirs"; then
+	libdir="$hardcode_libdirs"
+	eval rpath=\" $hardcode_libdir_flag_spec\"
+      fi
+      compile_rpath="$rpath"
+
+      rpath=
+      hardcode_libdirs=
+      for libdir in $finalize_rpath; do
+	if test -n "$hardcode_libdir_flag_spec"; then
+	  if test -n "$hardcode_libdir_separator"; then
+	    if test -z "$hardcode_libdirs"; then
+	      hardcode_libdirs="$libdir"
+	    else
+	      # Just accumulate the unique libdirs.
+	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+	      *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+		;;
+	      *)
+		hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+		;;
+	      esac
+	    fi
+	  else
+	    eval flag=\"$hardcode_libdir_flag_spec\"
+	    rpath="$rpath $flag"
+	  fi
+	elif test -n "$runpath_var"; then
+	  case "$finalize_perm_rpath " in
+	  *" $libdir "*) ;;
+	  *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
+	  esac
+	fi
+      done
+      # Substitute the hardcoded libdirs into the rpath.
+      if test -n "$hardcode_libdir_separator" &&
+	 test -n "$hardcode_libdirs"; then
+	libdir="$hardcode_libdirs"
+	eval rpath=\" $hardcode_libdir_flag_spec\"
+      fi
+      finalize_rpath="$rpath"
+
+      if test -n "$libobjs" && test "$build_old_libs" = yes; then
+	# Transform all the library objects into standard objects.
+	compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+	finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+      fi
+
+      dlsyms=
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+	if test -n "$NM" && test -n "$global_symbol_pipe"; then
+	  dlsyms="${outputname}S.c"
+	else
+	  $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
+	fi
+      fi
+
+      if test -n "$dlsyms"; then
+	case $dlsyms in
+	"") ;;
+	*.c)
+	  # Discover the nlist of each of the dlfiles.
+	  nlist="$output_objdir/${outputname}.nm"
+
+	  $show "$rm $nlist ${nlist}S ${nlist}T"
+	  $run $rm "$nlist" "${nlist}S" "${nlist}T"
+
+	  # Parse the name list into a source file.
+	  $show "creating $output_objdir/$dlsyms"
+
+	  test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
+/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
+/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
+
+#ifdef __cplusplus
+extern \"C\" {
+#endif
+
+/* Prevent the only kind of declaration conflicts we can make. */
+#define lt_preloaded_symbols some_other_symbol
+
+/* External symbol declarations for the compiler. */\
+"
+
+	  if test "$dlself" = yes; then
+	    $show "generating symbol list for \`$output'"
+
+	    test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
+
+	    # Add our own program objects to the symbol list.
+	    progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+	    for arg in $progfiles; do
+	      $show "extracting global C symbols from \`$arg'"
+	      $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
+	    done
+
+	    if test -n "$exclude_expsyms"; then
+	      $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
+	      $run eval '$mv "$nlist"T "$nlist"'
+	    fi
+
+	    if test -n "$export_symbols_regex"; then
+	      $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
+	      $run eval '$mv "$nlist"T "$nlist"'
+	    fi
+
+	    # Prepare the list of exported symbols
+	    if test -z "$export_symbols"; then
+	      export_symbols="$output_objdir/$output.exp"
+	      $run $rm $export_symbols
+	      $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
+	    else
+	      $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
+	      $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
+	      $run eval 'mv "$nlist"T "$nlist"'
+	    fi
+	  fi
+
+	  for arg in $dlprefiles; do
+	    $show "extracting global C symbols from \`$arg'"
+	    name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
+	    $run eval '$echo ": $name " >> "$nlist"'
+	    $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
+	  done
+
+	  if test -z "$run"; then
+	    # Make sure we have at least an empty file.
+	    test -f "$nlist" || : > "$nlist"
+
+	    if test -n "$exclude_expsyms"; then
+	      $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
+	      $mv "$nlist"T "$nlist"
+	    fi
+
+	    # Try sorting and uniquifying the output.
+	    if grep -v "^: " < "$nlist" |
+		if sort -k 3 </dev/null >/dev/null 2>&1; then
+		  sort -k 3
+		else
+		  sort +2
+		fi |
+		uniq > "$nlist"S; then
+	      :
+	    else
+	      grep -v "^: " < "$nlist" > "$nlist"S
+	    fi
+
+	    if test -f "$nlist"S; then
+	      eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
+	    else
+	      $echo '/* NONE */' >> "$output_objdir/$dlsyms"
+	    fi
+
+	    $echo >> "$output_objdir/$dlsyms" "\
+
+#undef lt_preloaded_symbols
+
+#if defined (__STDC__) && __STDC__
+# define lt_ptr void *
+#else
+# define lt_ptr char *
+# define const
+#endif
+
+/* The mapping between symbol names and symbols. */
+const struct {
+  const char *name;
+  lt_ptr address;
+}
+lt_preloaded_symbols[] =
+{\
+"
+
+	    eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
+
+	    $echo >> "$output_objdir/$dlsyms" "\
+  {0, (lt_ptr) 0}
+};
+
+/* This works around a problem in FreeBSD linker */
+#ifdef FREEBSD_WORKAROUND
+static const void *lt_preloaded_setup() {
+  return lt_preloaded_symbols;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif\
+"
+	  fi
+
+	  pic_flag_for_symtable=
+	  case $host in
+	  # compiling the symbol table file with pic_flag works around
+	  # a FreeBSD bug that causes programs to crash when -lm is
+	  # linked before any other PIC object.  But we must not use
+	  # pic_flag when linking with -static.  The problem exists in
+	  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
+	  *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
+	    case "$compile_command " in
+	    *" -static "*) ;;
+	    *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
+	    esac;;
+	  *-*-hpux*)
+	    case "$compile_command " in
+	    *" -static "*) ;;
+	    *) pic_flag_for_symtable=" $pic_flag";;
+	    esac
+	  esac
+
+	  # Now compile the dynamic symbol file.
+	  $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
+	  $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
+
+	  # Clean up the generated files.
+	  $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
+	  $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
+
+	  # Transform the symbol file into the correct name.
+	  compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
+	  finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
+	  ;;
+	*)
+	  $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
+	  exit 1
+	  ;;
+	esac
+      else
+	# We keep going just in case the user didn't refer to
+	# lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
+	# really was required.
+
+	# Nullify the symbol file.
+	compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
+	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
+      fi
+
+      if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
+	# Replace the output file specification.
+	compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
+	link_command="$compile_command$compile_rpath"
+
+	# We have no uninstalled library dependencies, so finalize right now.
+	$show "$link_command"
+	$run eval "$link_command"
+	status=$?
+
+	# Delete the generated files.
+	if test -n "$dlsyms"; then
+	  $show "$rm $output_objdir/${outputname}S.${objext}"
+	  $run $rm "$output_objdir/${outputname}S.${objext}"
+	fi
+
+	exit $status
+      fi
+
+      if test -n "$shlibpath_var"; then
+	# We should set the shlibpath_var
+	rpath=
+	for dir in $temp_rpath; do
+	  case $dir in
+	  [\\/]* | [A-Za-z]:[\\/]*)
+	    # Absolute path.
+	    rpath="$rpath$dir:"
+	    ;;
+	  *)
+	    # Relative path: add a thisdir entry.
+	    rpath="$rpath\$thisdir/$dir:"
+	    ;;
+	  esac
+	done
+	temp_rpath="$rpath"
+      fi
+
+      if test -n "$compile_shlibpath$finalize_shlibpath"; then
+	compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
+      fi
+      if test -n "$finalize_shlibpath"; then
+	finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
+      fi
+
+      compile_var=
+      finalize_var=
+      if test -n "$runpath_var"; then
+	if test -n "$perm_rpath"; then
+	  # We should set the runpath_var.
+	  rpath=
+	  for dir in $perm_rpath; do
+	    rpath="$rpath$dir:"
+	  done
+	  compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
+	fi
+	if test -n "$finalize_perm_rpath"; then
+	  # We should set the runpath_var.
+	  rpath=
+	  for dir in $finalize_perm_rpath; do
+	    rpath="$rpath$dir:"
+	  done
+	  finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
+	fi
+      fi
+
+      if test "$no_install" = yes; then
+	# We don't need to create a wrapper script.
+	link_command="$compile_var$compile_command$compile_rpath"
+	# Replace the output file specification.
+	link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
+	# Delete the old output file.
+	$run $rm $output
+	# Link the executable and exit
+	$show "$link_command"
+	$run eval "$link_command" || exit $?
+	exit 0
+      fi
+
+      if test "$hardcode_action" = relink; then
+	# Fast installation is not supported
+	link_command="$compile_var$compile_command$compile_rpath"
+	relink_command="$finalize_var$finalize_command$finalize_rpath"
+
+	$echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
+	$echo "$modename: \`$output' will be relinked during installation" 1>&2
+      else
+	if test "$fast_install" != no; then
+	  link_command="$finalize_var$compile_command$finalize_rpath"
+	  if test "$fast_install" = yes; then
+	    relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
+	  else
+	    # fast_install is set to needless
+	    relink_command=
+	  fi
+	else
+	  link_command="$compile_var$compile_command$compile_rpath"
+	  relink_command="$finalize_var$finalize_command$finalize_rpath"
+	fi
+      fi
+
+      # Replace the output file specification.
+      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
+
+      # Delete the old output files.
+      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
+
+      $show "$link_command"
+      $run eval "$link_command" || exit $?
+
+      # Now create the wrapper script.
+      $show "creating $output"
+
+      # Quote the relink command for shipping.
+      if test -n "$relink_command"; then
+	# Preserve any variables that may affect compiler behavior
+	for var in $variables_saved_for_relink; do
+	  if eval test -z \"\${$var+set}\"; then
+	    relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
+	  elif eval var_value=\$$var; test -z "$var_value"; then
+	    relink_command="$var=; export $var; $relink_command"
+	  else
+	    var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
+	    relink_command="$var=\"$var_value\"; export $var; $relink_command"
+	  fi
+	done
+	relink_command="(cd `pwd`; $relink_command)"
+	relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
+      fi
+
+      # Quote $echo for shipping.
+      if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
+	case $0 in
+	[\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";;
+	*) qecho="$SHELL `pwd`/$0 --fallback-echo";;
+	esac
+	qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
+      else
+	qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
+      fi
+
+      # Only actually do things if our run command is non-null.
+      if test -z "$run"; then
+	# win32 will think the script is a binary if it has
+	# a .exe suffix, so we strip it off here.
+	case $output in
+	  *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
+	esac
+	# test for cygwin because mv fails w/o .exe extensions
+	case $host in
+	  *cygwin*)
+	    exeext=.exe
+	    outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
+	  *) exeext= ;;
+	esac
+	case $host in
+	  *cygwin* | *mingw* )
+	    cwrappersource=`$echo ${objdir}/lt-${output}.c`
+	    cwrapper=`$echo ${output}.exe`
+	    $rm $cwrappersource $cwrapper
+	    trap "$rm $cwrappersource $cwrapper; exit 1" 1 2 15
+
+	    cat > $cwrappersource <<EOF
+
+/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
+   Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+
+   The $output program cannot be directly executed until all the libtool
+   libraries that it depends on are installed.
+   
+   This wrapper executable should never be moved out of the build directory.
+   If it is, it will not operate correctly.
+
+   Currently, it simply execs the wrapper *script* "/bin/sh $output",
+   but could eventually absorb all of the scripts functionality and
+   exec $objdir/$outputname directly.
+*/
+EOF
+	    cat >> $cwrappersource<<"EOF"
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <malloc.h>
+#include <stdarg.h>
+#include <assert.h>
+
+#if defined(PATH_MAX)
+# define LT_PATHMAX PATH_MAX
+#elif defined(MAXPATHLEN)
+# define LT_PATHMAX MAXPATHLEN
+#else
+# define LT_PATHMAX 1024
+#endif
+
+#ifndef DIR_SEPARATOR
+#define DIR_SEPARATOR '/'
+#endif
+
+#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
+  defined (__OS2__)
+#define HAVE_DOS_BASED_FILE_SYSTEM
+#ifndef DIR_SEPARATOR_2 
+#define DIR_SEPARATOR_2 '\\'
+#endif
+#endif
+
+#ifndef DIR_SEPARATOR_2
+# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
+#else /* DIR_SEPARATOR_2 */
+# define IS_DIR_SEPARATOR(ch) \
+        (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
+#endif /* DIR_SEPARATOR_2 */
+
+#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
+#define XFREE(stale) do { \
+  if (stale) { free ((void *) stale); stale = 0; } \
+} while (0)
+
+const char *program_name = NULL;
+
+void * xmalloc (size_t num);
+char * xstrdup (const char *string);
+char * basename (const char *name);
+char * fnqualify(const char *path);
+char * strendzap(char *str, const char *pat);
+void lt_fatal (const char *message, ...);
+
+int
+main (int argc, char *argv[])
+{
+  char **newargz;
+  int i;
+  
+  program_name = (char *) xstrdup ((char *) basename (argv[0]));
+  newargz = XMALLOC(char *, argc+2);
+EOF
+
+	    cat >> $cwrappersource <<EOF
+  newargz[0] = "$SHELL";
+EOF
+
+	    cat >> $cwrappersource <<"EOF"
+  newargz[1] = fnqualify(argv[0]);
+  /* we know the script has the same name, without the .exe */
+  /* so make sure newargz[1] doesn't end in .exe */
+  strendzap(newargz[1],".exe"); 
+  for (i = 1; i < argc; i++)
+    newargz[i+1] = xstrdup(argv[i]);
+  newargz[argc+1] = NULL;
+EOF
+
+	    cat >> $cwrappersource <<EOF
+  execv("$SHELL",newargz);
+EOF
+
+	    cat >> $cwrappersource <<"EOF"
+}
+
+void *
+xmalloc (size_t num)
+{
+  void * p = (void *) malloc (num);
+  if (!p)
+    lt_fatal ("Memory exhausted");
+
+  return p;
+}
+
+char * 
+xstrdup (const char *string)
+{
+  return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
+;
+}
+
+char *
+basename (const char *name)
+{
+  const char *base;
+
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+  /* Skip over the disk name in MSDOS pathnames. */
+  if (isalpha (name[0]) && name[1] == ':') 
+    name += 2;
+#endif
+
+  for (base = name; *name; name++)
+    if (IS_DIR_SEPARATOR (*name))
+      base = name + 1;
+  return (char *) base;
+}
+
+char * 
+fnqualify(const char *path)
+{
+  size_t size;
+  char *p;
+  char tmp[LT_PATHMAX + 1];
+
+  assert(path != NULL);
+
+  /* Is it qualified already? */
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+  if (isalpha (path[0]) && path[1] == ':')
+    return xstrdup (path);
+#endif
+  if (IS_DIR_SEPARATOR (path[0]))
+    return xstrdup (path);
+
+  /* prepend the current directory */
+  /* doesn't handle '~' */
+  if (getcwd (tmp, LT_PATHMAX) == NULL)
+    lt_fatal ("getcwd failed");
+  size = strlen(tmp) + 1 + strlen(path) + 1; /* +2 for '/' and '\0' */
+  p = XMALLOC(char, size);
+  sprintf(p, "%s%c%s", tmp, DIR_SEPARATOR, path);
+  return p;
+}
+
+char *
+strendzap(char *str, const char *pat) 
+{
+  size_t len, patlen;
+
+  assert(str != NULL);
+  assert(pat != NULL);
+
+  len = strlen(str);
+  patlen = strlen(pat);
+
+  if (patlen <= len)
+  {
+    str += len - patlen;
+    if (strcmp(str, pat) == 0)
+      *str = '\0';
+  }
+  return str;
+}
+
+static void
+lt_error_core (int exit_status, const char * mode, 
+          const char * message, va_list ap)
+{
+  fprintf (stderr, "%s: %s: ", program_name, mode);
+  vfprintf (stderr, message, ap);
+  fprintf (stderr, ".\n");
+
+  if (exit_status >= 0)
+    exit (exit_status);
+}
+
+void
+lt_fatal (const char *message, ...)
+{
+  va_list ap;
+  va_start (ap, message);
+  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
+  va_end (ap);
+}
+EOF
+	  # we should really use a build-platform specific compiler
+	  # here, but OTOH, the wrappers (shell script and this C one)
+	  # are only useful if you want to execute the "real" binary.
+	  # Since the "real" binary is built for $host, then this
+	  # wrapper might as well be built for $host, too.
+	  $run $LTCC -s -o $cwrapper $cwrappersource
+	  ;;
+	esac
+	$rm $output
+	trap "$rm $output; exit 1" 1 2 15
+
+	$echo > $output "\
+#! $SHELL
+
+# $output - temporary wrapper script for $objdir/$outputname
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# The $output program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting.  It backslashifies
+# metacharacters that are still active within double-quoted strings.
+Xsed='${SED} -e 1s/^X//'
+sed_quote_subst='$sed_quote_subst'
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
+
+relink_command=\"$relink_command\"
+
+# This environment variable determines our operation mode.
+if test \"\$libtool_install_magic\" = \"$magic\"; then
+  # install mode needs the following variable:
+  notinst_deplibs='$notinst_deplibs'
+else
+  # When we are sourced in execute mode, \$file and \$echo are already set.
+  if test \"\$libtool_execute_magic\" != \"$magic\"; then
+    echo=\"$qecho\"
+    file=\"\$0\"
+    # Make sure echo works.
+    if test \"X\$1\" = X--no-reexec; then
+      # Discard the --no-reexec flag, and continue.
+      shift
+    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
+      # Yippee, \$echo works!
+      :
+    else
+      # Restart under the correct shell, and then maybe \$echo will work.
+      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
+    fi
+  fi\
+"
+	$echo >> $output "\
+
+  # Find the directory that this script lives in.
+  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
+  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
+
+  # Follow symbolic links until we get to the real thisdir.
+  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
+  while test -n \"\$file\"; do
+    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
+
+    # If there was a directory component, then change thisdir.
+    if test \"x\$destdir\" != \"x\$file\"; then
+      case \"\$destdir\" in
+      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
+      *) thisdir=\"\$thisdir/\$destdir\" ;;
+      esac
+    fi
+
+    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
+    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
+  done
+
+  # Try to get the absolute directory name.
+  absdir=\`cd \"\$thisdir\" && pwd\`
+  test -n \"\$absdir\" && thisdir=\"\$absdir\"
+"
+
+	if test "$fast_install" = yes; then
+	  $echo >> $output "\
+  program=lt-'$outputname'$exeext
+  progdir=\"\$thisdir/$objdir\"
+
+  if test ! -f \"\$progdir/\$program\" || \\
+     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
+       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
+
+    file=\"\$\$-\$program\"
+
+    if test ! -d \"\$progdir\"; then
+      $mkdir \"\$progdir\"
+    else
+      $rm \"\$progdir/\$file\"
+    fi"
+
+	  $echo >> $output "\
+
+    # relink executable if necessary
+    if test -n \"\$relink_command\"; then
+      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
+      else
+	$echo \"\$relink_command_output\" >&2
+	$rm \"\$progdir/\$file\"
+	exit 1
+      fi
+    fi
+
+    $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
+    { $rm \"\$progdir/\$program\";
+      $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
+    $rm \"\$progdir/\$file\"
+  fi"
+	else
+	  $echo >> $output "\
+  program='$outputname'
+  progdir=\"\$thisdir/$objdir\"
+"
+	fi
+
+	$echo >> $output "\
+
+  if test -f \"\$progdir/\$program\"; then"
+
+	# Export our shlibpath_var if we have one.
+	if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
+	  $echo >> $output "\
+    # Add our own library path to $shlibpath_var
+    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
+
+    # Some systems cannot cope with colon-terminated $shlibpath_var
+    # The second colon is a workaround for a bug in BeOS R4 sed
+    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
+
+    export $shlibpath_var
+"
+	fi
+
+	# fixup the dll searchpath if we need to.
+	if test -n "$dllsearchpath"; then
+	  $echo >> $output "\
+    # Add the dll search path components to the executable PATH
+    PATH=$dllsearchpath:\$PATH
+"
+	fi
+
+	$echo >> $output "\
+    if test \"\$libtool_execute_magic\" != \"$magic\"; then
+      # Run the actual program with our arguments.
+"
+	case $host in
+	# Backslashes separate directories on plain windows
+	*-*-mingw | *-*-os2*)
+	  $echo >> $output "\
+      exec \$progdir\\\\\$program \${1+\"\$@\"}
+"
+	  ;;
+
+	*)
+	  $echo >> $output "\
+      exec \$progdir/\$program \${1+\"\$@\"}
+"
+	  ;;
+	esac
+	$echo >> $output "\
+      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
+      exit 1
+    fi
+  else
+    # The program doesn't exist.
+    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
+    \$echo \"This script is just a wrapper for \$program.\" 1>&2
+    $echo \"See the $PACKAGE documentation for more information.\" 1>&2
+    exit 1
+  fi
+fi\
+"
+	chmod +x $output
+      fi
+      exit 0
+      ;;
+    esac
+
+    # See if we need to build an old-fashioned archive.
+    for oldlib in $oldlibs; do
+
+      if test "$build_libtool_libs" = convenience; then
+	oldobjs="$libobjs_save"
+	addlibs="$convenience"
+	build_libtool_libs=no
+      else
+	if test "$build_libtool_libs" = module; then
+	  oldobjs="$libobjs_save"
+	  build_libtool_libs=no
+	else
+	  oldobjs="$old_deplibs $non_pic_objects"
+	fi
+	addlibs="$old_convenience"
+      fi
+
+      if test -n "$addlibs"; then
+	gentop="$output_objdir/${outputname}x"
+	$show "${rm}r $gentop"
+	$run ${rm}r "$gentop"
+	$show "$mkdir $gentop"
+	$run $mkdir "$gentop"
+	status=$?
+	if test "$status" -ne 0 && test ! -d "$gentop"; then
+	  exit $status
+	fi
+	generated="$generated $gentop"
+
+	# Add in members from convenience archives.
+	for xlib in $addlibs; do
+	  # Extract the objects.
+	  case $xlib in
+	  [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+	  *) xabs=`pwd`"/$xlib" ;;
+	  esac
+	  xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+	  xdir="$gentop/$xlib"
+
+	  $show "${rm}r $xdir"
+	  $run ${rm}r "$xdir"
+	  $show "$mkdir $xdir"
+	  $run $mkdir "$xdir"
+	  status=$?
+	  if test "$status" -ne 0 && test ! -d "$xdir"; then
+	    exit $status
+	  fi
+	  # We will extract separately just the conflicting names and we will no
+	  # longer touch any unique names. It is faster to leave these extract
+	  # automatically by $AR in one run.
+	  $show "(cd $xdir && $AR x $xabs)"
+	  $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+	  if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
+	    :
+	  else
+	    $echo "$modename: warning: object name conflicts; renaming object files" 1>&2
+	    $echo "$modename: warning: to ensure that they will not overwrite" 1>&2
+	    $AR t "$xabs" | sort | uniq -cd | while read -r count name
+	    do
+	      i=1
+	      while test "$i" -le "$count"
+	      do
+	       # Put our $i before any first dot (extension)
+	       # Never overwrite any file
+	       name_to="$name"
+	       while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
+	       do
+		 name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
+	       done
+	       $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')"
+	       $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $?
+	       i=`expr $i + 1`
+	      done
+	    done
+	  fi
+
+	  oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP`
+	done
+      fi
+
+      # Do each command in the archive commands.
+      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
+	eval cmds=\"$old_archive_from_new_cmds\"
+      else
+	eval cmds=\"$old_archive_cmds\"
+
+	if len=`expr "X$cmds" : ".*"` &&
+	     test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
+	  :
+	else
+	  # the command line is too long to link in one step, link in parts
+	  $echo "using piecewise archive linking..."
+	  save_RANLIB=$RANLIB
+	  RANLIB=:
+	  objlist=
+	  concat_cmds=
+	  save_oldobjs=$oldobjs
+	  # GNU ar 2.10+ was changed to match POSIX; thus no paths are
+	  # encoded into archives.  This makes 'ar r' malfunction in
+	  # this piecewise linking case whenever conflicting object
+	  # names appear in distinct ar calls; check, warn and compensate.
+	    if (for obj in $save_oldobjs
+	    do
+	      $echo "X$obj" | $Xsed -e 's%^.*/%%'
+	    done | sort | sort -uc >/dev/null 2>&1); then
+	    :
+	  else
+	    $echo "$modename: warning: object name conflicts; overriding AR_FLAGS to 'cq'" 1>&2
+	    $echo "$modename: warning: to ensure that POSIX-compatible ar will work" 1>&2
+	    AR_FLAGS=cq
+	  fi
+	  # Is there a better way of finding the last object in the list?
+	  for obj in $save_oldobjs
+	  do
+	    last_oldobj=$obj
+	  done  
+	  for obj in $save_oldobjs
+	  do
+	    oldobjs="$objlist $obj"
+	    objlist="$objlist $obj"
+	    eval test_cmds=\"$old_archive_cmds\"
+	    if len=`expr "X$test_cmds" : ".*"` &&
+	       test "$len" -le "$max_cmd_len"; then
+	      :
+	    else
+	      # the above command should be used before it gets too long
+	      oldobjs=$objlist
+	      if test "$obj" = "$last_oldobj" ; then
+	        RANLIB=$save_RANLIB
+	      fi  
+	      test -z "$concat_cmds" || concat_cmds=$concat_cmds~
+	      eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
+	      objlist=
+	    fi
+	  done
+	  RANLIB=$save_RANLIB
+	  oldobjs=$objlist
+	  if test "X$oldobjs" = "X" ; then
+	    eval cmds=\"\$concat_cmds\"
+	  else
+	    eval cmds=\"\$concat_cmds~$old_archive_cmds\"
+	  fi
+	fi
+      fi
+      save_ifs="$IFS"; IFS='~'
+      for cmd in $cmds; do
+	IFS="$save_ifs"
+	$show "$cmd"
+	$run eval "$cmd" || exit $?
+      done
+      IFS="$save_ifs"
+    done
+
+    if test -n "$generated"; then
+      $show "${rm}r$generated"
+      $run ${rm}r$generated
+    fi
+
+    # Now create the libtool archive.
+    case $output in
+    *.la)
+      old_library=
+      test "$build_old_libs" = yes && old_library="$libname.$libext"
+      $show "creating $output"
+
+      # Preserve any variables that may affect compiler behavior
+      for var in $variables_saved_for_relink; do
+	if eval test -z \"\${$var+set}\"; then
+	  relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
+	elif eval var_value=\$$var; test -z "$var_value"; then
+	  relink_command="$var=; export $var; $relink_command"
+	else
+	  var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
+	  relink_command="$var=\"$var_value\"; export $var; $relink_command"
+	fi
+      done
+      # Quote the link command for shipping.
+      relink_command="(cd `pwd`; $SHELL $0 --mode=relink $libtool_args @inst_prefix_dir@)"
+      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
+
+      # Only create the output if not a dry run.
+      if test -z "$run"; then
+	for installed in no yes; do
+	  if test "$installed" = yes; then
+	    if test -z "$install_libdir"; then
+	      break
+	    fi
+	    output="$output_objdir/$outputname"i
+	    # Replace all uninstalled libtool libraries with the installed ones
+	    newdependency_libs=
+	    for deplib in $dependency_libs; do
+	      case $deplib in
+	      *.la)
+		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
+		eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+		if test -z "$libdir"; then
+		  $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
+		  exit 1
+		fi
+		newdependency_libs="$newdependency_libs $libdir/$name"
+		;;
+	      *) newdependency_libs="$newdependency_libs $deplib" ;;
+	      esac
+	    done
+	    dependency_libs="$newdependency_libs"
+	    newdlfiles=
+	    for lib in $dlfiles; do
+	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+	      eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+	      if test -z "$libdir"; then
+		$echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+		exit 1
+	      fi
+	      newdlfiles="$newdlfiles $libdir/$name"
+	    done
+	    dlfiles="$newdlfiles"
+	    newdlprefiles=
+	    for lib in $dlprefiles; do
+	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+	      eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+	      if test -z "$libdir"; then
+		$echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+		exit 1
+	      fi
+	      newdlprefiles="$newdlprefiles $libdir/$name"
+	    done
+	    dlprefiles="$newdlprefiles"
+	  fi
+	  $rm $output
+	  # place dlname in correct position for cygwin
+	  tdlname=$dlname
+	  case $host,$output,$installed,$module,$dlname in
+	    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
+	  esac
+	  $echo > $output "\
+# $outputname - a libtool library file
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='$tdlname'
+
+# Names of this library.
+library_names='$library_names'
+
+# The name of the static archive.
+old_library='$old_library'
+
+# Libraries that this one depends upon.
+dependency_libs='$dependency_libs'
+
+# Version information for $libname.
+current=$current
+age=$age
+revision=$revision
+
+# Is this an already installed library?
+installed=$installed
+
+# Should we warn about portability when linking against -modules?
+shouldnotlink=$module
+
+# Files to dlopen/dlpreopen
+dlopen='$dlfiles'
+dlpreopen='$dlprefiles'
+
+# Directory that this library needs to be installed in:
+libdir='$install_libdir'"
+	  if test "$installed" = no && test "$need_relink" = yes; then
+	    $echo >> $output "\
+relink_command=\"$relink_command\""
+	  fi
+	done
+      fi
+
+      # Do a symbolic link so that the libtool archive can be found in
+      # LD_LIBRARY_PATH before the program is installed.
+      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
+      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
+      ;;
+    esac
+    exit 0
+    ;;
+
+  # libtool install mode
+  install)
+    modename="$modename: install"
+
+    # There may be an optional sh(1) argument at the beginning of
+    # install_prog (especially on Windows NT).
+    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
+       # Allow the use of GNU shtool's install command.
+       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
+      # Aesthetically quote it.
+      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
+      case $arg in
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
+	arg="\"$arg\""
+	;;
+      esac
+      install_prog="$arg "
+      arg="$1"
+      shift
+    else
+      install_prog=
+      arg="$nonopt"
+    fi
+
+    # The real first argument should be the name of the installation program.
+    # Aesthetically quote it.
+    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+    case $arg in
+    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
+      arg="\"$arg\""
+      ;;
+    esac
+    install_prog="$install_prog$arg"
+
+    # We need to accept at least all the BSD install flags.
+    dest=
+    files=
+    opts=
+    prev=
+    install_type=
+    isdir=no
+    stripme=
+    for arg
+    do
+      if test -n "$dest"; then
+	files="$files $dest"
+	dest="$arg"
+	continue
+      fi
+
+      case $arg in
+      -d) isdir=yes ;;
+      -f) prev="-f" ;;
+      -g) prev="-g" ;;
+      -m) prev="-m" ;;
+      -o) prev="-o" ;;
+      -s)
+	stripme=" -s"
+	continue
+	;;
+      -*) ;;
+
+      *)
+	# If the previous option needed an argument, then skip it.
+	if test -n "$prev"; then
+	  prev=
+	else
+	  dest="$arg"
+	  continue
+	fi
+	;;
+      esac
+
+      # Aesthetically quote the argument.
+      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+      case $arg in
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
+	arg="\"$arg\""
+	;;
+      esac
+      install_prog="$install_prog $arg"
+    done
+
+    if test -z "$install_prog"; then
+      $echo "$modename: you must specify an install program" 1>&2
+      $echo "$help" 1>&2
+      exit 1
+    fi
+
+    if test -n "$prev"; then
+      $echo "$modename: the \`$prev' option requires an argument" 1>&2
+      $echo "$help" 1>&2
+      exit 1
+    fi
+
+    if test -z "$files"; then
+      if test -z "$dest"; then
+	$echo "$modename: no file or destination specified" 1>&2
+      else
+	$echo "$modename: you must specify a destination" 1>&2
+      fi
+      $echo "$help" 1>&2
+      exit 1
+    fi
+
+    # Strip any trailing slash from the destination.
+    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
+
+    # Check to see that the destination is a directory.
+    test -d "$dest" && isdir=yes
+    if test "$isdir" = yes; then
+      destdir="$dest"
+      destname=
+    else
+      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
+      test "X$destdir" = "X$dest" && destdir=.
+      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
+
+      # Not a directory, so check to see that there is only one file specified.
+      set dummy $files
+      if test "$#" -gt 2; then
+	$echo "$modename: \`$dest' is not a directory" 1>&2
+	$echo "$help" 1>&2
+	exit 1
+      fi
+    fi
+    case $destdir in
+    [\\/]* | [A-Za-z]:[\\/]*) ;;
+    *)
+      for file in $files; do
+	case $file in
+	*.lo) ;;
+	*)
+	  $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
+	  $echo "$help" 1>&2
+	  exit 1
+	  ;;
+	esac
+      done
+      ;;
+    esac
+
+    # This variable tells wrapper scripts just to set variables rather
+    # than running their programs.
+    libtool_install_magic="$magic"
+
+    staticlibs=
+    future_libdirs=
+    current_libdirs=
+    for file in $files; do
+
+      # Do each installation.
+      case $file in
+      *.$libext)
+	# Do the static libraries later.
+	staticlibs="$staticlibs $file"
+	;;
+
+      *.la)
+	# Check to see that this really is a libtool archive.
+	if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+	else
+	  $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
+	  $echo "$help" 1>&2
+	  exit 1
+	fi
+
+	library_names=
+	old_library=
+	relink_command=
+	# If there is no directory component, then add one.
+	case $file in
+	*/* | *\\*) . $file ;;
+	*) . ./$file ;;
+	esac
+
+	# Add the libdir to current_libdirs if it is the destination.
+	if test "X$destdir" = "X$libdir"; then
+	  case "$current_libdirs " in
+	  *" $libdir "*) ;;
+	  *) current_libdirs="$current_libdirs $libdir" ;;
+	  esac
+	else
+	  # Note the libdir as a future libdir.
+	  case "$future_libdirs " in
+	  *" $libdir "*) ;;
+	  *) future_libdirs="$future_libdirs $libdir" ;;
+	  esac
+	fi
+
+	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
+	test "X$dir" = "X$file/" && dir=
+	dir="$dir$objdir"
+
+	if test -n "$relink_command"; then
+	  # Determine the prefix the user has applied to our future dir.
+	  inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
+
+	  # Don't allow the user to place us outside of our expected
+	  # location b/c this prevents finding dependent libraries that
+	  # are installed to the same prefix.
+	  # At present, this check doesn't affect windows .dll's that
+	  # are installed into $libdir/../bin (currently, that works fine)
+	  # but it's something to keep an eye on.
+	  if test "$inst_prefix_dir" = "$destdir"; then
+	    $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
+	    exit 1
+	  fi
+
+	  if test -n "$inst_prefix_dir"; then
+	    # Stick the inst_prefix_dir data into the link command.
+	    relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
+	  else
+	    relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
+	  fi
+
+	  $echo "$modename: warning: relinking \`$file'" 1>&2
+	  $show "$relink_command"
+	  if $run eval "$relink_command"; then :
+	  else
+	    $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
+	    exit 1
+	  fi
+	fi
+
+	# See the names of the shared library.
+	set dummy $library_names
+	if test -n "$2"; then
+	  realname="$2"
+	  shift
+	  shift
+
+	  srcname="$realname"
+	  test -n "$relink_command" && srcname="$realname"T
+
+	  # Install the shared library and build the symlinks.
+	  $show "$install_prog $dir/$srcname $destdir/$realname"
+	  $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
+	  if test -n "$stripme" && test -n "$striplib"; then
+	    $show "$striplib $destdir/$realname"
+	    $run eval "$striplib $destdir/$realname" || exit $?
+	  fi
+
+	  if test "$#" -gt 0; then
+	    # Delete the old symlinks, and create new ones.
+	    for linkname
+	    do
+	      if test "$linkname" != "$realname"; then
+		$show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+		$run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+	      fi
+	    done
+	  fi
+
+	  # Do each command in the postinstall commands.
+	  lib="$destdir/$realname"
+	  eval cmds=\"$postinstall_cmds\"
+	  save_ifs="$IFS"; IFS='~'
+	  for cmd in $cmds; do
+	    IFS="$save_ifs"
+	    $show "$cmd"
+	    $run eval "$cmd" || exit $?
+	  done
+	  IFS="$save_ifs"
+	fi
+
+	# Install the pseudo-library for information purposes.
+	name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+	instname="$dir/$name"i
+	$show "$install_prog $instname $destdir/$name"
+	$run eval "$install_prog $instname $destdir/$name" || exit $?
+
+	# Maybe install the static library, too.
+	test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
+	;;
+
+      *.lo)
+	# Install (i.e. copy) a libtool object.
+
+	# Figure out destination file name, if it wasn't already specified.
+	if test -n "$destname"; then
+	  destfile="$destdir/$destname"
+	else
+	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+	  destfile="$destdir/$destfile"
+	fi
+
+	# Deduce the name of the destination old-style object file.
+	case $destfile in
+	*.lo)
+	  staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
+	  ;;
+	*.$objext)
+	  staticdest="$destfile"
+	  destfile=
+	  ;;
+	*)
+	  $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
+	  $echo "$help" 1>&2
+	  exit 1
+	  ;;
+	esac
+
+	# Install the libtool object if requested.
+	if test -n "$destfile"; then
+	  $show "$install_prog $file $destfile"
+	  $run eval "$install_prog $file $destfile" || exit $?
+	fi
+
+	# Install the old object if enabled.
+	if test "$build_old_libs" = yes; then
+	  # Deduce the name of the old-style object file.
+	  staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
+
+	  $show "$install_prog $staticobj $staticdest"
+	  $run eval "$install_prog \$staticobj \$staticdest" || exit $?
+	fi
+	exit 0
+	;;
+
+      *)
+	# Figure out destination file name, if it wasn't already specified.
+	if test -n "$destname"; then
+	  destfile="$destdir/$destname"
+	else
+	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+	  destfile="$destdir/$destfile"
+	fi
+
+	# If the file is missing, and there is a .exe on the end, strip it
+	# because it is most likely a libtool script we actually want to
+	# install
+	stripped_ext=""
+	case $file in
+	  *.exe)
+	    if test ! -f "$file"; then
+	      file=`$echo $file|${SED} 's,.exe$,,'`
+	      stripped_ext=".exe"
+	    fi
+	    ;;
+	esac
+
+	# Do a test to see if this is really a libtool program.
+	case $host in
+	*cygwin*|*mingw*)
+	    wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
+	    ;;
+	*)
+	    wrapper=$file
+	    ;;
+	esac
+	if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then
+	  notinst_deplibs=
+	  relink_command=
+
+	  # To insure that "foo" is sourced, and not "foo.exe",
+	  # finese the cygwin/MSYS system by explicitly sourcing "foo."
+	  # which disallows the automatic-append-.exe behavior.
+	  case $build in
+	  *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
+	  *) wrapperdot=${wrapper} ;;
+	  esac
+	  # If there is no directory component, then add one.
+	  case $file in
+	  */* | *\\*) . ${wrapperdot} ;;
+	  *) . ./${wrapperdot} ;;
+	  esac
+
+	  # Check the variables that should have been set.
+	  if test -z "$notinst_deplibs"; then
+	    $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2
+	    exit 1
+	  fi
+
+	  finalize=yes
+	  for lib in $notinst_deplibs; do
+	    # Check to see that each library is installed.
+	    libdir=
+	    if test -f "$lib"; then
+	      # If there is no directory component, then add one.
+	      case $lib in
+	      */* | *\\*) . $lib ;;
+	      *) . ./$lib ;;
+	      esac
+	    fi
+	    libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
+	    if test -n "$libdir" && test ! -f "$libfile"; then
+	      $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
+	      finalize=no
+	    fi
+	  done
+
+	  relink_command=
+	  # To insure that "foo" is sourced, and not "foo.exe",
+	  # finese the cygwin/MSYS system by explicitly sourcing "foo."
+	  # which disallows the automatic-append-.exe behavior.
+	  case $build in
+	  *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
+	  *) wrapperdot=${wrapper} ;;
+	  esac
+	  # If there is no directory component, then add one.
+	  case $file in
+	  */* | *\\*) . ${wrapperdot} ;;
+	  *) . ./${wrapperdot} ;;
+	  esac
+
+	  outputname=
+	  if test "$fast_install" = no && test -n "$relink_command"; then
+	    if test "$finalize" = yes && test -z "$run"; then
+	      tmpdir="/tmp"
+	      test -n "$TMPDIR" && tmpdir="$TMPDIR"
+	      tmpdir="$tmpdir/libtool-$$"
+	      if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
+	      else
+		$echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
+		continue
+	      fi
+	      file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
+	      outputname="$tmpdir/$file"
+	      # Replace the output file specification.
+	      relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
+
+	      $show "$relink_command"
+	      if $run eval "$relink_command"; then :
+	      else
+		$echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
+		${rm}r "$tmpdir"
+		continue
+	      fi
+	      file="$outputname"
+	    else
+	      $echo "$modename: warning: cannot relink \`$file'" 1>&2
+	    fi
+	  else
+	    # Install the binary that we compiled earlier.
+	    file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
+	  fi
+	fi
+
+	# remove .exe since cygwin /usr/bin/install will append another
+	# one anyways
+	case $install_prog,$host in
+	*/usr/bin/install*,*cygwin*)
+	  case $file:$destfile in
+	  *.exe:*.exe)
+	    # this is ok
+	    ;;
+	  *.exe:*)
+	    destfile=$destfile.exe
+	    ;;
+	  *:*.exe)
+	    destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
+	    ;;
+	  esac
+	  ;;
+	esac
+	$show "$install_prog$stripme $file $destfile"
+	$run eval "$install_prog\$stripme \$file \$destfile" || exit $?
+	test -n "$outputname" && ${rm}r "$tmpdir"
+	;;
+      esac
+    done
+
+    for file in $staticlibs; do
+      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+
+      # Set up the ranlib parameters.
+      oldlib="$destdir/$name"
+
+      $show "$install_prog $file $oldlib"
+      $run eval "$install_prog \$file \$oldlib" || exit $?
+
+      if test -n "$stripme" && test -n "$striplib"; then
+	$show "$old_striplib $oldlib"
+	$run eval "$old_striplib $oldlib" || exit $?
+      fi
+
+      # Do each command in the postinstall commands.
+      eval cmds=\"$old_postinstall_cmds\"
+      save_ifs="$IFS"; IFS='~'
+      for cmd in $cmds; do
+	IFS="$save_ifs"
+	$show "$cmd"
+	$run eval "$cmd" || exit $?
+      done
+      IFS="$save_ifs"
+    done
+
+    if test -n "$future_libdirs"; then
+      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
+    fi
+
+    if test -n "$current_libdirs"; then
+      # Maybe just do a dry run.
+      test -n "$run" && current_libdirs=" -n$current_libdirs"
+      exec_cmd='$SHELL $0 --finish$current_libdirs'
+    else
+      exit 0
+    fi
+    ;;
+
+  # libtool finish mode
+  finish)
+    modename="$modename: finish"
+    libdirs="$nonopt"
+    admincmds=
+
+    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
+      for dir
+      do
+	libdirs="$libdirs $dir"
+      done
+
+      for libdir in $libdirs; do
+	if test -n "$finish_cmds"; then
+	  # Do each command in the finish commands.
+	  eval cmds=\"$finish_cmds\"
+	  save_ifs="$IFS"; IFS='~'
+	  for cmd in $cmds; do
+	    IFS="$save_ifs"
+	    $show "$cmd"
+	    $run eval "$cmd" || admincmds="$admincmds
+       $cmd"
+	  done
+	  IFS="$save_ifs"
+	fi
+	if test -n "$finish_eval"; then
+	  # Do the single finish_eval.
+	  eval cmds=\"$finish_eval\"
+	  $run eval "$cmds" || admincmds="$admincmds
+       $cmds"
+	fi
+      done
+    fi
+
+    # Exit here if they wanted silent mode.
+    test "$show" = : && exit 0
+
+    $echo "----------------------------------------------------------------------"
+    $echo "Libraries have been installed in:"
+    for libdir in $libdirs; do
+      $echo "   $libdir"
+    done
+    $echo
+    $echo "If you ever happen to want to link against installed libraries"
+    $echo "in a given directory, LIBDIR, you must either use libtool, and"
+    $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
+    $echo "flag during linking and do at least one of the following:"
+    if test -n "$shlibpath_var"; then
+      $echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
+      $echo "     during execution"
+    fi
+    if test -n "$runpath_var"; then
+      $echo "   - add LIBDIR to the \`$runpath_var' environment variable"
+      $echo "     during linking"
+    fi
+    if test -n "$hardcode_libdir_flag_spec"; then
+      libdir=LIBDIR
+      eval flag=\"$hardcode_libdir_flag_spec\"
+
+      $echo "   - use the \`$flag' linker flag"
+    fi
+    if test -n "$admincmds"; then
+      $echo "   - have your system administrator run these commands:$admincmds"
+    fi
+    if test -f /etc/ld.so.conf; then
+      $echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
+    fi
+    $echo
+    $echo "See any operating system documentation about shared libraries for"
+    $echo "more information, such as the ld(1) and ld.so(8) manual pages."
+    $echo "----------------------------------------------------------------------"
+    exit 0
+    ;;
+
+  # libtool execute mode
+  execute)
+    modename="$modename: execute"
+
+    # The first argument is the command name.
+    cmd="$nonopt"
+    if test -z "$cmd"; then
+      $echo "$modename: you must specify a COMMAND" 1>&2
+      $echo "$help"
+      exit 1
+    fi
+
+    # Handle -dlopen flags immediately.
+    for file in $execute_dlfiles; do
+      if test ! -f "$file"; then
+	$echo "$modename: \`$file' is not a file" 1>&2
+	$echo "$help" 1>&2
+	exit 1
+      fi
+
+      dir=
+      case $file in
+      *.la)
+	# Check to see that this really is a libtool archive.
+	if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+	else
+	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+	  $echo "$help" 1>&2
+	  exit 1
+	fi
+
+	# Read the libtool library.
+	dlname=
+	library_names=
+
+	# If there is no directory component, then add one.
+	case $file in
+	*/* | *\\*) . $file ;;
+	*) . ./$file ;;
+	esac
+
+	# Skip this library if it cannot be dlopened.
+	if test -z "$dlname"; then
+	  # Warn if it was a shared library.
+	  test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
+	  continue
+	fi
+
+	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+	test "X$dir" = "X$file" && dir=.
+
+	if test -f "$dir/$objdir/$dlname"; then
+	  dir="$dir/$objdir"
+	else
+	  $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
+	  exit 1
+	fi
+	;;
+
+      *.lo)
+	# Just add the directory containing the .lo file.
+	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+	test "X$dir" = "X$file" && dir=.
+	;;
+
+      *)
+	$echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
+	continue
+	;;
+      esac
+
+      # Get the absolute pathname.
+      absdir=`cd "$dir" && pwd`
+      test -n "$absdir" && dir="$absdir"
+
+      # Now add the directory to shlibpath_var.
+      if eval "test -z \"\$$shlibpath_var\""; then
+	eval "$shlibpath_var=\"\$dir\""
+      else
+	eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
+      fi
+    done
+
+    # This variable tells wrapper scripts just to set shlibpath_var
+    # rather than running their programs.
+    libtool_execute_magic="$magic"
+
+    # Check if any of the arguments is a wrapper script.
+    args=
+    for file
+    do
+      case $file in
+      -*) ;;
+      *)
+	# Do a test to see if this is really a libtool program.
+	if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+	  # If there is no directory component, then add one.
+	  case $file in
+	  */* | *\\*) . $file ;;
+	  *) . ./$file ;;
+	  esac
+
+	  # Transform arg to wrapped name.
+	  file="$progdir/$program"
+	fi
+	;;
+      esac
+      # Quote arguments (to preserve shell metacharacters).
+      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
+      args="$args \"$file\""
+    done
+
+    if test -z "$run"; then
+      if test -n "$shlibpath_var"; then
+	# Export the shlibpath_var.
+	eval "export $shlibpath_var"
+      fi
+
+      # Restore saved environment variables
+      if test "${save_LC_ALL+set}" = set; then
+	LC_ALL="$save_LC_ALL"; export LC_ALL
+      fi
+      if test "${save_LANG+set}" = set; then
+	LANG="$save_LANG"; export LANG
+      fi
+
+      # Now prepare to actually exec the command.
+      exec_cmd="\$cmd$args"
+    else
+      # Display what would be done.
+      if test -n "$shlibpath_var"; then
+	eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
+	$echo "export $shlibpath_var"
+      fi
+      $echo "$cmd$args"
+      exit 0
+    fi
+    ;;
+
+  # libtool clean and uninstall mode
+  clean | uninstall)
+    modename="$modename: $mode"
+    rm="$nonopt"
+    files=
+    rmforce=
+    exit_status=0
+
+    # This variable tells wrapper scripts just to set variables rather
+    # than running their programs.
+    libtool_install_magic="$magic"
+
+    for arg
+    do
+      case $arg in
+      -f) rm="$rm $arg"; rmforce=yes ;;
+      -*) rm="$rm $arg" ;;
+      *) files="$files $arg" ;;
+      esac
+    done
+
+    if test -z "$rm"; then
+      $echo "$modename: you must specify an RM program" 1>&2
+      $echo "$help" 1>&2
+      exit 1
+    fi
+
+    rmdirs=
+
+    origobjdir="$objdir"
+    for file in $files; do
+      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+      if test "X$dir" = "X$file"; then
+	dir=.
+	objdir="$origobjdir"
+      else
+	objdir="$dir/$origobjdir"
+      fi
+      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+      test "$mode" = uninstall && objdir="$dir"
+
+      # Remember objdir for removal later, being careful to avoid duplicates
+      if test "$mode" = clean; then
+	case " $rmdirs " in
+	  *" $objdir "*) ;;
+	  *) rmdirs="$rmdirs $objdir" ;;
+	esac
+      fi
+
+      # Don't error if the file doesn't exist and rm -f was used.
+      if (test -L "$file") >/dev/null 2>&1 \
+	|| (test -h "$file") >/dev/null 2>&1 \
+	|| test -f "$file"; then
+	:
+      elif test -d "$file"; then
+	exit_status=1
+	continue
+      elif test "$rmforce" = yes; then
+	continue
+      fi
+
+      rmfiles="$file"
+
+      case $name in
+      *.la)
+	# Possibly a libtool archive, so verify it.
+	if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+	  . $dir/$name
+
+	  # Delete the libtool libraries and symlinks.
+	  for n in $library_names; do
+	    rmfiles="$rmfiles $objdir/$n"
+	  done
+	  test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
+	  test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
+
+	  if test "$mode" = uninstall; then
+	    if test -n "$library_names"; then
+	      # Do each command in the postuninstall commands.
+	      eval cmds=\"$postuninstall_cmds\"
+	      save_ifs="$IFS"; IFS='~'
+	      for cmd in $cmds; do
+		IFS="$save_ifs"
+		$show "$cmd"
+		$run eval "$cmd"
+		if test "$?" -ne 0 && test "$rmforce" != yes; then
+		  exit_status=1
+		fi
+	      done
+	      IFS="$save_ifs"
+	    fi
+
+	    if test -n "$old_library"; then
+	      # Do each command in the old_postuninstall commands.
+	      eval cmds=\"$old_postuninstall_cmds\"
+	      save_ifs="$IFS"; IFS='~'
+	      for cmd in $cmds; do
+		IFS="$save_ifs"
+		$show "$cmd"
+		$run eval "$cmd"
+		if test "$?" -ne 0 && test "$rmforce" != yes; then
+		  exit_status=1
+		fi
+	      done
+	      IFS="$save_ifs"
+	    fi
+	    # FIXME: should reinstall the best remaining shared library.
+	  fi
+	fi
+	;;
+
+      *.lo)
+	# Possibly a libtool object, so verify it.
+	if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+
+	  # Read the .lo file
+	  . $dir/$name
+
+	  # Add PIC object to the list of files to remove.
+	  if test -n "$pic_object" \
+	     && test "$pic_object" != none; then
+	    rmfiles="$rmfiles $dir/$pic_object"
+	  fi
+
+	  # Add non-PIC object to the list of files to remove.
+	  if test -n "$non_pic_object" \
+	     && test "$non_pic_object" != none; then
+	    rmfiles="$rmfiles $dir/$non_pic_object"
+	  fi
+	fi
+	;;
+
+      *)
+	if test "$mode" = clean ; then
+	  noexename=$name
+	  case $file in
+	  *.exe) 
+	    file=`$echo $file|${SED} 's,.exe$,,'`
+	    noexename=`$echo $name|${SED} 's,.exe$,,'`
+	    # $file with .exe has already been added to rmfiles,
+	    # add $file without .exe
+	    rmfiles="$rmfiles $file"
+	    ;;
+	  esac
+	  # Do a test to see if this is a libtool program.
+	  if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+	    relink_command=
+	    . $dir/$noexename
+
+	    # note $name still contains .exe if it was in $file originally
+	    # as does the version of $file that was added into $rmfiles
+	    rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
+	    if test "$fast_install" = yes && test -n "$relink_command"; then
+	      rmfiles="$rmfiles $objdir/lt-$name"
+	    fi
+	    if test "X$noexename" != "X$name" ; then
+	      rmfiles="$rmfiles $objdir/lt-${noexename}.c"
+	    fi
+	  fi
+	fi
+	;;
+      esac
+      $show "$rm $rmfiles"
+      $run $rm $rmfiles || exit_status=1
+    done
+    objdir="$origobjdir"
+
+    # Try to remove the ${objdir}s in the directories where we deleted files
+    for dir in $rmdirs; do
+      if test -d "$dir"; then
+	$show "rmdir $dir"
+	$run rmdir $dir >/dev/null 2>&1
+      fi
+    done
+
+    exit $exit_status
+    ;;
+
+  "")
+    $echo "$modename: you must specify a MODE" 1>&2
+    $echo "$generic_help" 1>&2
+    exit 1
+    ;;
+  esac
+
+  if test -z "$exec_cmd"; then
+    $echo "$modename: invalid operation mode \`$mode'" 1>&2
+    $echo "$generic_help" 1>&2
+    exit 1
+  fi
+fi # test -z "$show_help"
+
+if test -n "$exec_cmd"; then
+  eval exec $exec_cmd
+  exit 1
+fi
+
+# We need to display help for each of the modes.
+case $mode in
+"") $echo \
+"Usage: $modename [OPTION]... [MODE-ARG]...
+
+Provide generalized library-building support services.
+
+    --config          show all configuration variables
+    --debug           enable verbose shell tracing
+-n, --dry-run         display commands without modifying any files
+    --features        display basic configuration information and exit
+    --finish          same as \`--mode=finish'
+    --help            display this help message and exit
+    --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
+    --quiet           same as \`--silent'
+    --silent          don't print informational messages
+    --tag=TAG         use configuration variables from tag TAG
+    --version         print version information
+
+MODE must be one of the following:
+
+      clean           remove files from the build directory
+      compile         compile a source file into a libtool object
+      execute         automatically set library path, then run a program
+      finish          complete the installation of libtool libraries
+      install         install libraries or executables
+      link            create a library or an executable
+      uninstall       remove libraries from an installed directory
+
+MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
+a more detailed description of MODE.
+
+Report bugs to <bug-libtool@gnu.org>."
+  exit 0
+  ;;
+
+clean)
+  $echo \
+"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
+
+Remove files from the build directory.
+
+RM is the name of the program to use to delete files associated with each FILE
+(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
+to RM.
+
+If FILE is a libtool library, object or program, all the files associated
+with it are deleted. Otherwise, only FILE itself is deleted using RM."
+  ;;
+
+compile)
+  $echo \
+"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
+
+Compile a source file into a libtool library object.
+
+This mode accepts the following additional options:
+
+  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
+  -prefer-pic       try to building PIC objects only
+  -prefer-non-pic   try to building non-PIC objects only
+  -static           always build a \`.o' file suitable for static linking
+
+COMPILE-COMMAND is a command to be used in creating a \`standard' object file
+from the given SOURCEFILE.
+
+The output file name is determined by removing the directory component from
+SOURCEFILE, then substituting the C source code suffix \`.c' with the
+library object suffix, \`.lo'."
+  ;;
+
+execute)
+  $echo \
+"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
+
+Automatically set library path, then run a program.
+
+This mode accepts the following additional options:
+
+  -dlopen FILE      add the directory containing FILE to the library path
+
+This mode sets the library path environment variable according to \`-dlopen'
+flags.
+
+If any of the ARGS are libtool executable wrappers, then they are translated
+into their corresponding uninstalled binary, and any of their required library
+directories are added to the library path.
+
+Then, COMMAND is executed, with ARGS as arguments."
+  ;;
+
+finish)
+  $echo \
+"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
+
+Complete the installation of libtool libraries.
+
+Each LIBDIR is a directory that contains libtool libraries.
+
+The commands that this mode executes may require superuser privileges.  Use
+the \`--dry-run' option if you just want to see what would be executed."
+  ;;
+
+install)
+  $echo \
+"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
+
+Install executables or libraries.
+
+INSTALL-COMMAND is the installation command.  The first component should be
+either the \`install' or \`cp' program.
+
+The rest of the components are interpreted as arguments to that command (only
+BSD-compatible install options are recognized)."
+  ;;
+
+link)
+  $echo \
+"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
+
+Link object files or libraries together to form another library, or to
+create an executable program.
+
+LINK-COMMAND is a command using the C compiler that you would use to create
+a program from several object files.
+
+The following components of LINK-COMMAND are treated specially:
+
+  -all-static       do not do any dynamic linking at all
+  -avoid-version    do not add a version suffix if possible
+  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
+  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
+  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
+  -export-symbols SYMFILE
+		    try to export only the symbols listed in SYMFILE
+  -export-symbols-regex REGEX
+		    try to export only the symbols matching REGEX
+  -LLIBDIR          search LIBDIR for required installed libraries
+  -lNAME            OUTPUT-FILE requires the installed library libNAME
+  -module           build a library that can dlopened
+  -no-fast-install  disable the fast-install mode
+  -no-install       link a not-installable executable
+  -no-undefined     declare that a library does not refer to external symbols
+  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
+  -objectlist FILE  Use a list of object files found in FILE to specify objects
+  -release RELEASE  specify package release information
+  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
+  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
+  -static           do not do any dynamic linking of libtool libraries
+  -version-info CURRENT[:REVISION[:AGE]]
+		    specify library version info [each variable defaults to 0]
+
+All other options (arguments beginning with \`-') are ignored.
+
+Every other argument is treated as a filename.  Files ending in \`.la' are
+treated as uninstalled libtool libraries, other files are standard or library
+object files.
+
+If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
+only library objects (\`.lo' files) may be specified, and \`-rpath' is
+required, except when creating a convenience library.
+
+If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
+using \`ar' and \`ranlib', or on Windows using \`lib'.
+
+If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
+is created, otherwise an executable program is created."
+  ;;
+
+uninstall)
+  $echo \
+"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
+
+Remove libraries from an installation directory.
+
+RM is the name of the program to use to delete files associated with each FILE
+(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
+to RM.
+
+If FILE is a libtool library, all the files associated with it are deleted.
+Otherwise, only FILE itself is deleted using RM."
+  ;;
+
+*)
+  $echo "$modename: invalid operation mode \`$mode'" 1>&2
+  $echo "$help" 1>&2
+  exit 1
+  ;;
+esac
+
+$echo
+$echo "Try \`$modename --help' for more information about other modes."
+
+exit 0
+
+# The TAGs below are defined such that we never get into a situation
+# in which we disable both kinds of libraries.  Given conflicting
+# choices, we go for a static library, that is the most portable,
+# since we can't tell whether shared libraries were disabled because
+# the user asked for that or because the platform doesn't support
+# them.  This is particularly important on AIX, because we don't
+# support having both static and shared libraries enabled at the same
+# time on that platform, so we default to a shared-only configuration.
+# If a disable-shared tag is given, we'll fallback to a static-only
+# configuration.  But we'll never go from static-only to shared-only.
+
+# ### BEGIN LIBTOOL TAG CONFIG: disable-shared
+build_libtool_libs=no
+build_old_libs=yes
+# ### END LIBTOOL TAG CONFIG: disable-shared
+
+# ### BEGIN LIBTOOL TAG CONFIG: disable-static
+build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
+# ### END LIBTOOL TAG CONFIG: disable-static
+
+# Local Variables:
+# mode:shell-script
+# sh-indentation:2
+# End:
diff --git a/src/.cvsignore b/src/.cvsignore
new file mode 100644
index 0000000..dc3152e
--- /dev/null
+++ b/src/.cvsignore
@@ -0,0 +1,6 @@
+.deps
+Makefile
+Makefile.in
+grrobot
+
+
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..8da7aeb
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,15 @@
+bin_PROGRAMS = grrobot
+
+grrobot_SOURCES = \
+	args.c \
+	args.h \
+	grrobot.c \
+	grr_board_view.c \
+	grr_board_view.h
+
+INCLUDES = $(GRROBOT_CFLAGS) -Wall
+LDFLAGS = $(GRROBOT_LIBS)
+
+
+
+
diff --git a/src/args.c b/src/args.c
new file mode 100644
index 0000000..98aa80c
--- /dev/null
+++ b/src/args.c
@@ -0,0 +1,106 @@
+/* args.c - Parse command-line arguments for grrobot using argp
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#include <stdlib.h>
+#include <argp.h>
+
+#include "args.h"
+
+const char *argp_program_version = "grrobot " VERSION;
+
+const char *argp_program_bug_address = "<carl@theworths.org>";
+
+static char doc[] = "grrobot - Ricochet Robot using GTK+ and Xr";
+
+/* XXX: SAMPLE: */
+static char args_doc[] = "<file>";
+
+static struct argp_option options[] = {
+    /* name,		key, arg,	flags, doc */
+    {"host",		'h', "HOST", 0, "Host running RR server"},
+    {"port",		'p', "PORT", 0, "Port of server"},
+    {"user",		'u', "USERNAME", 0, "Username for conection"},
+    {"game",		'g', "GAME", 0, "Game to join"},
+    { 0 }
+};
+
+static error_t
+parse_opt (int key, char *arg, struct argp_state *state)
+{
+    struct args *args = state->input;
+
+    switch (key) {
+    case 'h':
+	args->host = arg;
+	break;
+    case 'p':
+	args->port = arg;
+	break;
+    case 'u':
+	args->user = arg;
+	break;
+    case 'g':
+	args->game = arg;
+	break;
+
+    case ARGP_KEY_ARG:
+	argp_usage (state);
+	break;
+
+/*
+    case ARGP_KEY_END:
+	if (state->arg_num < 1)
+	    argp_usage (state);
+	break;
+*/
+
+    default:
+	return ARGP_ERR_UNKNOWN;
+    }
+
+    return 0;
+}
+	    
+static struct argp argp = { options, parse_opt, args_doc, doc };
+
+error_t
+args_parse(args_t *args, int argc, char *argv[])
+{
+    args->host = getenv ("RR_HOST");
+    if (args->host == NULL)
+	args->host = ARGS_HOST_DEFAULT;
+    args->port = getenv ("RR_PORT");
+    if (args->port == NULL)
+	args->port = ARGS_PORT_DEFAULT;
+    args->user = getenv ("USER");
+    if (args->user == NULL)
+	args->user = ARGS_USER_DEFAULT;
+    args->game = getenv ("RR_GAME");
+    if (args->game == NULL)
+	args->game = ARGS_GAME_DEFAULT;
+
+    return argp_parse (&argp, argc, argv, 0, 0, args);
+}
diff --git a/src/args.h b/src/args.h
new file mode 100644
index 0000000..7799c48
--- /dev/null
+++ b/src/args.h
@@ -0,0 +1,52 @@
+/* args.h - Parse command-line arguments for grrobot using argp
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#ifndef ARGS_H
+#define ARGS_H
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <argp.h>
+
+#define ARGS_HOST_DEFAULT "rr.nickle.org"
+#define ARGS_PORT_DEFAULT "5252"
+#define ARGS_USER_DEFAULT "grrobot"
+#define ARGS_GAME_DEFAULT "game"
+
+typedef struct args
+{
+    char *host;
+    char *port;
+    char *user;
+    char *game;
+} args_t;
+
+error_t
+args_parse(args_t *args, int argc, char *argv[]);
+
+#endif
diff --git a/src/grr_board_view.c b/src/grr_board_view.c
new file mode 100644
index 0000000..6e71a0f
--- /dev/null
+++ b/src/grr_board_view.c
@@ -0,0 +1,764 @@
+/* grr_board_view - GTK+ widget for displaying an rr_board
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#include <Xr.h>
+#include <xsvg.h>
+
+#include <math.h>
+#include <stdio.h>
+#include <gtk/gtkmain.h>
+#include <gtk/gtksignal.h>
+#include <gdk/gdkx.h>
+
+#include "grr_board_view.h"
+
+#define SCROLL_DELAY_LENGTH  300
+#define GRR_BOARD_VIEW_DEFAULT_SIZE 100
+
+#define GRR_SVG_ASSUMED_WIDTH 32.0
+#define GRR_SVG_ASSUMED_HEIGHT 32.0
+
+#define GRR_CELL_SVG "svg/cell.svg"
+#define GRR_WALL_SVG "svg/wall.svg"
+
+#define GRR_ROBOT_BLUE_SVG "svg/robot_blue.svg"
+#define GRR_ROBOT_GREEN_SVG "svg/robot_green.svg"
+#define GRR_ROBOT_RED_SVG "svg/robot_red.svg"
+#define GRR_ROBOT_YELLOW_SVG "svg/robot_yellow.svg"
+
+#define GRR_TARGET_BLUE_CIRCLE_SVG "svg/target_blue_circle.svg"
+#define GRR_TARGET_BLUE_OCTAGON_SVG "svg/target_blue_octagon.svg"
+#define GRR_TARGET_BLUE_SQUARE_SVG "svg/target_blue_square.svg"
+#define GRR_TARGET_BLUE_TRIANGLE_SVG "svg/target_blue_triangle.svg"
+
+#define GRR_TARGET_GREEN_CIRCLE_SVG "svg/target_green_circle.svg"
+#define GRR_TARGET_GREEN_OCTAGON_SVG "svg/target_green_octagon.svg"
+#define GRR_TARGET_GREEN_SQUARE_SVG "svg/target_green_square.svg"
+#define GRR_TARGET_GREEN_TRIANGLE_SVG "svg/target_green_triangle.svg"
+
+#define GRR_TARGET_RED_CIRCLE_SVG "svg/target_red_circle.svg"
+#define GRR_TARGET_RED_OCTAGON_SVG "svg/target_red_octagon.svg"
+#define GRR_TARGET_RED_SQUARE_SVG "svg/target_red_square.svg"
+#define GRR_TARGET_RED_TRIANGLE_SVG "svg/target_red_triangle.svg"
+
+#define GRR_TARGET_YELLOW_CIRCLE_SVG "svg/target_yellow_circle.svg"
+#define GRR_TARGET_YELLOW_OCTAGON_SVG "svg/target_yellow_octagon.svg"
+#define GRR_TARGET_YELLOW_SQUARE_SVG "svg/target_yellow_square.svg"
+#define GRR_TARGET_YELLOW_TRIANGLE_SVG "svg/target_yellow_triangle.svg"
+
+#define GRR_TARGET_WHIRL_SVG "svg/target_whirl.svg"
+
+
+/* Forward declarations */
+
+static void grr_board_view_class_init               (grr_board_view_class_t    *klass);
+static void grr_board_view_init                     (grr_board_view_t         *view);
+static void grr_board_view_destroy                  (GtkObject        *object);
+static void grr_board_view_realize                  (GtkWidget        *widget);
+static void grr_board_view_size_request             (GtkWidget      *widget,
+					       GtkRequisition *requisition);
+static void grr_board_view_size_allocate            (GtkWidget     *widget,
+					       GtkAllocation *allocation);
+static gint grr_board_view_expose                   (GtkWidget        *widget,
+						GdkEventExpose   *event);
+static gint grr_board_view_button_press             (GtkWidget        *widget,
+						GdkEventButton   *event);
+static gint grr_board_view_button_release           (GtkWidget        *widget,
+						GdkEventButton   *event);
+static gint grr_board_view_motion_notify            (GtkWidget        *widget,
+						GdkEventMotion   *event);
+static gint grr_board_view_timer                    (grr_board_view_t         *view);
+
+static void grr_board_view_update_mouse             (grr_board_view_t *view, gint x, gint y);
+static void grr_board_view_update                   (grr_board_view_t *view);
+
+/* Local data */
+
+static GtkWidgetClass *parent_class = NULL;
+
+GType
+grr_board_view_get_type ()
+{
+  static GType view_type = 0;
+
+  if (!view_type)
+    {
+      static const GTypeInfo view_info =
+      {
+	sizeof (grr_board_view_class_t),
+	NULL,
+	NULL,
+	(GClassInitFunc) grr_board_view_class_init,
+	NULL,
+	NULL,
+	sizeof (grr_board_view_t),
+        0,
+	(GInstanceInitFunc) grr_board_view_init,
+      };
+
+      view_type = g_type_register_static (GTK_TYPE_WIDGET, "grr_board_view", &view_info, 0);
+    }
+
+  return view_type;
+}
+
+static void
+grr_board_view_class_init (grr_board_view_class_t *class)
+{
+  GtkObjectClass *object_class;
+  GtkWidgetClass *widget_class;
+
+  object_class = (GtkObjectClass*) class;
+  widget_class = (GtkWidgetClass*) class;
+
+  parent_class = gtk_type_class (gtk_widget_get_type ());
+
+  object_class->destroy = grr_board_view_destroy;
+
+  widget_class->realize = grr_board_view_realize;
+  widget_class->expose_event = grr_board_view_expose;
+  widget_class->size_request = grr_board_view_size_request;
+  widget_class->size_allocate = grr_board_view_size_allocate;
+  widget_class->button_press_event = grr_board_view_button_press;
+  widget_class->button_release_event = grr_board_view_button_release;
+  widget_class->motion_notify_event = grr_board_view_motion_notify;
+}
+
+static void
+grr_board_view_init (grr_board_view_t *view)
+{
+    view->board = NULL;
+    view->owns_board = 0;
+    
+    view->button = 0;
+    view->policy = GTK_UPDATE_CONTINUOUS;
+    view->timer = 0;
+    view->radius = 0;
+    view->pointer_width = 0;
+    view->angle = 0.0;
+    view->old_value = 0.0;
+    view->old_lower = 0.0;
+    view->old_upper = 0.0;
+}
+
+GtkWidget*
+grr_board_view_new (rr_board_t *board)
+{
+    grr_board_view_t *view;
+    
+    view = g_object_new (grr_board_view_get_type (), NULL);
+
+    if (board == NULL) {
+	board = rr_board_create (16, 16);
+	view->owns_board = 1;
+    }
+
+    grr_board_view_set_board (view, board);
+
+    return GTK_WIDGET (view);
+}
+
+static void
+grr_board_view_destroy (GtkObject *object)
+{
+    grr_board_view_t *view;
+
+    g_return_if_fail (object != NULL);
+    g_return_if_fail (GRR_IS_BOARD_VIEW (object));
+
+    view = GRR_BOARD_VIEW (object);
+
+    rr_board_destroy (view->board);
+
+    if (view->board && view->owns_board) {
+	rr_board_destroy (view->board);
+	view->board = NULL;
+    }
+    
+    if (GTK_OBJECT_CLASS (parent_class)->destroy)
+	(* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
+}
+
+void
+grr_board_view_set_board (grr_board_view_t      *view,
+			  rr_board_t *board)
+{
+    g_return_if_fail (view != NULL);
+    g_return_if_fail (GRR_IS_BOARD_VIEW (view));
+
+    view->board = board;
+
+    grr_board_view_update (view);
+}
+
+static void
+grr_board_view_realize (GtkWidget *widget)
+{
+  grr_board_view_t *view;
+  GdkWindowAttr attributes;
+  gint attributes_mask;
+
+  g_return_if_fail (widget != NULL);
+  g_return_if_fail (GRR_IS_BOARD_VIEW (widget));
+
+  GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
+  view = GRR_BOARD_VIEW (widget);
+
+  attributes.x = widget->allocation.x;
+  attributes.y = widget->allocation.y;
+  attributes.width = widget->allocation.width;
+  attributes.height = widget->allocation.height;
+  attributes.wclass = GDK_INPUT_OUTPUT;
+  attributes.window_type = GDK_WINDOW_CHILD;
+  attributes.event_mask = gtk_widget_get_events (widget) | 
+    GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | 
+    GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK |
+    GDK_POINTER_MOTION_HINT_MASK;
+  attributes.visual = gtk_widget_get_visual (widget);
+  attributes.colormap = gtk_widget_get_colormap (widget);
+
+  attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
+  widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask);
+
+  widget->style = gtk_style_attach (widget->style, widget->window);
+
+  gdk_window_set_user_data (widget->window, widget);
+
+  gtk_style_set_background (widget->style, widget->window, GTK_STATE_ACTIVE);
+}
+
+static void 
+grr_board_view_size_request (GtkWidget      *widget,
+		       GtkRequisition *requisition)
+{
+  requisition->width = GRR_BOARD_VIEW_DEFAULT_SIZE;
+  requisition->height = GRR_BOARD_VIEW_DEFAULT_SIZE;
+}
+
+static void
+grr_board_view_size_allocate (GtkWidget     *widget,
+			GtkAllocation *allocation)
+{
+  grr_board_view_t *view;
+
+  g_return_if_fail (widget != NULL);
+  g_return_if_fail (GRR_IS_BOARD_VIEW (widget));
+  g_return_if_fail (allocation != NULL);
+
+  widget->allocation = *allocation;
+  view = GRR_BOARD_VIEW (widget);
+
+  if (GTK_WIDGET_REALIZED (widget))
+    {
+
+      gdk_window_move_resize (widget->window,
+			      allocation->x, allocation->y,
+			      allocation->width, allocation->height);
+
+    }
+  view->radius = MIN (allocation->width, allocation->height) * 0.45;
+  view->pointer_width = view->radius / 5;
+}
+
+static void
+grr_svg_draw (XrState *xrs, char *svg)
+{
+    xsvg_status_t status;
+    xsvg_t *xsvg;
+
+    status = xsvg_create (&xsvg);
+    if (status) {
+	fprintf (stderr, "xsvg_create error\n");
+	return;
+    }
+    status = xsvg_parse_file (xsvg, svg);
+    if (status) {
+	fprintf (stderr, "xsvg_parse_file error parsing %s\n", svg);
+	return;
+    }
+    xsvg_render (xsvg, xrs);
+    if (status) {
+	fprintf (stderr, "xsvg_render error\n");
+	return;
+    }
+    xsvg_destroy (xsvg);
+}
+
+static void
+grr_wall_draw (XrState *xrs, rr_wall_t wall)
+{
+    char *wall_svg = GRR_WALL_SVG;
+
+    if (wall == RR_WALL_NONE)
+	return;
+
+    if (wall & RR_WALL_ABOVE) {
+	grr_svg_draw (xrs, wall_svg);
+    }
+    if (wall & RR_WALL_LEFT) {
+	XrSave (xrs);
+	XrRotate (xrs, M_PI_2);
+	grr_svg_draw (xrs, wall_svg);
+	XrRestore (xrs);
+    }
+    if (wall & RR_WALL_RIGHT) {
+	XrSave (xrs);
+	XrTranslate (xrs, GRR_SVG_ASSUMED_WIDTH, 0);
+	XrRotate (xrs, M_PI_2);
+	grr_svg_draw (xrs, wall_svg);
+	XrRestore (xrs);
+    }
+    if (wall & RR_WALL_BELOW) {
+	XrSave (xrs);
+	XrTranslate (xrs, 0, GRR_SVG_ASSUMED_HEIGHT);
+	grr_svg_draw (xrs, wall_svg);
+	XrRestore (xrs);
+    }
+}
+
+static void
+grr_target_draw (XrState *xrs, rr_target_t target)
+{
+    char *target_svg;
+
+    if (target == RR_TARGET_NONE)
+	return;
+
+    switch (target) {
+    case RR_TARGET_BLUE_CIRCLE:
+	target_svg = GRR_TARGET_BLUE_CIRCLE_SVG;
+	break;
+    case RR_TARGET_BLUE_OCTAGON:
+	target_svg = GRR_TARGET_BLUE_OCTAGON_SVG;
+	break;
+    case RR_TARGET_BLUE_SQUARE:
+	target_svg = GRR_TARGET_BLUE_SQUARE_SVG;
+	break;
+    case RR_TARGET_BLUE_TRIANGLE:
+	target_svg = GRR_TARGET_BLUE_TRIANGLE_SVG;
+	break;
+    case RR_TARGET_GREEN_CIRCLE:
+	target_svg = GRR_TARGET_GREEN_CIRCLE_SVG;
+	break;
+    case RR_TARGET_GREEN_OCTAGON:
+	target_svg = GRR_TARGET_GREEN_OCTAGON_SVG;
+	break;
+    case RR_TARGET_GREEN_SQUARE:
+	target_svg = GRR_TARGET_GREEN_SQUARE_SVG;
+	break;
+    case RR_TARGET_GREEN_TRIANGLE:
+	target_svg = GRR_TARGET_GREEN_TRIANGLE_SVG;
+	break;
+    case RR_TARGET_RED_CIRCLE:
+	target_svg = GRR_TARGET_RED_CIRCLE_SVG;
+	break;
+    case RR_TARGET_RED_OCTAGON:
+	target_svg = GRR_TARGET_RED_OCTAGON_SVG;
+	break;
+    case RR_TARGET_RED_SQUARE:
+	target_svg = GRR_TARGET_RED_SQUARE_SVG;
+	break;
+    case RR_TARGET_RED_TRIANGLE:
+	target_svg = GRR_TARGET_RED_TRIANGLE_SVG;
+	break;
+    case RR_TARGET_YELLOW_CIRCLE:
+	target_svg = GRR_TARGET_YELLOW_CIRCLE_SVG;
+	break;
+    case RR_TARGET_YELLOW_OCTAGON:
+	target_svg = GRR_TARGET_YELLOW_OCTAGON_SVG;
+	break;
+    case RR_TARGET_YELLOW_SQUARE:
+	target_svg = GRR_TARGET_YELLOW_SQUARE_SVG;
+	break;
+    case RR_TARGET_YELLOW_TRIANGLE:
+	target_svg = GRR_TARGET_YELLOW_TRIANGLE_SVG;
+	break;
+    case RR_TARGET_WHIRL:
+	target_svg = GRR_TARGET_WHIRL_SVG;
+	break;
+    default:
+	return;
+    }
+
+    grr_svg_draw (xrs, target_svg);
+}
+
+static void
+grr_robot_draw (XrState *xrs, rr_robot_t robot)
+{
+    char *robot_svg;
+
+    if (robot == RR_ROBOT_NONE)
+	return;
+
+    switch (robot) {
+    case RR_ROBOT_BLUE:
+	robot_svg = GRR_ROBOT_BLUE_SVG;
+	break;
+    case RR_ROBOT_GREEN:
+	robot_svg = GRR_ROBOT_GREEN_SVG;
+	break;
+    case RR_ROBOT_RED:
+	robot_svg = GRR_ROBOT_RED_SVG;
+	break;
+    case RR_ROBOT_YELLOW:
+	robot_svg = GRR_ROBOT_YELLOW_SVG;
+	break;
+    default:
+	return;
+    }
+
+    grr_svg_draw (xrs, robot_svg);
+}
+
+static void
+grr_cell_draw (XrState *xrs, rr_cell_t cell, rr_target_t goal,
+	       int width, int height)
+{
+    int xpad, ypad;
+    rr_target_t target;
+
+    XrSave (xrs);
+    XrScale (xrs,
+	     width / GRR_SVG_ASSUMED_WIDTH,
+	     height / GRR_SVG_ASSUMED_HEIGHT);
+    grr_svg_draw (xrs, GRR_CELL_SVG);
+    grr_wall_draw (xrs, RR_CELL_GET_WALLS (cell));
+    XrRestore (xrs);
+
+    xpad = width / 5;
+    ypad = width / 5;
+
+    XrSave (xrs);
+    XrTranslate (xrs, xpad, ypad);
+    XrScale (xrs,
+	     (width - 2*xpad)  / GRR_SVG_ASSUMED_WIDTH,
+	     (height - 2*ypad) / GRR_SVG_ASSUMED_HEIGHT);
+
+    target = RR_CELL_GET_TARGET (cell);
+    grr_target_draw (xrs, target);
+    XrRestore (xrs);
+
+    /* This is a hack, (it obscures the cell background in addition to
+       the target). The real way to do this is to draw the target
+       itself with less opacity. */
+    if (target && target != goal) {
+	XrSave (xrs);
+	XrScale (xrs,
+		 width / GRR_SVG_ASSUMED_WIDTH,
+		 height / GRR_SVG_ASSUMED_HEIGHT);
+	XrRectangle (xrs, 0, 0,
+		     GRR_SVG_ASSUMED_WIDTH,
+		     GRR_SVG_ASSUMED_HEIGHT);
+	XrSetRGBColor (xrs, 1, 1, 1);
+	XrSetAlpha (xrs, 0.75);
+	XrFill (xrs);
+	XrRestore (xrs);
+    }
+
+    XrSave (xrs);
+    XrTranslate (xrs, xpad, ypad);
+    XrScale (xrs,
+	     (width - 2*xpad)  / GRR_SVG_ASSUMED_WIDTH,
+	     (height - 2*ypad) / GRR_SVG_ASSUMED_HEIGHT);
+
+    grr_robot_draw (xrs, RR_CELL_GET_ROBOT (cell));
+
+    XrRestore (xrs);
+
+}
+
+static gint
+grr_board_view_expose (GtkWidget      *widget,
+		       GdkEventExpose *event)
+{
+    grr_board_view_t *view;
+    Display *dpy;
+    Drawable drawable;
+    XrState *xrs;
+    GdkDrawable *real_drawable;
+    gint x_off, y_off;
+    int i, j;
+    rr_target_t goal_target;
+
+    g_return_val_if_fail (widget != NULL, FALSE);
+    g_return_val_if_fail (GRR_IS_BOARD_VIEW (widget), FALSE);
+    g_return_val_if_fail (event != NULL, FALSE);
+
+    if (event->count > 0)
+	return FALSE;
+
+    view = GRR_BOARD_VIEW (widget);
+
+    /* Unabstract X from GTK+ */
+    gdk_window_get_internal_paint_info (widget->window, &real_drawable, &x_off, &y_off);
+    dpy = gdk_x11_drawable_get_xdisplay (real_drawable);
+    drawable = gdk_x11_drawable_get_xid (real_drawable);
+
+    /* Ignore GTK+ and use Xr for drawing. */
+    xrs = XrCreate ();
+    XrSetTargetDrawable (xrs, dpy, drawable);
+    XrTranslate (xrs, -x_off, -y_off);
+
+    rr_board_get_size (view->board, &view->board_width, &view->board_height);
+
+    view->cell_width = widget->allocation.width / view->board_width;
+    if (view->cell_width == 0)
+	view->cell_width = 1;
+    view->cell_height = widget->allocation.height / view->board_height;
+    if (view->cell_height == 0)
+	view->cell_height = 1;
+
+    view->board_pad_x = (widget->allocation.width - view->board_width * view->cell_width) / 2;
+    view->board_pad_y = (widget->allocation.height - view->board_height * view->cell_height) / 2;
+
+    XrTranslate (xrs, view->board_pad_x, view->board_pad_y);
+
+    goal_target = rr_board_get_goal_target (view->board);
+
+    /* Draw cell targets */
+    for (j=0; j < view->board_height; j++) {
+	for (i=0; i < view->board_width; i++) {
+	    XrSave (xrs);
+	    XrTranslate (xrs, i * view->cell_width, j * view->cell_height);
+	    grr_cell_draw (xrs,
+			   rr_board_get_cell (view->board, i, j),
+			   goal_target,
+			   view->cell_width, view->cell_height);
+	    XrRestore (xrs);
+	}
+    }
+
+    /* Draw grid. */
+    XrSave (xrs);
+    XrSetRGBColor (xrs, .75, .75, 1);
+    XrSetLineWidth (xrs, 1);
+    for (j=0; j < view->board_height; j++) {
+	XrMoveTo (xrs, 0, j * view->cell_height + 0.5);
+	XrRelLineTo (xrs, view->board_width * view->cell_width, 0);
+    }
+    for (i=0; i < view->board_width; i++) {
+	XrMoveTo (xrs, i * view->cell_width + 0.5, 0);
+	XrRelLineTo (xrs, 0, view->board_height * view->cell_height);
+    }
+    XrStroke (xrs);
+    XrRestore (xrs);
+
+    /* Draw goal target in center of board */
+    XrSave (xrs);
+    XrTranslate (xrs,
+		 (view->board_width / 2 - 1) * view->cell_width,
+		 (view->board_height / 2 - 1) * view->cell_height);
+    grr_cell_draw (xrs, goal_target, goal_target,
+		   view->cell_width * 2, view->cell_height * 2);
+    XrRestore (xrs);
+
+    /* Draw walls */
+    for (j=0; j < view->board_height; j++) {
+	for (i=0; i < view->board_width; i++) {
+	    XrSave (xrs);
+	    XrTranslate (xrs, i * view->cell_width, j * view->cell_height);
+	    XrScale (xrs,
+		     view->cell_width / GRR_SVG_ASSUMED_WIDTH,
+		     view->cell_height / GRR_SVG_ASSUMED_HEIGHT);
+	    grr_wall_draw (xrs, RR_CELL_GET_WALLS (rr_board_get_cell(view->board, i, j)));
+	    XrRestore (xrs);
+	}
+    }
+    
+    XrDestroy (xrs);
+
+    return FALSE;
+}
+
+static gint
+grr_board_view_button_press (GtkWidget      *widget,
+		       GdkEventButton *event)
+{
+  grr_board_view_t *view;
+
+  g_return_val_if_fail (widget != NULL, FALSE);
+  g_return_val_if_fail (GRR_IS_BOARD_VIEW (widget), FALSE);
+  g_return_val_if_fail (event != NULL, FALSE);
+
+  view = GRR_BOARD_VIEW (widget);
+
+  /* XXX:   grr_board_view_pointer_coords_to_grid (view, event->x, event->y, &i, &j);
+  
+  if (!view->button &&
+      rr_board_has_robot (view->board, i, j))
+    {
+      gtk_grab_add (widget);
+
+      view->button = event->button;
+
+      grr_board_view_update_mouse (view, event->x, event->y);
+    }
+  */
+
+  return FALSE;
+}
+
+static gint
+grr_board_view_button_release (GtkWidget      *widget,
+			  GdkEventButton *event)
+{
+  grr_board_view_t *view;
+
+  g_return_val_if_fail (widget != NULL, FALSE);
+  g_return_val_if_fail (GRR_IS_BOARD_VIEW (widget), FALSE);
+  g_return_val_if_fail (event != NULL, FALSE);
+
+  view = GRR_BOARD_VIEW (widget);
+
+  if (view->button == event->button)
+    {
+      gtk_grab_remove (widget);
+
+      view->button = 0;
+
+      /* XXX:      grr_board_view_pointer_coords_to_grid (view, event->x, event->y, &i, &j); */
+
+      /* XXX: Need to compute direction based on (i, j) and old (i, j) */
+      /*XXX:       rr_client_move (view->client, view->robot, direction); */
+
+    }
+
+  return FALSE;
+}
+
+static gint
+grr_board_view_motion_notify (GtkWidget      *widget,
+			 GdkEventMotion *event)
+{
+  grr_board_view_t *view;
+  GdkModifierType mods;
+  gint x, y, mask;
+
+  g_return_val_if_fail (widget != NULL, FALSE);
+  g_return_val_if_fail (GRR_IS_BOARD_VIEW (widget), FALSE);
+  g_return_val_if_fail (event != NULL, FALSE);
+
+  view = GRR_BOARD_VIEW (widget);
+
+  if (view->button != 0)
+    {
+      x = event->x;
+      y = event->y;
+
+      if (event->is_hint || (event->window != widget->window))
+	gdk_window_get_pointer (widget->window, &x, &y, &mods);
+
+      switch (view->button)
+	{
+	case 1:
+	  mask = GDK_BUTTON1_MASK;
+	  break;
+	case 2:
+	  mask = GDK_BUTTON2_MASK;
+	  break;
+	case 3:
+	  mask = GDK_BUTTON3_MASK;
+	  break;
+	default:
+	  mask = 0;
+	  break;
+	}
+
+      if (mods & mask)
+	grr_board_view_update_mouse (view, x,y);
+    }
+
+  return FALSE;
+}
+
+static gint
+grr_board_view_timer (grr_board_view_t *view)
+{
+    g_return_val_if_fail (view != NULL, FALSE);
+    g_return_val_if_fail (GRR_IS_BOARD_VIEW (view), FALSE);
+
+    return FALSE;
+}
+
+static void
+grr_board_view_update_mouse (grr_board_view_t *view, gint x, gint y)
+{
+    gint xc, yc;
+    gfloat old_value;
+
+    g_return_if_fail (view != NULL);
+    g_return_if_fail (GRR_IS_BOARD_VIEW (view));
+
+    xc = GTK_WIDGET(view)->allocation.width / 2;
+    yc = GTK_WIDGET(view)->allocation.height / 2;
+
+    old_value = view->adjustment->value;
+    view->angle = atan2(yc-y, x-xc);
+
+    if (view->angle < -G_PI/2.)
+	view->angle += 2*G_PI;
+    
+    if (view->angle < -G_PI/6)
+	view->angle = -G_PI/6;
+
+    if (view->angle > 7.*G_PI/6.)
+	view->angle = 7.*G_PI/6.;
+    
+    view->adjustment->value = view->adjustment->lower + (7.*G_PI/6 - view->angle) *
+	(view->adjustment->upper - view->adjustment->lower) / (4.*G_PI/3.);
+    
+    if (view->adjustment->value != old_value)
+	{
+	    if (view->policy == GTK_UPDATE_CONTINUOUS)
+		{
+		    g_signal_emit_by_name (GTK_OBJECT (view->adjustment), "value_changed");
+		}
+      else
+	  {
+	      gtk_widget_queue_draw (GTK_WIDGET (view));
+	      
+	      if (view->policy == GTK_UPDATE_DELAYED)
+		  {
+		      if (view->timer)
+			  gtk_timeout_remove (view->timer);
+		      
+		      view->timer = gtk_timeout_add (SCROLL_DELAY_LENGTH,
+						     (GtkFunction) grr_board_view_timer,
+						     (gpointer) view);
+		  }
+	  }
+	}
+}
+
+static void
+grr_board_view_update (grr_board_view_t *view)
+{
+  g_return_if_fail (view != NULL);
+  g_return_if_fail (GRR_IS_BOARD_VIEW (view));
+
+  gtk_widget_queue_draw (GTK_WIDGET (view));
+}
diff --git a/src/grr_board_view.h b/src/grr_board_view.h
new file mode 100644
index 0000000..f7df6da
--- /dev/null
+++ b/src/grr_board_view.h
@@ -0,0 +1,99 @@
+/* grr_board_view - GTK+ widget for displaying an rr_board
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#ifndef GRR_BOARD_VIEW_H
+#define GRR_BOARD_VIEW_H
+
+#include <gdk/gdk.h>
+#include <gtk/gtkadjustment.h>
+#include <gtk/gtkwidget.h>
+
+#include <rr.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#define GRR_BOARD_VIEW(obj)	GTK_CHECK_CAST (obj, grr_board_view_get_type (), grr_board_view_t)
+#define GRR_BOARD_VIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, grr_board_view_get_type (), grr_board_view_class_t)
+#define GRR_IS_BOARD_VIEW(obj)	GTK_CHECK_TYPE (obj, grr_board_view_get_type ())
+
+typedef struct grr_board_view		grr_board_view_t;
+typedef struct grr_board_view_class	grr_board_view_class_t;
+
+struct grr_board_view
+{
+    /* GtkWidget has to be first for GTK+ object magic? */
+    GtkWidget widget;
+
+    rr_board_t *board;
+    int owns_board;
+    int board_width, board_height;
+    int board_pad_x, board_pad_y;
+
+    int cell_width, cell_height;
+
+    /* XXX: Obviously, the rest of this needs to be gutted */
+
+    /* update policy (GTK_UPDATE_[CONTINUOUS/DELAYED/DISCONTINUOUS]) */
+    guint policy : 2;
+    
+    /* Button currently pressed or 0 if none */
+    guint8 button;
+    
+    /* Dimensions of dial components */
+    gint radius;
+    gint pointer_width;
+    
+    /* ID of update timer, or 0 if none */
+    guint32 timer;
+    
+    /* Current angle */
+    gfloat angle;
+    gfloat last_angle;
+    
+    /* Old values from adjustment stored so we know when something changes */
+    gfloat old_value;
+    gfloat old_lower;
+    gfloat old_upper;
+
+    GtkAdjustment *adjustment;
+};
+
+struct grr_board_view_class
+{
+    GtkWidgetClass parent_class;
+};
+
+GtkWidget*     grr_board_view_new	(rr_board_t *board);
+GtkType        grr_board_view_get_type	(void);
+void           grr_board_view_set_board	(grr_board_view_t *view,
+					 rr_board_t *board);
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* GRR_BOARD_VIEW_H */
diff --git a/src/grr_board_view_test.c b/src/grr_board_view_test.c
new file mode 100644
index 0000000..47da418
--- /dev/null
+++ b/src/grr_board_view_test.c
@@ -0,0 +1,124 @@
+/* grr_board_view_test - Simple test of grr_board_view
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gtk/gtk.h>
+#include "grr_board_view.h"
+
+static char GRR_BOARD_TEST[] = "\n"
+" === === === === === === === === === === === === === === === === \n"
+"|... ... ... ...|... ... ... ... ... ...|... ... ... ... ... B..|\n"
+"                                                         ===     \n"
+"|... ... ... ... ... .go|... ... ... ... ... ... ... ...|.rt ...|\n"
+"                     ===                                         \n"
+"|...|.rs ... ... ... ... ... ... ... ... ...|.bo ... ... ... ...|\n"
+"     ===                                     ===                 \n"
+"|... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...|\n"
+" ===                     ===                                 === \n"
+"|G.. ... ... ... ... ...|.yc ... ... ... ... ... ... ... ... ...|\n"
+"                                                                 \n"
+"|... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...|\n"
+"         ===                                                     \n"
+"|... ... .bt|... ... ... ... ... ... ... ... ... ... .gc|... ...|\n"
+"                             === ===     ===         ===         \n"
+"|... ... ... ... ... ... ...|... ...|... .ys|... ... ... ... ...|\n"
+"                                                 ===             \n"
+"|... ... ... ... ... ... ...|... ...|... ... ...|.WW ... ... ...|\n"
+"             ===             === ===                             \n"
+"|... ... ... .yo|... ... ... ... ... ...|.bc ... ... ... ... ...|\n"
+"                                         ===                     \n"
+"|... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...|\n"
+"                                                             === \n"
+"|...|.rc ... ... ... ... ... ... ... .yt|... ... ... ... ... ...|\n"
+"     ===                             ===                 ===     \n"
+"|... ... ... ... ... ... .bs|... Y.. ... ... ... ... ... .gs|...|\n"
+"                         ===                                     \n"
+"|... ... ... ... ... ... ... R.. ... ... ... ... ... ... ... ...|\n"
+" ===     ===                                         ===         \n"
+"|... ...|.gt ... ... ... ... ... ... ... ... ... ...|.ro ... ...|\n"
+"                                                                 \n"
+"|... ... ... ... ... ...|... ... ... ... ...|... ... ... ... ...|\n"
+" === === === === === === === === === === === === === === === === ";
+
+
+int
+main (int argc, char *argv[])
+{
+    GtkWidget *window;
+    GtkWidget *board_view;
+    GtkWidget *board_frame;
+    rr_board_t *board;
+    GtkWidget *vpaned;
+    GtkWidget *sw;
+    GtkWidget *text_view;
+    
+    gtk_init (&argc, &argv);
+    
+    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+    
+    gtk_window_set_title (GTK_WINDOW (window), "Ricochet Robot");
+    gtk_window_set_default_size (GTK_WINDOW (window), 512, 512);
+    
+    g_signal_connect (G_OBJECT (window), "destroy",
+		      G_CALLBACK (exit), NULL);
+    gtk_container_set_border_width (GTK_CONTAINER (window), 0);
+
+    vpaned = gtk_vpaned_new ();
+    gtk_container_set_border_width (GTK_CONTAINER (vpaned), 5);
+    gtk_container_add (GTK_CONTAINER (window), vpaned);
+    {
+	board_frame = gtk_aspect_frame_new (NULL, 0.5, 0.5, 1.0, FALSE);
+	gtk_paned_pack1 (GTK_PANED (vpaned), board_frame, TRUE, TRUE);
+	{
+	    board = rr_board_create_from_str (GRR_BOARD_TEST);
+	    board_view = grr_board_view_new (board);
+
+	    gtk_container_add (GTK_CONTAINER (board_frame), board_view);
+	    gtk_widget_show (board_view);
+	}
+	gtk_widget_show (board_frame);
+
+	sw = gtk_scrolled_window_new (NULL, NULL);
+	gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),
+					GTK_POLICY_NEVER,
+					GTK_POLICY_AUTOMATIC);
+	gtk_paned_pack2 (GTK_PANED (vpaned), sw, FALSE, TRUE);
+	{
+	    text_view = gtk_text_view_new ();
+	    gtk_container_add (GTK_CONTAINER (sw), text_view);
+	    gtk_widget_show (text_view);
+	}
+	gtk_widget_show (sw);
+    }
+    gtk_widget_show (vpaned);
+
+    gtk_widget_show (window);
+    
+    gtk_main ();
+    
+    return 0;
+}
diff --git a/src/grr_icons.c b/src/grr_icons.c
new file mode 100644
index 0000000..27fc252
--- /dev/null
+++ b/src/grr_icons.c
@@ -0,0 +1,56 @@
+/* grr_board_view - GTK+ widget for displaying an rr_board
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#include "grr_icons.h"
+
+char GRR_ROBOT_BLUE_SVG[] = "svg/robot_blue.svg";
+char GRR_ROBOT_GREEN_SVG[] = "svg/robot_green.svg";
+char GRR_ROBOT_RED_SVG[] = "svg/robot_red.svg";
+char GRR_ROBOT_YELLOW_SVG[] = "svg/robot_yellow.svg";
+
+char GRR_TARGET_BLUE_CIRCLE_SVG[] = "svg/target_blue_circle.svg";
+char GRR_TARGET_GREEN_CIRCLE_SVG[] = "svg/target_green_circle.svg";
+char GRR_TARGET_RED_CIRCLE_SVG[] = "svg/target_red_circle.svg";
+char GRR_TARGET_YELLOW_CIRCLE_SVG[] = "svg/target_yellow_circle.svg";
+
+char GRR_TARGET_BLUE_OCTAGON_SVG[] = "svg/target_blue_octagon.svg";
+char GRR_TARGET_GREEN_OCTAGON_SVG[] = "svg/target_green_octagon.svg";
+char GRR_TARGET_RED_OCTAGON_SVG[] = "svg/target_red_octagon.svg";
+char GRR_TARGET_YELLOW_OCTAGON_SVG[] = "svg/target_yellow_octagon.svg";
+
+char GRR_TARGET_BLUE_SQUARE_SVG[] = "svg/target_blue_square.svg";
+char GRR_TARGET_GREEN_SQUARE_SVG[] = "svg/target_green_square.svg";
+char GRR_TARGET_RED_SQUARE_SVG[] = "svg/target_red_square.svg";
+char GRR_TARGET_YELLOW_SQUARE_SVG[] = "svg/target_yellow_square.svg";
+
+char GRR_TARGET_BLUE_TRIANGLE_SVG[] = "svg/target_blue_triangle.svg";
+char GRR_TARGET_GREEN_TRIANGLE_SVG[] = "svg/target_green_triangle.svg";
+char GRR_TARGET_RED_TRIANGLE_SVG[] = "svg/target_red_triangle.svg";
+char GRR_TARGET_YELLOW_TRIANGLE_SVG[] = "svg/target_yellow_triangle.svg";
+
+char GRR_TARGET_WHIRL_SVG;
+
+#endif
diff --git a/src/grr_icons.h b/src/grr_icons.h
new file mode 100644
index 0000000..7bb9851
--- /dev/null
+++ b/src/grr_icons.h
@@ -0,0 +1,57 @@
+/* grr_board_view - GTK+ widget for displaying an rr_board
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#ifndef GRR_ICONS_H
+#define GRR_ICONS_H
+
+extern char *GRR_ROBOT_BLUE_SVG;
+extern char *GRR_ROBOT_GREEN_SVG;
+extern char *GRR_ROBOT_RED_SVG;
+extern char *GRR_ROBOT_YELLOW_SVG;
+
+extern char *GRR_TARGET_BLUE_CIRCLE_SVG;
+extern char *GRR_TARGET_GREEN_CIRCLE_SVG;
+extern char *GRR_TARGET_RED_CIRCLE_SVG;
+extern char *GRR_TARGET_YELLOW_CIRCLE_SVG;
+
+extern char *GRR_TARGET_BLUE_OCTAGON_SVG;
+extern char *GRR_TARGET_GREEN_OCTAGON_SVG;
+extern char *GRR_TARGET_RED_OCTAGON_SVG;
+extern char *GRR_TARGET_YELLOW_OCTAGON_SVG;
+
+extern char *GRR_TARGET_BLUE_SQUARE_SVG;
+extern char *GRR_TARGET_GREEN_SQUARE_SVG;
+extern char *GRR_TARGET_RED_SQUARE_SVG;
+extern char *GRR_TARGET_YELLOW_SQUARE_SVG;
+
+extern char *GRR_TARGET_BLUE_TRIANGLE_SVG;
+extern char *GRR_TARGET_GREEN_TRIANGLE_SVG;
+extern char *GRR_TARGET_RED_TRIANGLE_SVG;
+extern char *GRR_TARGET_YELLOW_TRIANGLE_SVG;
+
+extern char *GRR_TARGET_WHIRL_SVG;
+
+#endif
diff --git a/src/grr_test.c b/src/grr_test.c
new file mode 100644
index 0000000..086a68f
--- /dev/null
+++ b/src/grr_test.c
@@ -0,0 +1,67 @@
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gtk/gtk.h>
+#include "grr_board_view.h"
+
+void value_changed( GtkAdjustment *adjustment,
+                    GtkWidget     *label )
+{
+  char buffer[16];
+
+  sprintf(buffer,"%4.2f",adjustment->value);
+  gtk_label_set_text (GTK_LABEL (label), buffer);
+}
+
+int main( int   argc,
+          char *argv[])
+{
+  GtkWidget *window;
+  GtkAdjustment *adjustment;
+  GtkWidget *view;
+  GtkWidget *frame;
+  GtkWidget *vbox;
+  GtkWidget *label;
+  
+  gtk_init (&argc, &argv);
+
+  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+  
+  gtk_window_set_title (GTK_WINDOW (window), "Ricochet Robot");
+  
+  g_signal_connect (G_OBJECT (window), "destroy",
+		    G_CALLBACK (exit), NULL);
+  
+  gtk_container_set_border_width (GTK_CONTAINER (window), 10);
+
+  vbox = gtk_vbox_new (FALSE, 5);
+  gtk_container_add (GTK_CONTAINER (window), vbox);
+  gtk_widget_show (vbox);
+
+  frame = gtk_frame_new (NULL);
+  gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
+  gtk_container_add (GTK_CONTAINER (vbox), frame);
+  gtk_widget_show (frame); 
+ 
+  adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0, 0, 100, 0.01, 0.1, 0));
+  
+  view = grr_board_view_new (adjustment);
+  grr_board_view_set_update_policy (GRR_BOARD_VIEW (view), GTK_UPDATE_DELAYED);
+  /*  gtk_widget_set_size_request (view, 100, 100); */
+  
+  gtk_container_add (GTK_CONTAINER (frame), view);
+  gtk_widget_show (view);
+
+  label = gtk_label_new ("0.00");
+  gtk_box_pack_end (GTK_BOX (vbox), label, 0, 0, 0);
+  gtk_widget_show (label);
+
+  g_signal_connect (G_OBJECT (adjustment), "value_changed",
+		    G_CALLBACK (value_changed), (gpointer) label);
+  
+  gtk_widget_show (window);
+  
+  gtk_main ();
+  
+  return 0;
+}
diff --git a/src/grrobot.c b/src/grrobot.c
new file mode 100644
index 0000000..a71a319
--- /dev/null
+++ b/src/grrobot.c
@@ -0,0 +1,238 @@
+/* grrobot - Ricochet Robot using GTK+ and Xr
+ *
+ * Copyright © 2003 Carl Worth
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of Carl Worth
+ * not be used in advertising or publicity pertaining to distribution
+ * of the software without specific, written prior permission.
+ * Carl Worth makes no representations about the suitability of this
+ * software for any purpose.  It is provided "as is" without express
+ * or implied warranty.
+ * 
+ * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gtk/gtk.h>
+
+#include "grr_board_view.h"
+#include "args.h"
+
+typedef struct grr_game {
+    rr_client_t *client;
+    rr_board_t *board;
+
+    GtkWidget *window;
+    GtkWidget *board_view;
+    GtkTextBuffer *message_buffer;
+    GtkWidget *message_view;
+    GtkWidget *command_entry;
+} grr_game_t;
+
+static int
+do_gui (grr_game_t *game);
+
+void
+game_callback (gpointer data,
+	       gint fd,
+	       GdkInputCondition condition);
+
+int 
+main (int argc, char **argv)
+{
+    args_t args;
+    rr_status_t status;
+    grr_game_t game;
+
+    char *diagram;
+
+    gtk_init (&argc, &argv);
+    
+    args_parse (&args, argc, argv);
+
+    game.client = rr_client_create (args.host, args.port, args.user);
+    if (game.client == NULL) {
+	fprintf (stderr, "Failed connecting to %s:%s as %s\n",
+		 args.host, args.port, args.user);
+	return 1;
+    }
+
+    status = rr_client_join (game.client, args.game);
+    if (status == RR_STATUS_NO_GAME) {
+	status = rr_client_new (game.client, args.game);
+    }
+
+    game.board = rr_board_create (16, 16);
+
+    gdk_input_add (rr_client_fd (game.client),
+		   GDK_INPUT_READ,
+		   game_callback,
+		   &game);
+
+    rr_client_show (game.client, &diagram);
+    rr_board_parse (game.board, diagram);
+    free (diagram);
+
+    return do_gui (&game);
+}
+
+void
+game_callback (gpointer data,
+	       gint fd,
+	       GdkInputCondition condition)
+{
+    grr_game_t *game = data;
+    rr_board_t *board = game->board;
+    rr_status_t status;
+    char **notice_s;
+    rr_notice_t *notice;
+
+    while (rr_client_notice_pending (game->client)) {
+	status = rr_client_next_notice (game->client, &notice_s);
+	if (status) {
+	    fprintf (stderr, "Error during rr_client_notice: %s\n",
+		     rr_status_str (status));
+	    gtk_exit (1);
+	    return;
+	}
+	notice = rr_client_parse_notice (game->client, notice_s);
+	switch (notice->type) {
+	case RR_NOTICE_USER:
+	case RR_NOTICE_QUIT:
+	case RR_NOTICE_GAME:
+	case RR_NOTICE_DISPOSE:
+	case RR_NOTICE_MESSAGE:
+	case RR_NOTICE_GAMESTATE:
+	case RR_NOTICE_TURN:
+	case RR_NOTICE_JOIN:
+	case RR_NOTICE_WATCH:
+	case RR_NOTICE_PART:
+	case RR_NOTICE_BID:
+	case RR_NOTICE_REVOKE:
+	case RR_NOTICE_TIMER:
+	case RR_NOTICE_ABANDON:
+	case RR_NOTICE_NOBID:
+	case RR_NOTICE_ACTIVE:
+	case RR_NOTICE_MOVE:
+	case RR_NOTICE_UNDO:
+	case RR_NOTICE_RESET:
+	case RR_NOTICE_SCORE:
+	case RR_NOTICE_ACTIVATE:
+	    /* Ignore these requests */
+	    break;
+	case RR_NOTICE_POSITION:
+	    rr_board_position (board, notice->u.position.robot,
+			       notice->u.position.x, notice->u.position.y);
+	    gtk_widget_queue_draw (GTK_WIDGET (game->window));
+	    break;
+	}
+	free (notice);
+    }
+}
+
+void
+command_callback (GtkWidget *widget,
+		  grr_game_t *game)
+{
+    const gchar *entry_text;
+    char **response;
+
+    entry_text = gtk_entry_get_text (GTK_ENTRY (widget));
+    rr_client_request (game->client, entry_text, &response);
+    gtk_entry_set_text (GTK_ENTRY (widget), "");
+    gtk_text_buffer_insert_at_cursor (game->message_buffer, entry_text, -1);
+
+/* XXX: Huh? Why is this triggering valgrind?
+    free (response);
+*/
+
+}
+
+static int
+do_gui (grr_game_t *game)
+{
+    GtkWidget *board_frame;
+    GtkWidget *vpaned;
+    GtkWidget *sw;
+    GtkWidget *vbox;
+    GtkWidget *window;
+    GtkWidget *message_view;
+    GtkWidget *command_entry;
+
+    game->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+    window = game->window;
+
+    gtk_window_set_title (GTK_WINDOW (window), "Ricochet Robot");
+    gtk_window_set_default_size (GTK_WINDOW (window), 512, 512);
+    
+    g_signal_connect (G_OBJECT (window), "destroy",
+		      G_CALLBACK (exit), NULL);
+    gtk_container_set_border_width (GTK_CONTAINER (window), 0);
+
+    vpaned = gtk_vpaned_new ();
+    gtk_container_set_border_width (GTK_CONTAINER (vpaned), 5);
+    gtk_container_add (GTK_CONTAINER (window), vpaned);
+    {
+	board_frame = gtk_aspect_frame_new (NULL, 0.5, 0.5, 1.0, FALSE);
+	gtk_paned_pack1 (GTK_PANED (vpaned), board_frame, TRUE, TRUE);
+	{
+	    game->board_view = grr_board_view_new (game->board);
+
+	    gtk_container_add (GTK_CONTAINER (board_frame), game->board_view);
+	    gtk_widget_show (game->board_view);
+	}
+	gtk_widget_show (board_frame);
+
+	vbox = gtk_vbox_new (FALSE, 1);
+	gtk_paned_pack2 (GTK_PANED (vpaned), vbox, FALSE, TRUE);
+	{
+	    sw = gtk_scrolled_window_new (NULL, NULL);
+	    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),
+					    GTK_POLICY_NEVER,
+					    GTK_POLICY_AUTOMATIC);
+	    gtk_container_add (GTK_CONTAINER (vbox), sw);
+	    gtk_widget_show (sw);
+
+	    game->message_buffer = gtk_text_buffer_new (NULL);
+	    game->message_view = gtk_text_view_new_with_buffer (game->message_buffer);
+	    message_view = game->message_view;
+	    gtk_text_view_set_editable (GTK_TEXT_VIEW (message_view), FALSE);
+	    gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (message_view), FALSE);
+	    gtk_container_add (GTK_CONTAINER (sw), message_view);
+	    gtk_widget_show (message_view);
+
+	    game->command_entry = gtk_entry_new ();
+	    command_entry = game->command_entry;
+	    gtk_container_add (GTK_CONTAINER (vbox), command_entry);
+	    gtk_widget_show (command_entry);
+	    g_signal_connect (G_OBJECT (command_entry), "activate",
+			      G_CALLBACK (command_callback),
+			      (gpointer) game);
+	}
+	gtk_widget_show (vbox);
+    }
+    gtk_widget_show (vpaned);
+
+    gtk_widget_show (window);
+    
+    gtk_main ();
+    
+    return 0;
+}
diff --git a/src/gtk_explode b/src/gtk_explode
new file mode 100755
index 0000000000000000000000000000000000000000..df442538ebfb882a6c0c24b94bbf693d705e38d1
GIT binary patch
literal 164072
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

literal 0
HcmV?d00001

diff --git a/src/gtk_explode.c b/src/gtk_explode.c
new file mode 100644
index 0000000..8f3bf52
--- /dev/null
+++ b/src/gtk_explode.c
@@ -0,0 +1,40 @@
+/* gtk_explode - Test program looking for a possible GTK+ bug
+ *
+ * Author: Carl Worth <carl@theworths.org>
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gtk/gtk.h>
+
+int
+main (int argc, char *argv[])
+{
+    GtkWidget *window;
+    GtkWidget *vbox;
+    GtkWidget *text_view;
+    
+    gtk_init (&argc, &argv);
+    
+    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+    
+    gtk_window_set_title (GTK_WINDOW (window), "Ricochet Robot");
+    
+    g_signal_connect (G_OBJECT (window), "destroy",
+		      G_CALLBACK (exit), NULL);
+
+    vbox = gtk_vbox_new (FALSE, 5);
+    gtk_container_add (GTK_CONTAINER (window), vbox);
+    {
+	text_view = gtk_text_view_new ();
+	gtk_container_add (GTK_CONTAINER (vbox), text_view);
+	gtk_widget_show (text_view);
+    }
+    gtk_widget_show (vbox);
+
+    gtk_widget_show (window);
+    
+    gtk_main ();
+    
+    return 0;
+}
diff --git a/src/svg/cell.svg b/src/svg/cell.svg
new file mode 100644
index 0000000..9a59739
--- /dev/null
+++ b/src/svg/cell.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <rect style="fill:white;stroke:none" x="0" y="0" width="32" height="32"/>
+</svg>
diff --git a/src/svg/robot_blue.svg b/src/svg/robot_blue.svg
new file mode 100644
index 0000000..7ca0128
--- /dev/null
+++ b/src/svg/robot_blue.svg
@@ -0,0 +1,257 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+	"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" transform="scale(0.05) translate(30,-57)">
+<!-- width="600" height="700" -->
+	<title>Tux</title>
+	<desc>The Linux Penguin in SVG.</desc>
+	<!-- Body paint -->
+	<path style="fill:blue;stroke:none" d="M 228 235 L 347 235 L 456 435 L 332 607 L 205 607 L 149 435 z"/>
+	<g id="g6" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path7"
+			d="M329.336 727.552 C315.224 726.328 304.136 715.816 303.128 694.936 C306.368 639.496
+				309.608 582.112 271.232 545.104 C265.256 499.024 244.016 482.104 234.008 452.512
+				L218.24 441.208 L237.104 411.688 L245.168 411.904 L323.936 571.168 L340.424
+				651.448 z"/>
+	</g>
+	<g id="g8" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path9"
+			d="M136.232 439.696 C133.856 455.248 132.56 470.512 134.792 485.272 C118.376 507.592
+				105.92 530.128 104.48 553.312 C92.024 586.504 62.432 614.584 67.544 680.104
+				C84.176 697.456 107.432 713.584 127.376 730.36 C152.432 751.312 137.528 778.96
+				102.248 772.408 C94.4 763.768 76.616 709.624 42.92 676.288 L49.544 632.584
+				L81.368 547.408 L120.968 484.048 L125.36 456.688 L119.816 386.776 L124.424
+				361.216 L136.232 439.696 z"/>
+	</g>
+	<g id="g10" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path11"
+			d="M115.64 341.416 C116.576 336.376 117.8 331.624 119.312 327.16 L121.688 342.784 z"
+			/>
+	</g>
+	<g id="g12" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path13"
+			d="M120.968 500.464 C108.368 523.792 103.976 546.256 132.92 550.216 C117.008 553.888
+				97.208 568.648 77.192 593.488 L77.624 543.016 L101.456 503.272 z"/>
+	</g>
+	<g id="g14" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path15"
+			d="M-33.256 818.488 C10.52 838.144 41.408 837.064 69.272 850.96 C91.304 862.552 113.552
+				861.184 126.944 847.144 C138.32 832.456 146.744 831.736 163.52 830.224 C190.952
+				828.568 217.736 828.28 241.928 830.8 L269.576 833.032 C269.072 864.064
+				328.04 867.88 345.392 844.336 C366.344 819.424 395.144 808.264 419.84 790.192
+				L289.304 725.536 C255.824 806.464 131.048 827.632 113.768 763.264 z"/>
+	</g>
+	<g id="g16" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path17"
+			d="M286.424 711.568 C273.824 711.496 260.936 715.6 261.944 732.16 L266.192 776.44 L304.424
+				756.64 z"/>
+	</g>
+	<g id="g18" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path19"
+			d="M-37.36 821.224 C7.136 840.88 38.6 839.728 66.968 853.696 C89.36 865.216 111.968
+				863.92 125.648 849.808 C137.24 835.192 145.808 834.472 162.872 832.96 C190.736
+				831.232 218.024 831.016 242.648 833.464 L270.728 835.768 C270.224 866.8 330.272
+				870.544 347.912 847 C369.224 822.088 398.528 811 423.656 792.856 L290.816
+				728.272 C256.76 809.128 129.824 830.296 112.256 766 z"/>
+	</g>
+	<g id="g20" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path21"
+			d="M382.328 691.984 C403.64 698.968 389.888 720.28 400.76 732.52 C405.44 742.888 415.304
+				752.032 431.792 760.528 C459.368 774.424 426.248 799.336 392.768 812.08
+				C351.944 825.616 344.024 862.912 299.312 851.896 C283.112 846.496 278.36 831.808
+				278.864 809.128 C284.264 762.76 277.784 730.432 278.792 698.824 C278.72
+				686.152 283.544 684.64 307.232 687.952 C310.04 726.328 352.376 727.336 382.328
+				691.984 z"/>
+	</g>
+	<g id="g22" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path23"
+			d="M339.632 826.624 C371.6 814.312 403.856 798.112 429.848 782.128 C437.84 777.448 438.92
+				765.928 427.688 762.328 C403.352 748.504 390.104 731.224 392.912 708.76
+				C393.344 700.912 383.696 692.56 381.104 700.048 C359.864 771.472 291.32 767.656
+				300.752 696.952 C301.256 694.864 301.76 692.776 302.264 690.76 C289.952
+				688.24 285.2 690.976 285.776 700.408 L295.28 806.608 C297.656 830.8 317.312
+				836.128 339.632 826.624 z"/>
+	</g>
+	<g id="g24" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path25"
+			d="M354.464 537.544 C379.16 569.8 404.432 651.088 384.416 691.552 C360.944 737.776 307.808
+				743.248 305.504 695.8 C308.816 639.64 311.984 581.536 273.68 544.096
+				C267.704 497.368 246.392 480.232 236.384 450.28 L203.12 426.088 L133.568 435.088
+				C130.76 452.152 129.104 468.784 131.552 484.912 C115.064 507.376 102.608
+				530.056 101.168 553.312 C88.712 586.648 59.12 614.944 64.232 680.752 C80.864
+				698.248 104.12 714.448 124.064 731.296 C149.12 752.392 135.512 776.296 100.232
+				769.672 C78.848 746.056 56.744 722.872 35.288 699.328 C12.392 683.056
+				3.896 662.176 27.368 630.496 C43.424 609.04 47.96 562.456 62 543.664 C74.312
+				525.16 92.24 508.6 105.272 490.096 C112.184 477.928 114.344 468.568 113.264
+				454.456 L110.312 369.136 C108.368 307.216 142.424 274.24 189.8 275.248 C243.512
+				275.752 287.576 312.472 288.152 378.28 C292.688 410.32 283.256 428.68 308.672
+				474.472 C334.52 522.712 338.552 520.12 354.464 537.544 z"/>
+	</g>
+	<g id="g26" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path27"
+			d="M261.296 503.632 L263.528 512.2 C257.696 501.688 250.712 483.616 241.928 475.696
+				C239.264 473.536 235.808 473.608 233.72 475.624 C222.056 486.928 193.112 510.112
+				169.928 507.088 C152.072 505.288 134.648 493.264 130.832 480.232 C128.816
+				470.872 129.752 463.168 130.976 455.32 L240.704 453.52 C238.472 463.168 253.088
+				487 261.296 503.632 z"/>
+	</g>
+	<g id="g28" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path29"
+			d="M143.144 363.232 C154.088 363.232 163.88 376.84 163.808 395.632 C163.736 408.232
+				155.528 411.472 149.336 417.016 C146.6 419.536 145.952 433.144 142.568 433.144
+				C131.696 433.144 123.488 413.776 123.488 395.632 C123.488 377.56 132.272
+				363.232 143.144 363.232 z"/>
+	</g>
+	<g id="g30" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path31"
+			d="M144.368 375.04 C154.088 375.04 160.856 379.936 161.648 391.312 C162.224 399.16 160.136
+				411.76 154.664 414.424 C152.144 415.648 143.432 426.664 140.408 426.52
+				C128.096 425.944 125 402.112 125.936 390.736 C126.8 379.36 134.72 375.04 144.368
+				375.04 z"/>
+	</g>
+	<g id="g32" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path33"
+			d="M141.848 382.672 C148.544 382.096 154.736 389.728 155.6 399.664 C156.464 409.6 151.64
+				418.24 144.944 418.816 C138.248 419.392 132.056 411.76 131.192 401.752
+				C130.328 391.816 135.152 383.248 141.848 382.672 z"/>
+	</g>
+	<g id="g34" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path35"
+			d="M151.064 397.288 C151.424 399.088 149.408 400.024 148.832 398.224 C148.256 395.992
+				146.888 393.328 145.088 391.168 C143.936 389.872 145.088 388.432 146.528 389.44
+				C149.048 391.528 150.488 394.12 151.064 397.288 z"/>
+	</g>
+	<g id="g36" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path37"
+			d="M216.944 360.712 C232.712 360.712 245.6 377.416 245.6 397.792 C245.6 418.24 232.712
+				434.872 216.944 434.872 C201.176 434.872 188.432 418.24 188.432 397.792 C188.432
+				377.416 201.176 360.712 216.944 360.712 z"/>
+	</g>
+	<g id="g38" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path39"
+			d="M224.792 374.968 C235.664 378.856 241.928 387.424 242.72 396.568 C243.656 407.08
+				239.408 418.96 230.264 425.944 C227.672 427.888 197.72 416.08 195.992 411.616
+				C193.4 405.208 191.816 392.896 193.76 385.624 C194.552 382.744 197.216 378.568
+				201.176 376.336 C207.44 372.808 216.656 372.088 224.792 374.968 z"/>
+	</g>
+	<g id="g40" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path41"
+			d="M216.872 380.944 C225.584 380.944 232.712 389.296 232.712 399.448 C232.712 409.672
+				225.584 418.024 216.872 418.024 C208.16 418.024 201.032 409.672 201.032 399.448
+				C201.032 389.296 208.16 380.944 216.872 380.944 z"/>
+	</g>
+	<g id="g42" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path43"
+			d="M227.096 392.392 C228.104 394.048 226.448 395.776 225.224 394.12 C223.784 392.104
+				221.408 389.944 218.888 388.432 C217.232 387.568 217.808 385.624 219.68 386.2
+				C222.92 387.28 225.368 389.368 227.096 392.392 z"/>
+	</g>
+	<g id="g44" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path45"
+			d="M164.96 404.488 C172.376 402.328 184.112 403.048 192.248 404.632 C200.384 406.792
+				222.056 418.24 245.024 430.696 C247.976 432.208 248.84 437.104 245.024 438.688
+				C239.12 439.12 249.272 453.664 238.904 458.848 C223.352 462.88 198.44 485.992
+				186.128 487.864 C179.288 489.376 172.232 489.592 164.6 487.864 C140.552
+				482.968 134.216 455.608 122.912 450.064 C119.816 446.824 121.4 441.208 122.408
+				440.056 C123.632 434.224 149.696 406.216 164.96 404.488 z"/>
+	</g>
+	<g id="g46" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path47"
+			d="M185.408 405.856 C198.44 407.296 226.088 423.928 239.408 430.624 C242.72 432.424
+				242.504 437.824 239.552 438.688 C236.384 440.488 235.448 438.256 232.928 437.896
+				C228.896 435.736 222.272 440.92 217.016 444.88 C186.704 467.776 180.656
+				465.256 156.176 462.664 C147.68 460.576 142.136 457.984 139.688 455.968 C141.488
+				445.888 160.496 407.656 166.76 406.792 C168.344 404.704 179.936 404.632
+				185.408 405.856 z"/>
+	</g>
+	<g id="g48" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path49"
+			d="M190.664 412.048 L193.76 413.416 C196.064 414.712 193.256 418.168 190.736 417.088
+				L186.2 415.504 C183.536 413.272 186.704 410.104 190.664 412.048 z"/>
+	</g>
+	<g id="g50" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path51"
+			d="M268.568 452.368 C273.032 454.384 279.224 457.192 282.536 460.144 C285.488 464.104
+				286.784 468.064 286.424 472.024 C285.776 474.544 284.12 476.344 281.24 477.424
+				C277.856 478.216 273.68 477.424 271.376 474.112 C269.864 471.448 265.256
+				462.16 263.96 460.576 C262.232 457.12 261.944 454.456 262.88 452.368 C264.032
+				451.288 266.048 451 268.568 452.368 z"/>
+	</g>
+	<g id="g52" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path53"
+			d="M273.752 461.584 C275.48 462.376 277.928 463.456 279.224 464.68 C280.376 466.264
+				280.88 467.776 280.736 469.36 C280.52 470.296 279.8 471.016 278.72 471.448 C277.352
+				471.808 275.768 471.448 274.832 470.152 C274.256 469.144 272.456 465.472
+				271.952 464.824 C271.232 463.456 271.088 462.448 271.448 461.584 C271.952
+				461.152 272.744 461.08 273.752 461.584 z"/>
+	</g>
+	<g id="g54" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path55"
+			d="M238.616 358.552 C239.048 359.2 238.976 359.776 238.4 360.28 C237.896 360.784 237.176
+				360.712 236.24 360.208 L231.632 356.248 C231.056 355.744 230.912 354.952
+				231.272 354.088 C232.28 353.44 233.144 353.44 233.936 354.088 z"/>
+	</g>
+	<g id="g56" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path57"
+			d="M235.592 305.992 C239.624 308.224 240.848 313.912 238.184 318.592 C235.592 323.2
+				230.12 325.144 226.016 322.84 C221.984 320.536 220.76 314.92 223.424 310.24
+				C226.016 305.56 231.488 303.688 235.592 305.992 z"/>
+	</g>
+	<g id="g58" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path59"
+			d="M374.912 680.536 C378.296 683.128 373.256 687.376 371.024 686.296 C369.152 685.648
+				367.784 683.488 366.92 682.408 C366.128 681.184 366.2 679.168 366.92 678.448
+				C367.712 677.44 369.728 677.656 371.024 678.52 C372.32 679.168 373.616 679.888
+				374.912 680.536 z"/>
+	</g>
+	<g id="g60" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path61"
+			d="M297.44 551.512 C338.984 572.896 350 611.56 332.072 664.192 C330.992 666.64 334.16
+				668.368 335.24 666.064 C354.824 610.336 341.432 571.312 299.024 548.56 C296.864
+				547.552 295.28 550.432 297.44 551.512 z"/>
+	</g>
+	<g id="g62" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path63"
+			d="M72.008 569.512 C38.312 627.256 38.096 662.68 62.504 681.328 C63.728 682.264 64.448
+				680.032 63.296 679.168 C36.296 655.48 48.896 615.52 74.168 570.88 C74.888
+				569.584 72.512 568.432 72.008 569.512 z"/>
+	</g>
+	<g id="g64" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path65"
+			d="M289.376 586.864 C289.232 589.168 288.368 589.528 286.424 587.368 C279.8 575.848
+				235.088 551.44 213.344 548.704 C209.24 547.264 209.456 545.392 213.488 544.816
+				C229.184 544.816 241.28 537.904 254.96 537.904 C258.704 538.048 262.304 539.488
+				264.392 541.648 C269.504 544.96 288.08 570.592 289.376 586.864 z"/>
+	</g>
+	<g id="g66" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path67"
+			d="M180.152 546.832 C180.872 550.792 163.808 545.68 164.744 556.696 C165.032 559.72
+				160.496 561.376 160.64 556.696 C160.64 548.272 161.072 548.416 152.72 546.832
+				C151.208 546.76 151.352 544.528 152.72 544.816 L152.72 544.816 C158.696 546.472
+				166.76 542.872 166.4 538.84 C166.256 537.472 168.56 537.688 168.488 538.84
+				C167.984 545.248 181.664 542.152 180.152 546.832 z"/>
+	</g>
+	<g id="g68" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path69"
+			d="M151.568 705.376 C151.64 708.328 148.76 707.68 148.544 705.592 C140.192 680.536 143.72
+				618.832 151.856 598.96 C152.432 596.08 156.248 596.944 155.744 598.96
+				C147.104 635.464 147.248 673.048 151.568 705.376 z"/>
+	</g>
+	<g id="g70" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path71"
+			d="M51.704 684.424 C75.68 707.824 91.376 743.248 114.632 775.288 C148.472 816.04 121.472
+				858.304 66.464 845.56 C38.888 835.192 -0.784 836.344 -32.68 825.832 C-55.072
+				820.36 -55.864 809.272 -44.416 787.6 C-40.384 773.776 -40.024 751.312
+				-43.768 732.592 C-45.784 718.408 -39.232 710.488 -24.112 708.832 L-24.112 708.832
+				C-11.296 708.688 6.56 713.872 16.28 686.44 C23.552 673.336 40.976 672.976
+				51.704 684.424 z"/>
+	</g>
+	<g id="g72" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path73"
+			d="M24.632 699.04 C23.84 680.968 39.32 677.296 49.688 688.312 C68.192 710.992 85.112
+				736.048 100.376 764.992 C124.712 804.16 104.624 842.68 67.904 828.064 C49.688
+				817.84 6.128 813.304 -17.344 809.128 C-33.04 807.832 -35.128 797.608 -29.152
+				791.848 C-20.944 782.416 -20.08 759.808 -27.856 740.512 C-35.56 728.56 -21.088
+				715.384 -9.712 720.856 C0.8 727.048 25.64 713.08 24.632 699.04 z"/>
+	</g>
+</svg>
diff --git a/src/svg/robot_green.svg b/src/svg/robot_green.svg
new file mode 100644
index 0000000..249a292
--- /dev/null
+++ b/src/svg/robot_green.svg
@@ -0,0 +1,257 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+	"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" transform="scale(0.05) translate(30,-57)">
+<!-- width="600" height="700" -->
+	<title>Tux</title>
+	<desc>The Linux Penguin in SVG.</desc>
+	<!-- Body paint -->
+	<path style="fill:green;stroke:none" d="M 228 235 L 347 235 L 456 435 L 332 607 L 205 607 L 149 435 z"/>
+	<g id="g6" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path7"
+			d="M329.336 727.552 C315.224 726.328 304.136 715.816 303.128 694.936 C306.368 639.496
+				309.608 582.112 271.232 545.104 C265.256 499.024 244.016 482.104 234.008 452.512
+				L218.24 441.208 L237.104 411.688 L245.168 411.904 L323.936 571.168 L340.424
+				651.448 z"/>
+	</g>
+	<g id="g8" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path9"
+			d="M136.232 439.696 C133.856 455.248 132.56 470.512 134.792 485.272 C118.376 507.592
+				105.92 530.128 104.48 553.312 C92.024 586.504 62.432 614.584 67.544 680.104
+				C84.176 697.456 107.432 713.584 127.376 730.36 C152.432 751.312 137.528 778.96
+				102.248 772.408 C94.4 763.768 76.616 709.624 42.92 676.288 L49.544 632.584
+				L81.368 547.408 L120.968 484.048 L125.36 456.688 L119.816 386.776 L124.424
+				361.216 L136.232 439.696 z"/>
+	</g>
+	<g id="g10" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path11"
+			d="M115.64 341.416 C116.576 336.376 117.8 331.624 119.312 327.16 L121.688 342.784 z"
+			/>
+	</g>
+	<g id="g12" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path13"
+			d="M120.968 500.464 C108.368 523.792 103.976 546.256 132.92 550.216 C117.008 553.888
+				97.208 568.648 77.192 593.488 L77.624 543.016 L101.456 503.272 z"/>
+	</g>
+	<g id="g14" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path15"
+			d="M-33.256 818.488 C10.52 838.144 41.408 837.064 69.272 850.96 C91.304 862.552 113.552
+				861.184 126.944 847.144 C138.32 832.456 146.744 831.736 163.52 830.224 C190.952
+				828.568 217.736 828.28 241.928 830.8 L269.576 833.032 C269.072 864.064
+				328.04 867.88 345.392 844.336 C366.344 819.424 395.144 808.264 419.84 790.192
+				L289.304 725.536 C255.824 806.464 131.048 827.632 113.768 763.264 z"/>
+	</g>
+	<g id="g16" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path17"
+			d="M286.424 711.568 C273.824 711.496 260.936 715.6 261.944 732.16 L266.192 776.44 L304.424
+				756.64 z"/>
+	</g>
+	<g id="g18" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path19"
+			d="M-37.36 821.224 C7.136 840.88 38.6 839.728 66.968 853.696 C89.36 865.216 111.968
+				863.92 125.648 849.808 C137.24 835.192 145.808 834.472 162.872 832.96 C190.736
+				831.232 218.024 831.016 242.648 833.464 L270.728 835.768 C270.224 866.8 330.272
+				870.544 347.912 847 C369.224 822.088 398.528 811 423.656 792.856 L290.816
+				728.272 C256.76 809.128 129.824 830.296 112.256 766 z"/>
+	</g>
+	<g id="g20" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path21"
+			d="M382.328 691.984 C403.64 698.968 389.888 720.28 400.76 732.52 C405.44 742.888 415.304
+				752.032 431.792 760.528 C459.368 774.424 426.248 799.336 392.768 812.08
+				C351.944 825.616 344.024 862.912 299.312 851.896 C283.112 846.496 278.36 831.808
+				278.864 809.128 C284.264 762.76 277.784 730.432 278.792 698.824 C278.72
+				686.152 283.544 684.64 307.232 687.952 C310.04 726.328 352.376 727.336 382.328
+				691.984 z"/>
+	</g>
+	<g id="g22" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path23"
+			d="M339.632 826.624 C371.6 814.312 403.856 798.112 429.848 782.128 C437.84 777.448 438.92
+				765.928 427.688 762.328 C403.352 748.504 390.104 731.224 392.912 708.76
+				C393.344 700.912 383.696 692.56 381.104 700.048 C359.864 771.472 291.32 767.656
+				300.752 696.952 C301.256 694.864 301.76 692.776 302.264 690.76 C289.952
+				688.24 285.2 690.976 285.776 700.408 L295.28 806.608 C297.656 830.8 317.312
+				836.128 339.632 826.624 z"/>
+	</g>
+	<g id="g24" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path25"
+			d="M354.464 537.544 C379.16 569.8 404.432 651.088 384.416 691.552 C360.944 737.776 307.808
+				743.248 305.504 695.8 C308.816 639.64 311.984 581.536 273.68 544.096
+				C267.704 497.368 246.392 480.232 236.384 450.28 L203.12 426.088 L133.568 435.088
+				C130.76 452.152 129.104 468.784 131.552 484.912 C115.064 507.376 102.608
+				530.056 101.168 553.312 C88.712 586.648 59.12 614.944 64.232 680.752 C80.864
+				698.248 104.12 714.448 124.064 731.296 C149.12 752.392 135.512 776.296 100.232
+				769.672 C78.848 746.056 56.744 722.872 35.288 699.328 C12.392 683.056
+				3.896 662.176 27.368 630.496 C43.424 609.04 47.96 562.456 62 543.664 C74.312
+				525.16 92.24 508.6 105.272 490.096 C112.184 477.928 114.344 468.568 113.264
+				454.456 L110.312 369.136 C108.368 307.216 142.424 274.24 189.8 275.248 C243.512
+				275.752 287.576 312.472 288.152 378.28 C292.688 410.32 283.256 428.68 308.672
+				474.472 C334.52 522.712 338.552 520.12 354.464 537.544 z"/>
+	</g>
+	<g id="g26" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path27"
+			d="M261.296 503.632 L263.528 512.2 C257.696 501.688 250.712 483.616 241.928 475.696
+				C239.264 473.536 235.808 473.608 233.72 475.624 C222.056 486.928 193.112 510.112
+				169.928 507.088 C152.072 505.288 134.648 493.264 130.832 480.232 C128.816
+				470.872 129.752 463.168 130.976 455.32 L240.704 453.52 C238.472 463.168 253.088
+				487 261.296 503.632 z"/>
+	</g>
+	<g id="g28" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path29"
+			d="M143.144 363.232 C154.088 363.232 163.88 376.84 163.808 395.632 C163.736 408.232
+				155.528 411.472 149.336 417.016 C146.6 419.536 145.952 433.144 142.568 433.144
+				C131.696 433.144 123.488 413.776 123.488 395.632 C123.488 377.56 132.272
+				363.232 143.144 363.232 z"/>
+	</g>
+	<g id="g30" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path31"
+			d="M144.368 375.04 C154.088 375.04 160.856 379.936 161.648 391.312 C162.224 399.16 160.136
+				411.76 154.664 414.424 C152.144 415.648 143.432 426.664 140.408 426.52
+				C128.096 425.944 125 402.112 125.936 390.736 C126.8 379.36 134.72 375.04 144.368
+				375.04 z"/>
+	</g>
+	<g id="g32" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path33"
+			d="M141.848 382.672 C148.544 382.096 154.736 389.728 155.6 399.664 C156.464 409.6 151.64
+				418.24 144.944 418.816 C138.248 419.392 132.056 411.76 131.192 401.752
+				C130.328 391.816 135.152 383.248 141.848 382.672 z"/>
+	</g>
+	<g id="g34" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path35"
+			d="M151.064 397.288 C151.424 399.088 149.408 400.024 148.832 398.224 C148.256 395.992
+				146.888 393.328 145.088 391.168 C143.936 389.872 145.088 388.432 146.528 389.44
+				C149.048 391.528 150.488 394.12 151.064 397.288 z"/>
+	</g>
+	<g id="g36" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path37"
+			d="M216.944 360.712 C232.712 360.712 245.6 377.416 245.6 397.792 C245.6 418.24 232.712
+				434.872 216.944 434.872 C201.176 434.872 188.432 418.24 188.432 397.792 C188.432
+				377.416 201.176 360.712 216.944 360.712 z"/>
+	</g>
+	<g id="g38" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path39"
+			d="M224.792 374.968 C235.664 378.856 241.928 387.424 242.72 396.568 C243.656 407.08
+				239.408 418.96 230.264 425.944 C227.672 427.888 197.72 416.08 195.992 411.616
+				C193.4 405.208 191.816 392.896 193.76 385.624 C194.552 382.744 197.216 378.568
+				201.176 376.336 C207.44 372.808 216.656 372.088 224.792 374.968 z"/>
+	</g>
+	<g id="g40" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path41"
+			d="M216.872 380.944 C225.584 380.944 232.712 389.296 232.712 399.448 C232.712 409.672
+				225.584 418.024 216.872 418.024 C208.16 418.024 201.032 409.672 201.032 399.448
+				C201.032 389.296 208.16 380.944 216.872 380.944 z"/>
+	</g>
+	<g id="g42" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path43"
+			d="M227.096 392.392 C228.104 394.048 226.448 395.776 225.224 394.12 C223.784 392.104
+				221.408 389.944 218.888 388.432 C217.232 387.568 217.808 385.624 219.68 386.2
+				C222.92 387.28 225.368 389.368 227.096 392.392 z"/>
+	</g>
+	<g id="g44" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path45"
+			d="M164.96 404.488 C172.376 402.328 184.112 403.048 192.248 404.632 C200.384 406.792
+				222.056 418.24 245.024 430.696 C247.976 432.208 248.84 437.104 245.024 438.688
+				C239.12 439.12 249.272 453.664 238.904 458.848 C223.352 462.88 198.44 485.992
+				186.128 487.864 C179.288 489.376 172.232 489.592 164.6 487.864 C140.552
+				482.968 134.216 455.608 122.912 450.064 C119.816 446.824 121.4 441.208 122.408
+				440.056 C123.632 434.224 149.696 406.216 164.96 404.488 z"/>
+	</g>
+	<g id="g46" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path47"
+			d="M185.408 405.856 C198.44 407.296 226.088 423.928 239.408 430.624 C242.72 432.424
+				242.504 437.824 239.552 438.688 C236.384 440.488 235.448 438.256 232.928 437.896
+				C228.896 435.736 222.272 440.92 217.016 444.88 C186.704 467.776 180.656
+				465.256 156.176 462.664 C147.68 460.576 142.136 457.984 139.688 455.968 C141.488
+				445.888 160.496 407.656 166.76 406.792 C168.344 404.704 179.936 404.632
+				185.408 405.856 z"/>
+	</g>
+	<g id="g48" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path49"
+			d="M190.664 412.048 L193.76 413.416 C196.064 414.712 193.256 418.168 190.736 417.088
+				L186.2 415.504 C183.536 413.272 186.704 410.104 190.664 412.048 z"/>
+	</g>
+	<g id="g50" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path51"
+			d="M268.568 452.368 C273.032 454.384 279.224 457.192 282.536 460.144 C285.488 464.104
+				286.784 468.064 286.424 472.024 C285.776 474.544 284.12 476.344 281.24 477.424
+				C277.856 478.216 273.68 477.424 271.376 474.112 C269.864 471.448 265.256
+				462.16 263.96 460.576 C262.232 457.12 261.944 454.456 262.88 452.368 C264.032
+				451.288 266.048 451 268.568 452.368 z"/>
+	</g>
+	<g id="g52" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path53"
+			d="M273.752 461.584 C275.48 462.376 277.928 463.456 279.224 464.68 C280.376 466.264
+				280.88 467.776 280.736 469.36 C280.52 470.296 279.8 471.016 278.72 471.448 C277.352
+				471.808 275.768 471.448 274.832 470.152 C274.256 469.144 272.456 465.472
+				271.952 464.824 C271.232 463.456 271.088 462.448 271.448 461.584 C271.952
+				461.152 272.744 461.08 273.752 461.584 z"/>
+	</g>
+	<g id="g54" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path55"
+			d="M238.616 358.552 C239.048 359.2 238.976 359.776 238.4 360.28 C237.896 360.784 237.176
+				360.712 236.24 360.208 L231.632 356.248 C231.056 355.744 230.912 354.952
+				231.272 354.088 C232.28 353.44 233.144 353.44 233.936 354.088 z"/>
+	</g>
+	<g id="g56" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path57"
+			d="M235.592 305.992 C239.624 308.224 240.848 313.912 238.184 318.592 C235.592 323.2
+				230.12 325.144 226.016 322.84 C221.984 320.536 220.76 314.92 223.424 310.24
+				C226.016 305.56 231.488 303.688 235.592 305.992 z"/>
+	</g>
+	<g id="g58" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path59"
+			d="M374.912 680.536 C378.296 683.128 373.256 687.376 371.024 686.296 C369.152 685.648
+				367.784 683.488 366.92 682.408 C366.128 681.184 366.2 679.168 366.92 678.448
+				C367.712 677.44 369.728 677.656 371.024 678.52 C372.32 679.168 373.616 679.888
+				374.912 680.536 z"/>
+	</g>
+	<g id="g60" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path61"
+			d="M297.44 551.512 C338.984 572.896 350 611.56 332.072 664.192 C330.992 666.64 334.16
+				668.368 335.24 666.064 C354.824 610.336 341.432 571.312 299.024 548.56 C296.864
+				547.552 295.28 550.432 297.44 551.512 z"/>
+	</g>
+	<g id="g62" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path63"
+			d="M72.008 569.512 C38.312 627.256 38.096 662.68 62.504 681.328 C63.728 682.264 64.448
+				680.032 63.296 679.168 C36.296 655.48 48.896 615.52 74.168 570.88 C74.888
+				569.584 72.512 568.432 72.008 569.512 z"/>
+	</g>
+	<g id="g64" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path65"
+			d="M289.376 586.864 C289.232 589.168 288.368 589.528 286.424 587.368 C279.8 575.848
+				235.088 551.44 213.344 548.704 C209.24 547.264 209.456 545.392 213.488 544.816
+				C229.184 544.816 241.28 537.904 254.96 537.904 C258.704 538.048 262.304 539.488
+				264.392 541.648 C269.504 544.96 288.08 570.592 289.376 586.864 z"/>
+	</g>
+	<g id="g66" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path67"
+			d="M180.152 546.832 C180.872 550.792 163.808 545.68 164.744 556.696 C165.032 559.72
+				160.496 561.376 160.64 556.696 C160.64 548.272 161.072 548.416 152.72 546.832
+				C151.208 546.76 151.352 544.528 152.72 544.816 L152.72 544.816 C158.696 546.472
+				166.76 542.872 166.4 538.84 C166.256 537.472 168.56 537.688 168.488 538.84
+				C167.984 545.248 181.664 542.152 180.152 546.832 z"/>
+	</g>
+	<g id="g68" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path69"
+			d="M151.568 705.376 C151.64 708.328 148.76 707.68 148.544 705.592 C140.192 680.536 143.72
+				618.832 151.856 598.96 C152.432 596.08 156.248 596.944 155.744 598.96
+				C147.104 635.464 147.248 673.048 151.568 705.376 z"/>
+	</g>
+	<g id="g70" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path71"
+			d="M51.704 684.424 C75.68 707.824 91.376 743.248 114.632 775.288 C148.472 816.04 121.472
+				858.304 66.464 845.56 C38.888 835.192 -0.784 836.344 -32.68 825.832 C-55.072
+				820.36 -55.864 809.272 -44.416 787.6 C-40.384 773.776 -40.024 751.312
+				-43.768 732.592 C-45.784 718.408 -39.232 710.488 -24.112 708.832 L-24.112 708.832
+				C-11.296 708.688 6.56 713.872 16.28 686.44 C23.552 673.336 40.976 672.976
+				51.704 684.424 z"/>
+	</g>
+	<g id="g72" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path73"
+			d="M24.632 699.04 C23.84 680.968 39.32 677.296 49.688 688.312 C68.192 710.992 85.112
+				736.048 100.376 764.992 C124.712 804.16 104.624 842.68 67.904 828.064 C49.688
+				817.84 6.128 813.304 -17.344 809.128 C-33.04 807.832 -35.128 797.608 -29.152
+				791.848 C-20.944 782.416 -20.08 759.808 -27.856 740.512 C-35.56 728.56 -21.088
+				715.384 -9.712 720.856 C0.8 727.048 25.64 713.08 24.632 699.04 z"/>
+	</g>
+</svg>
diff --git a/src/svg/robot_red.svg b/src/svg/robot_red.svg
new file mode 100644
index 0000000..9e162c7
--- /dev/null
+++ b/src/svg/robot_red.svg
@@ -0,0 +1,257 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+	"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" transform="scale(0.05) translate(30,-57)">
+<!-- width="600" height="700" -->
+	<title>Tux</title>
+	<desc>The Linux Penguin in SVG.</desc>
+	<!-- Body paint -->
+	<path style="fill:red;stroke:none" d="M 228 235 L 347 235 L 456 435 L 332 607 L 205 607 L 149 435 z"/>
+	<g id="g6" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path7"
+			d="M329.336 727.552 C315.224 726.328 304.136 715.816 303.128 694.936 C306.368 639.496
+				309.608 582.112 271.232 545.104 C265.256 499.024 244.016 482.104 234.008 452.512
+				L218.24 441.208 L237.104 411.688 L245.168 411.904 L323.936 571.168 L340.424
+				651.448 z"/>
+	</g>
+	<g id="g8" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path9"
+			d="M136.232 439.696 C133.856 455.248 132.56 470.512 134.792 485.272 C118.376 507.592
+				105.92 530.128 104.48 553.312 C92.024 586.504 62.432 614.584 67.544 680.104
+				C84.176 697.456 107.432 713.584 127.376 730.36 C152.432 751.312 137.528 778.96
+				102.248 772.408 C94.4 763.768 76.616 709.624 42.92 676.288 L49.544 632.584
+				L81.368 547.408 L120.968 484.048 L125.36 456.688 L119.816 386.776 L124.424
+				361.216 L136.232 439.696 z"/>
+	</g>
+	<g id="g10" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path11"
+			d="M115.64 341.416 C116.576 336.376 117.8 331.624 119.312 327.16 L121.688 342.784 z"
+			/>
+	</g>
+	<g id="g12" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path13"
+			d="M120.968 500.464 C108.368 523.792 103.976 546.256 132.92 550.216 C117.008 553.888
+				97.208 568.648 77.192 593.488 L77.624 543.016 L101.456 503.272 z"/>
+	</g>
+	<g id="g14" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path15"
+			d="M-33.256 818.488 C10.52 838.144 41.408 837.064 69.272 850.96 C91.304 862.552 113.552
+				861.184 126.944 847.144 C138.32 832.456 146.744 831.736 163.52 830.224 C190.952
+				828.568 217.736 828.28 241.928 830.8 L269.576 833.032 C269.072 864.064
+				328.04 867.88 345.392 844.336 C366.344 819.424 395.144 808.264 419.84 790.192
+				L289.304 725.536 C255.824 806.464 131.048 827.632 113.768 763.264 z"/>
+	</g>
+	<g id="g16" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path17"
+			d="M286.424 711.568 C273.824 711.496 260.936 715.6 261.944 732.16 L266.192 776.44 L304.424
+				756.64 z"/>
+	</g>
+	<g id="g18" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path19"
+			d="M-37.36 821.224 C7.136 840.88 38.6 839.728 66.968 853.696 C89.36 865.216 111.968
+				863.92 125.648 849.808 C137.24 835.192 145.808 834.472 162.872 832.96 C190.736
+				831.232 218.024 831.016 242.648 833.464 L270.728 835.768 C270.224 866.8 330.272
+				870.544 347.912 847 C369.224 822.088 398.528 811 423.656 792.856 L290.816
+				728.272 C256.76 809.128 129.824 830.296 112.256 766 z"/>
+	</g>
+	<g id="g20" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path21"
+			d="M382.328 691.984 C403.64 698.968 389.888 720.28 400.76 732.52 C405.44 742.888 415.304
+				752.032 431.792 760.528 C459.368 774.424 426.248 799.336 392.768 812.08
+				C351.944 825.616 344.024 862.912 299.312 851.896 C283.112 846.496 278.36 831.808
+				278.864 809.128 C284.264 762.76 277.784 730.432 278.792 698.824 C278.72
+				686.152 283.544 684.64 307.232 687.952 C310.04 726.328 352.376 727.336 382.328
+				691.984 z"/>
+	</g>
+	<g id="g22" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path23"
+			d="M339.632 826.624 C371.6 814.312 403.856 798.112 429.848 782.128 C437.84 777.448 438.92
+				765.928 427.688 762.328 C403.352 748.504 390.104 731.224 392.912 708.76
+				C393.344 700.912 383.696 692.56 381.104 700.048 C359.864 771.472 291.32 767.656
+				300.752 696.952 C301.256 694.864 301.76 692.776 302.264 690.76 C289.952
+				688.24 285.2 690.976 285.776 700.408 L295.28 806.608 C297.656 830.8 317.312
+				836.128 339.632 826.624 z"/>
+	</g>
+	<g id="g24" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path25"
+			d="M354.464 537.544 C379.16 569.8 404.432 651.088 384.416 691.552 C360.944 737.776 307.808
+				743.248 305.504 695.8 C308.816 639.64 311.984 581.536 273.68 544.096
+				C267.704 497.368 246.392 480.232 236.384 450.28 L203.12 426.088 L133.568 435.088
+				C130.76 452.152 129.104 468.784 131.552 484.912 C115.064 507.376 102.608
+				530.056 101.168 553.312 C88.712 586.648 59.12 614.944 64.232 680.752 C80.864
+				698.248 104.12 714.448 124.064 731.296 C149.12 752.392 135.512 776.296 100.232
+				769.672 C78.848 746.056 56.744 722.872 35.288 699.328 C12.392 683.056
+				3.896 662.176 27.368 630.496 C43.424 609.04 47.96 562.456 62 543.664 C74.312
+				525.16 92.24 508.6 105.272 490.096 C112.184 477.928 114.344 468.568 113.264
+				454.456 L110.312 369.136 C108.368 307.216 142.424 274.24 189.8 275.248 C243.512
+				275.752 287.576 312.472 288.152 378.28 C292.688 410.32 283.256 428.68 308.672
+				474.472 C334.52 522.712 338.552 520.12 354.464 537.544 z"/>
+	</g>
+	<g id="g26" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path27"
+			d="M261.296 503.632 L263.528 512.2 C257.696 501.688 250.712 483.616 241.928 475.696
+				C239.264 473.536 235.808 473.608 233.72 475.624 C222.056 486.928 193.112 510.112
+				169.928 507.088 C152.072 505.288 134.648 493.264 130.832 480.232 C128.816
+				470.872 129.752 463.168 130.976 455.32 L240.704 453.52 C238.472 463.168 253.088
+				487 261.296 503.632 z"/>
+	</g>
+	<g id="g28" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path29"
+			d="M143.144 363.232 C154.088 363.232 163.88 376.84 163.808 395.632 C163.736 408.232
+				155.528 411.472 149.336 417.016 C146.6 419.536 145.952 433.144 142.568 433.144
+				C131.696 433.144 123.488 413.776 123.488 395.632 C123.488 377.56 132.272
+				363.232 143.144 363.232 z"/>
+	</g>
+	<g id="g30" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path31"
+			d="M144.368 375.04 C154.088 375.04 160.856 379.936 161.648 391.312 C162.224 399.16 160.136
+				411.76 154.664 414.424 C152.144 415.648 143.432 426.664 140.408 426.52
+				C128.096 425.944 125 402.112 125.936 390.736 C126.8 379.36 134.72 375.04 144.368
+				375.04 z"/>
+	</g>
+	<g id="g32" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path33"
+			d="M141.848 382.672 C148.544 382.096 154.736 389.728 155.6 399.664 C156.464 409.6 151.64
+				418.24 144.944 418.816 C138.248 419.392 132.056 411.76 131.192 401.752
+				C130.328 391.816 135.152 383.248 141.848 382.672 z"/>
+	</g>
+	<g id="g34" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path35"
+			d="M151.064 397.288 C151.424 399.088 149.408 400.024 148.832 398.224 C148.256 395.992
+				146.888 393.328 145.088 391.168 C143.936 389.872 145.088 388.432 146.528 389.44
+				C149.048 391.528 150.488 394.12 151.064 397.288 z"/>
+	</g>
+	<g id="g36" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path37"
+			d="M216.944 360.712 C232.712 360.712 245.6 377.416 245.6 397.792 C245.6 418.24 232.712
+				434.872 216.944 434.872 C201.176 434.872 188.432 418.24 188.432 397.792 C188.432
+				377.416 201.176 360.712 216.944 360.712 z"/>
+	</g>
+	<g id="g38" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path39"
+			d="M224.792 374.968 C235.664 378.856 241.928 387.424 242.72 396.568 C243.656 407.08
+				239.408 418.96 230.264 425.944 C227.672 427.888 197.72 416.08 195.992 411.616
+				C193.4 405.208 191.816 392.896 193.76 385.624 C194.552 382.744 197.216 378.568
+				201.176 376.336 C207.44 372.808 216.656 372.088 224.792 374.968 z"/>
+	</g>
+	<g id="g40" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path41"
+			d="M216.872 380.944 C225.584 380.944 232.712 389.296 232.712 399.448 C232.712 409.672
+				225.584 418.024 216.872 418.024 C208.16 418.024 201.032 409.672 201.032 399.448
+				C201.032 389.296 208.16 380.944 216.872 380.944 z"/>
+	</g>
+	<g id="g42" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path43"
+			d="M227.096 392.392 C228.104 394.048 226.448 395.776 225.224 394.12 C223.784 392.104
+				221.408 389.944 218.888 388.432 C217.232 387.568 217.808 385.624 219.68 386.2
+				C222.92 387.28 225.368 389.368 227.096 392.392 z"/>
+	</g>
+	<g id="g44" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path45"
+			d="M164.96 404.488 C172.376 402.328 184.112 403.048 192.248 404.632 C200.384 406.792
+				222.056 418.24 245.024 430.696 C247.976 432.208 248.84 437.104 245.024 438.688
+				C239.12 439.12 249.272 453.664 238.904 458.848 C223.352 462.88 198.44 485.992
+				186.128 487.864 C179.288 489.376 172.232 489.592 164.6 487.864 C140.552
+				482.968 134.216 455.608 122.912 450.064 C119.816 446.824 121.4 441.208 122.408
+				440.056 C123.632 434.224 149.696 406.216 164.96 404.488 z"/>
+	</g>
+	<g id="g46" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path47"
+			d="M185.408 405.856 C198.44 407.296 226.088 423.928 239.408 430.624 C242.72 432.424
+				242.504 437.824 239.552 438.688 C236.384 440.488 235.448 438.256 232.928 437.896
+				C228.896 435.736 222.272 440.92 217.016 444.88 C186.704 467.776 180.656
+				465.256 156.176 462.664 C147.68 460.576 142.136 457.984 139.688 455.968 C141.488
+				445.888 160.496 407.656 166.76 406.792 C168.344 404.704 179.936 404.632
+				185.408 405.856 z"/>
+	</g>
+	<g id="g48" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path49"
+			d="M190.664 412.048 L193.76 413.416 C196.064 414.712 193.256 418.168 190.736 417.088
+				L186.2 415.504 C183.536 413.272 186.704 410.104 190.664 412.048 z"/>
+	</g>
+	<g id="g50" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path51"
+			d="M268.568 452.368 C273.032 454.384 279.224 457.192 282.536 460.144 C285.488 464.104
+				286.784 468.064 286.424 472.024 C285.776 474.544 284.12 476.344 281.24 477.424
+				C277.856 478.216 273.68 477.424 271.376 474.112 C269.864 471.448 265.256
+				462.16 263.96 460.576 C262.232 457.12 261.944 454.456 262.88 452.368 C264.032
+				451.288 266.048 451 268.568 452.368 z"/>
+	</g>
+	<g id="g52" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path53"
+			d="M273.752 461.584 C275.48 462.376 277.928 463.456 279.224 464.68 C280.376 466.264
+				280.88 467.776 280.736 469.36 C280.52 470.296 279.8 471.016 278.72 471.448 C277.352
+				471.808 275.768 471.448 274.832 470.152 C274.256 469.144 272.456 465.472
+				271.952 464.824 C271.232 463.456 271.088 462.448 271.448 461.584 C271.952
+				461.152 272.744 461.08 273.752 461.584 z"/>
+	</g>
+	<g id="g54" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path55"
+			d="M238.616 358.552 C239.048 359.2 238.976 359.776 238.4 360.28 C237.896 360.784 237.176
+				360.712 236.24 360.208 L231.632 356.248 C231.056 355.744 230.912 354.952
+				231.272 354.088 C232.28 353.44 233.144 353.44 233.936 354.088 z"/>
+	</g>
+	<g id="g56" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path57"
+			d="M235.592 305.992 C239.624 308.224 240.848 313.912 238.184 318.592 C235.592 323.2
+				230.12 325.144 226.016 322.84 C221.984 320.536 220.76 314.92 223.424 310.24
+				C226.016 305.56 231.488 303.688 235.592 305.992 z"/>
+	</g>
+	<g id="g58" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path59"
+			d="M374.912 680.536 C378.296 683.128 373.256 687.376 371.024 686.296 C369.152 685.648
+				367.784 683.488 366.92 682.408 C366.128 681.184 366.2 679.168 366.92 678.448
+				C367.712 677.44 369.728 677.656 371.024 678.52 C372.32 679.168 373.616 679.888
+				374.912 680.536 z"/>
+	</g>
+	<g id="g60" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path61"
+			d="M297.44 551.512 C338.984 572.896 350 611.56 332.072 664.192 C330.992 666.64 334.16
+				668.368 335.24 666.064 C354.824 610.336 341.432 571.312 299.024 548.56 C296.864
+				547.552 295.28 550.432 297.44 551.512 z"/>
+	</g>
+	<g id="g62" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path63"
+			d="M72.008 569.512 C38.312 627.256 38.096 662.68 62.504 681.328 C63.728 682.264 64.448
+				680.032 63.296 679.168 C36.296 655.48 48.896 615.52 74.168 570.88 C74.888
+				569.584 72.512 568.432 72.008 569.512 z"/>
+	</g>
+	<g id="g64" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path65"
+			d="M289.376 586.864 C289.232 589.168 288.368 589.528 286.424 587.368 C279.8 575.848
+				235.088 551.44 213.344 548.704 C209.24 547.264 209.456 545.392 213.488 544.816
+				C229.184 544.816 241.28 537.904 254.96 537.904 C258.704 538.048 262.304 539.488
+				264.392 541.648 C269.504 544.96 288.08 570.592 289.376 586.864 z"/>
+	</g>
+	<g id="g66" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path67"
+			d="M180.152 546.832 C180.872 550.792 163.808 545.68 164.744 556.696 C165.032 559.72
+				160.496 561.376 160.64 556.696 C160.64 548.272 161.072 548.416 152.72 546.832
+				C151.208 546.76 151.352 544.528 152.72 544.816 L152.72 544.816 C158.696 546.472
+				166.76 542.872 166.4 538.84 C166.256 537.472 168.56 537.688 168.488 538.84
+				C167.984 545.248 181.664 542.152 180.152 546.832 z"/>
+	</g>
+	<g id="g68" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path69"
+			d="M151.568 705.376 C151.64 708.328 148.76 707.68 148.544 705.592 C140.192 680.536 143.72
+				618.832 151.856 598.96 C152.432 596.08 156.248 596.944 155.744 598.96
+				C147.104 635.464 147.248 673.048 151.568 705.376 z"/>
+	</g>
+	<g id="g70" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path71"
+			d="M51.704 684.424 C75.68 707.824 91.376 743.248 114.632 775.288 C148.472 816.04 121.472
+				858.304 66.464 845.56 C38.888 835.192 -0.784 836.344 -32.68 825.832 C-55.072
+				820.36 -55.864 809.272 -44.416 787.6 C-40.384 773.776 -40.024 751.312
+				-43.768 732.592 C-45.784 718.408 -39.232 710.488 -24.112 708.832 L-24.112 708.832
+				C-11.296 708.688 6.56 713.872 16.28 686.44 C23.552 673.336 40.976 672.976
+				51.704 684.424 z"/>
+	</g>
+	<g id="g72" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path73"
+			d="M24.632 699.04 C23.84 680.968 39.32 677.296 49.688 688.312 C68.192 710.992 85.112
+				736.048 100.376 764.992 C124.712 804.16 104.624 842.68 67.904 828.064 C49.688
+				817.84 6.128 813.304 -17.344 809.128 C-33.04 807.832 -35.128 797.608 -29.152
+				791.848 C-20.944 782.416 -20.08 759.808 -27.856 740.512 C-35.56 728.56 -21.088
+				715.384 -9.712 720.856 C0.8 727.048 25.64 713.08 24.632 699.04 z"/>
+	</g>
+</svg>
diff --git a/src/svg/robot_yellow.svg b/src/svg/robot_yellow.svg
new file mode 100644
index 0000000..540a112
--- /dev/null
+++ b/src/svg/robot_yellow.svg
@@ -0,0 +1,257 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+	"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" transform="scale(0.05) translate(30,-57)">
+<!-- width="600" height="700" -->
+	<title>Tux</title>
+	<desc>The Linux Penguin in SVG.</desc>
+	<!-- Body paint -->
+	<path style="fill:yellow;stroke:none" d="M 228 235 L 347 235 L 456 435 L 332 607 L 205 607 L 149 435 z"/>
+	<g id="g6" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path7"
+			d="M329.336 727.552 C315.224 726.328 304.136 715.816 303.128 694.936 C306.368 639.496
+				309.608 582.112 271.232 545.104 C265.256 499.024 244.016 482.104 234.008 452.512
+				L218.24 441.208 L237.104 411.688 L245.168 411.904 L323.936 571.168 L340.424
+				651.448 z"/>
+	</g>
+	<g id="g8" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path9"
+			d="M136.232 439.696 C133.856 455.248 132.56 470.512 134.792 485.272 C118.376 507.592
+				105.92 530.128 104.48 553.312 C92.024 586.504 62.432 614.584 67.544 680.104
+				C84.176 697.456 107.432 713.584 127.376 730.36 C152.432 751.312 137.528 778.96
+				102.248 772.408 C94.4 763.768 76.616 709.624 42.92 676.288 L49.544 632.584
+				L81.368 547.408 L120.968 484.048 L125.36 456.688 L119.816 386.776 L124.424
+				361.216 L136.232 439.696 z"/>
+	</g>
+	<g id="g10" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path11"
+			d="M115.64 341.416 C116.576 336.376 117.8 331.624 119.312 327.16 L121.688 342.784 z"
+			/>
+	</g>
+	<g id="g12" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path13"
+			d="M120.968 500.464 C108.368 523.792 103.976 546.256 132.92 550.216 C117.008 553.888
+				97.208 568.648 77.192 593.488 L77.624 543.016 L101.456 503.272 z"/>
+	</g>
+	<g id="g14" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path15"
+			d="M-33.256 818.488 C10.52 838.144 41.408 837.064 69.272 850.96 C91.304 862.552 113.552
+				861.184 126.944 847.144 C138.32 832.456 146.744 831.736 163.52 830.224 C190.952
+				828.568 217.736 828.28 241.928 830.8 L269.576 833.032 C269.072 864.064
+				328.04 867.88 345.392 844.336 C366.344 819.424 395.144 808.264 419.84 790.192
+				L289.304 725.536 C255.824 806.464 131.048 827.632 113.768 763.264 z"/>
+	</g>
+	<g id="g16" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path17"
+			d="M286.424 711.568 C273.824 711.496 260.936 715.6 261.944 732.16 L266.192 776.44 L304.424
+				756.64 z"/>
+	</g>
+	<g id="g18" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path19"
+			d="M-37.36 821.224 C7.136 840.88 38.6 839.728 66.968 853.696 C89.36 865.216 111.968
+				863.92 125.648 849.808 C137.24 835.192 145.808 834.472 162.872 832.96 C190.736
+				831.232 218.024 831.016 242.648 833.464 L270.728 835.768 C270.224 866.8 330.272
+				870.544 347.912 847 C369.224 822.088 398.528 811 423.656 792.856 L290.816
+				728.272 C256.76 809.128 129.824 830.296 112.256 766 z"/>
+	</g>
+	<g id="g20" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path21"
+			d="M382.328 691.984 C403.64 698.968 389.888 720.28 400.76 732.52 C405.44 742.888 415.304
+				752.032 431.792 760.528 C459.368 774.424 426.248 799.336 392.768 812.08
+				C351.944 825.616 344.024 862.912 299.312 851.896 C283.112 846.496 278.36 831.808
+				278.864 809.128 C284.264 762.76 277.784 730.432 278.792 698.824 C278.72
+				686.152 283.544 684.64 307.232 687.952 C310.04 726.328 352.376 727.336 382.328
+				691.984 z"/>
+	</g>
+	<g id="g22" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path23"
+			d="M339.632 826.624 C371.6 814.312 403.856 798.112 429.848 782.128 C437.84 777.448 438.92
+				765.928 427.688 762.328 C403.352 748.504 390.104 731.224 392.912 708.76
+				C393.344 700.912 383.696 692.56 381.104 700.048 C359.864 771.472 291.32 767.656
+				300.752 696.952 C301.256 694.864 301.76 692.776 302.264 690.76 C289.952
+				688.24 285.2 690.976 285.776 700.408 L295.28 806.608 C297.656 830.8 317.312
+				836.128 339.632 826.624 z"/>
+	</g>
+	<g id="g24" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path25"
+			d="M354.464 537.544 C379.16 569.8 404.432 651.088 384.416 691.552 C360.944 737.776 307.808
+				743.248 305.504 695.8 C308.816 639.64 311.984 581.536 273.68 544.096
+				C267.704 497.368 246.392 480.232 236.384 450.28 L203.12 426.088 L133.568 435.088
+				C130.76 452.152 129.104 468.784 131.552 484.912 C115.064 507.376 102.608
+				530.056 101.168 553.312 C88.712 586.648 59.12 614.944 64.232 680.752 C80.864
+				698.248 104.12 714.448 124.064 731.296 C149.12 752.392 135.512 776.296 100.232
+				769.672 C78.848 746.056 56.744 722.872 35.288 699.328 C12.392 683.056
+				3.896 662.176 27.368 630.496 C43.424 609.04 47.96 562.456 62 543.664 C74.312
+				525.16 92.24 508.6 105.272 490.096 C112.184 477.928 114.344 468.568 113.264
+				454.456 L110.312 369.136 C108.368 307.216 142.424 274.24 189.8 275.248 C243.512
+				275.752 287.576 312.472 288.152 378.28 C292.688 410.32 283.256 428.68 308.672
+				474.472 C334.52 522.712 338.552 520.12 354.464 537.544 z"/>
+	</g>
+	<g id="g26" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path27"
+			d="M261.296 503.632 L263.528 512.2 C257.696 501.688 250.712 483.616 241.928 475.696
+				C239.264 473.536 235.808 473.608 233.72 475.624 C222.056 486.928 193.112 510.112
+				169.928 507.088 C152.072 505.288 134.648 493.264 130.832 480.232 C128.816
+				470.872 129.752 463.168 130.976 455.32 L240.704 453.52 C238.472 463.168 253.088
+				487 261.296 503.632 z"/>
+	</g>
+	<g id="g28" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path29"
+			d="M143.144 363.232 C154.088 363.232 163.88 376.84 163.808 395.632 C163.736 408.232
+				155.528 411.472 149.336 417.016 C146.6 419.536 145.952 433.144 142.568 433.144
+				C131.696 433.144 123.488 413.776 123.488 395.632 C123.488 377.56 132.272
+				363.232 143.144 363.232 z"/>
+	</g>
+	<g id="g30" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path31"
+			d="M144.368 375.04 C154.088 375.04 160.856 379.936 161.648 391.312 C162.224 399.16 160.136
+				411.76 154.664 414.424 C152.144 415.648 143.432 426.664 140.408 426.52
+				C128.096 425.944 125 402.112 125.936 390.736 C126.8 379.36 134.72 375.04 144.368
+				375.04 z"/>
+	</g>
+	<g id="g32" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path33"
+			d="M141.848 382.672 C148.544 382.096 154.736 389.728 155.6 399.664 C156.464 409.6 151.64
+				418.24 144.944 418.816 C138.248 419.392 132.056 411.76 131.192 401.752
+				C130.328 391.816 135.152 383.248 141.848 382.672 z"/>
+	</g>
+	<g id="g34" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path35"
+			d="M151.064 397.288 C151.424 399.088 149.408 400.024 148.832 398.224 C148.256 395.992
+				146.888 393.328 145.088 391.168 C143.936 389.872 145.088 388.432 146.528 389.44
+				C149.048 391.528 150.488 394.12 151.064 397.288 z"/>
+	</g>
+	<g id="g36" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path37"
+			d="M216.944 360.712 C232.712 360.712 245.6 377.416 245.6 397.792 C245.6 418.24 232.712
+				434.872 216.944 434.872 C201.176 434.872 188.432 418.24 188.432 397.792 C188.432
+				377.416 201.176 360.712 216.944 360.712 z"/>
+	</g>
+	<g id="g38" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path39"
+			d="M224.792 374.968 C235.664 378.856 241.928 387.424 242.72 396.568 C243.656 407.08
+				239.408 418.96 230.264 425.944 C227.672 427.888 197.72 416.08 195.992 411.616
+				C193.4 405.208 191.816 392.896 193.76 385.624 C194.552 382.744 197.216 378.568
+				201.176 376.336 C207.44 372.808 216.656 372.088 224.792 374.968 z"/>
+	</g>
+	<g id="g40" style="fill:#000000" transform="translate(98.9154 -217.691)">
+		<path id="path41"
+			d="M216.872 380.944 C225.584 380.944 232.712 389.296 232.712 399.448 C232.712 409.672
+				225.584 418.024 216.872 418.024 C208.16 418.024 201.032 409.672 201.032 399.448
+				C201.032 389.296 208.16 380.944 216.872 380.944 z"/>
+	</g>
+	<g id="g42" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path43"
+			d="M227.096 392.392 C228.104 394.048 226.448 395.776 225.224 394.12 C223.784 392.104
+				221.408 389.944 218.888 388.432 C217.232 387.568 217.808 385.624 219.68 386.2
+				C222.92 387.28 225.368 389.368 227.096 392.392 z"/>
+	</g>
+	<g id="g44" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path45"
+			d="M164.96 404.488 C172.376 402.328 184.112 403.048 192.248 404.632 C200.384 406.792
+				222.056 418.24 245.024 430.696 C247.976 432.208 248.84 437.104 245.024 438.688
+				C239.12 439.12 249.272 453.664 238.904 458.848 C223.352 462.88 198.44 485.992
+				186.128 487.864 C179.288 489.376 172.232 489.592 164.6 487.864 C140.552
+				482.968 134.216 455.608 122.912 450.064 C119.816 446.824 121.4 441.208 122.408
+				440.056 C123.632 434.224 149.696 406.216 164.96 404.488 z"/>
+	</g>
+	<g id="g46" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path47"
+			d="M185.408 405.856 C198.44 407.296 226.088 423.928 239.408 430.624 C242.72 432.424
+				242.504 437.824 239.552 438.688 C236.384 440.488 235.448 438.256 232.928 437.896
+				C228.896 435.736 222.272 440.92 217.016 444.88 C186.704 467.776 180.656
+				465.256 156.176 462.664 C147.68 460.576 142.136 457.984 139.688 455.968 C141.488
+				445.888 160.496 407.656 166.76 406.792 C168.344 404.704 179.936 404.632
+				185.408 405.856 z"/>
+	</g>
+	<g id="g48" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path49"
+			d="M190.664 412.048 L193.76 413.416 C196.064 414.712 193.256 418.168 190.736 417.088
+				L186.2 415.504 C183.536 413.272 186.704 410.104 190.664 412.048 z"/>
+	</g>
+	<g id="g50" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path51"
+			d="M268.568 452.368 C273.032 454.384 279.224 457.192 282.536 460.144 C285.488 464.104
+				286.784 468.064 286.424 472.024 C285.776 474.544 284.12 476.344 281.24 477.424
+				C277.856 478.216 273.68 477.424 271.376 474.112 C269.864 471.448 265.256
+				462.16 263.96 460.576 C262.232 457.12 261.944 454.456 262.88 452.368 C264.032
+				451.288 266.048 451 268.568 452.368 z"/>
+	</g>
+	<g id="g52" style="fill:#ffffff" transform="translate(98.9154 -217.691)">
+		<path id="path53"
+			d="M273.752 461.584 C275.48 462.376 277.928 463.456 279.224 464.68 C280.376 466.264
+				280.88 467.776 280.736 469.36 C280.52 470.296 279.8 471.016 278.72 471.448 C277.352
+				471.808 275.768 471.448 274.832 470.152 C274.256 469.144 272.456 465.472
+				271.952 464.824 C271.232 463.456 271.088 462.448 271.448 461.584 C271.952
+				461.152 272.744 461.08 273.752 461.584 z"/>
+	</g>
+	<g id="g54" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path55"
+			d="M238.616 358.552 C239.048 359.2 238.976 359.776 238.4 360.28 C237.896 360.784 237.176
+				360.712 236.24 360.208 L231.632 356.248 C231.056 355.744 230.912 354.952
+				231.272 354.088 C232.28 353.44 233.144 353.44 233.936 354.088 z"/>
+	</g>
+	<g id="g56" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path57"
+			d="M235.592 305.992 C239.624 308.224 240.848 313.912 238.184 318.592 C235.592 323.2
+				230.12 325.144 226.016 322.84 C221.984 320.536 220.76 314.92 223.424 310.24
+				C226.016 305.56 231.488 303.688 235.592 305.992 z"/>
+	</g>
+	<g id="g58" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path59"
+			d="M374.912 680.536 C378.296 683.128 373.256 687.376 371.024 686.296 C369.152 685.648
+				367.784 683.488 366.92 682.408 C366.128 681.184 366.2 679.168 366.92 678.448
+				C367.712 677.44 369.728 677.656 371.024 678.52 C372.32 679.168 373.616 679.888
+				374.912 680.536 z"/>
+	</g>
+	<g id="g60" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path61"
+			d="M297.44 551.512 C338.984 572.896 350 611.56 332.072 664.192 C330.992 666.64 334.16
+				668.368 335.24 666.064 C354.824 610.336 341.432 571.312 299.024 548.56 C296.864
+				547.552 295.28 550.432 297.44 551.512 z"/>
+	</g>
+	<g id="g62" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path63"
+			d="M72.008 569.512 C38.312 627.256 38.096 662.68 62.504 681.328 C63.728 682.264 64.448
+				680.032 63.296 679.168 C36.296 655.48 48.896 615.52 74.168 570.88 C74.888
+				569.584 72.512 568.432 72.008 569.512 z"/>
+	</g>
+	<g id="g64" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path65"
+			d="M289.376 586.864 C289.232 589.168 288.368 589.528 286.424 587.368 C279.8 575.848
+				235.088 551.44 213.344 548.704 C209.24 547.264 209.456 545.392 213.488 544.816
+				C229.184 544.816 241.28 537.904 254.96 537.904 C258.704 538.048 262.304 539.488
+				264.392 541.648 C269.504 544.96 288.08 570.592 289.376 586.864 z"/>
+	</g>
+	<g id="g66" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path67"
+			d="M180.152 546.832 C180.872 550.792 163.808 545.68 164.744 556.696 C165.032 559.72
+				160.496 561.376 160.64 556.696 C160.64 548.272 161.072 548.416 152.72 546.832
+				C151.208 546.76 151.352 544.528 152.72 544.816 L152.72 544.816 C158.696 546.472
+				166.76 542.872 166.4 538.84 C166.256 537.472 168.56 537.688 168.488 538.84
+				C167.984 545.248 181.664 542.152 180.152 546.832 z"/>
+	</g>
+	<g id="g68" style="fill-opacity:0.5;fill:#c1c1bf" transform="translate(98.9154 -217.691)">
+		<path id="path69"
+			d="M151.568 705.376 C151.64 708.328 148.76 707.68 148.544 705.592 C140.192 680.536 143.72
+				618.832 151.856 598.96 C152.432 596.08 156.248 596.944 155.744 598.96
+				C147.104 635.464 147.248 673.048 151.568 705.376 z"/>
+	</g>
+	<g id="g70" style="fill:#b77200" transform="translate(98.9154 -217.691)">
+		<path id="path71"
+			d="M51.704 684.424 C75.68 707.824 91.376 743.248 114.632 775.288 C148.472 816.04 121.472
+				858.304 66.464 845.56 C38.888 835.192 -0.784 836.344 -32.68 825.832 C-55.072
+				820.36 -55.864 809.272 -44.416 787.6 C-40.384 773.776 -40.024 751.312
+				-43.768 732.592 C-45.784 718.408 -39.232 710.488 -24.112 708.832 L-24.112 708.832
+				C-11.296 708.688 6.56 713.872 16.28 686.44 C23.552 673.336 40.976 672.976
+				51.704 684.424 z"/>
+	</g>
+	<g id="g72" style="fill:#f2b700" transform="translate(98.9154 -217.691)">
+		<path id="path73"
+			d="M24.632 699.04 C23.84 680.968 39.32 677.296 49.688 688.312 C68.192 710.992 85.112
+				736.048 100.376 764.992 C124.712 804.16 104.624 842.68 67.904 828.064 C49.688
+				817.84 6.128 813.304 -17.344 809.128 C-33.04 807.832 -35.128 797.608 -29.152
+				791.848 C-20.944 782.416 -20.08 759.808 -27.856 740.512 C-35.56 728.56 -21.088
+				715.384 -9.712 720.856 C0.8 727.048 25.64 713.08 24.632 699.04 z"/>
+	</g>
+</svg>
diff --git a/src/svg/target_blue_circle.svg b/src/svg/target_blue_circle.svg
new file mode 100644
index 0000000..8567a4f
--- /dev/null
+++ b/src/svg/target_blue_circle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <circle style="fill:blue;stroke:none" cx="16" cy="16" r="16"/>
+</svg>
diff --git a/src/svg/target_blue_octagon.svg b/src/svg/target_blue_octagon.svg
new file mode 100644
index 0000000..bac739b
--- /dev/null
+++ b/src/svg/target_blue_octagon.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:blue;stroke:none" d="M 9.37,0 l 13.26,0 l 9.37,9.37 l 0,13.26 l -9.37,9.37 l -13.26,0 l -9.37,-9.37 l 0,-13.26 z"/>
+</svg>
diff --git a/src/svg/target_blue_square.svg b/src/svg/target_blue_square.svg
new file mode 100644
index 0000000..5f3555b
--- /dev/null
+++ b/src/svg/target_blue_square.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <rect style="fill:blue;stroke:none" x="0" y="0" width="32" height="32"/>
+</svg>
diff --git a/src/svg/target_blue_triangle.svg b/src/svg/target_blue_triangle.svg
new file mode 100644
index 0000000..68d0b3b
--- /dev/null
+++ b/src/svg/target_blue_triangle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:blue;stroke:none" d="M 0,28 l 16,-27.71 l 16,27.71 z"/>
+</svg>
diff --git a/src/svg/target_green_circle.svg b/src/svg/target_green_circle.svg
new file mode 100644
index 0000000..64cd2ee
--- /dev/null
+++ b/src/svg/target_green_circle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <circle style="fill:green;stroke:none" cx="16" cy="16" r="16"/>
+</svg>
diff --git a/src/svg/target_green_octagon.svg b/src/svg/target_green_octagon.svg
new file mode 100644
index 0000000..1d64e44
--- /dev/null
+++ b/src/svg/target_green_octagon.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:green;stroke:none" d="M 9.37,0 l 13.26,0 l 9.37,9.37 l 0,13.26 l -9.37,9.37 l -13.26,0 l -9.37,-9.37 l 0,-13.26 z"/>
+</svg>
diff --git a/src/svg/target_green_square.svg b/src/svg/target_green_square.svg
new file mode 100644
index 0000000..71c9c6a
--- /dev/null
+++ b/src/svg/target_green_square.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <rect style="fill:green;stroke:none" x="0" y="0" width="32" height="32"/>
+</svg>
diff --git a/src/svg/target_green_triangle.svg b/src/svg/target_green_triangle.svg
new file mode 100644
index 0000000..7dd26b3
--- /dev/null
+++ b/src/svg/target_green_triangle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:green;stroke:none" d="M 0,28 l 16,-27.71 l 16,27.71 z"/>
+</svg>
diff --git a/src/svg/target_red_circle.svg b/src/svg/target_red_circle.svg
new file mode 100644
index 0000000..19f7615
--- /dev/null
+++ b/src/svg/target_red_circle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <circle style="fill:red;stroke:none" cx="16" cy="16" r="16"/>
+</svg>
diff --git a/src/svg/target_red_octagon.svg b/src/svg/target_red_octagon.svg
new file mode 100644
index 0000000..5fe9714
--- /dev/null
+++ b/src/svg/target_red_octagon.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:red;stroke:none" d="M 9.37,0 l 13.26,0 l 9.37,9.37 l 0,13.26 l -9.37,9.37 l -13.26,0 l -9.37,-9.37 l 0,-13.26 z"/>
+</svg>
diff --git a/src/svg/target_red_square.svg b/src/svg/target_red_square.svg
new file mode 100644
index 0000000..d84253f
--- /dev/null
+++ b/src/svg/target_red_square.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <rect style="fill:red;stroke:none" x="0" y="0" width="32" height="32"/>
+</svg>
diff --git a/src/svg/target_red_triangle.svg b/src/svg/target_red_triangle.svg
new file mode 100644
index 0000000..37a7398
--- /dev/null
+++ b/src/svg/target_red_triangle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:red;stroke:none" d="M 0,28 l 16,-27.71 l 16,27.71 z"/>
+</svg>
diff --git a/src/svg/target_whirl.svg b/src/svg/target_whirl.svg
new file mode 100644
index 0000000..551b0ef
--- /dev/null
+++ b/src/svg/target_whirl.svg
@@ -0,0 +1,57 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg transform="translate(16,16)">
+  <path
+     style="fill:blue;stroke:none"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C  16 -8.832 8.832 -16 0 -16
+	C -8.09982 -15.3663 -14.737 -8.24206 -14 0
+	C -13.3731 7.01075 -7.15182 12.7461 0 12
+	C 5.92184 11.3823 10.7587 6.06102 10 0
+	C 9.39499 -4.83317 4.96904 -8.77753 0 -8
+	C -3.74481 -7.41403 -6.80825 -3.87403 -6 0
+	C -5.44577 2.6565 -2.76894 4.86654 0 4
+	C 1.56445 3.51041 3.00786 1.61026 2 0
+	C 1.52281 -0.762403 0.246551 -1.08021 0 0"/>
+  <path
+     style="fill:green;stroke:none"
+     transform="rotate(90)"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C  16 -8.832 8.832 -16 0 -16
+	C -8.09982 -15.3663 -14.737 -8.24206 -14 0
+	C -13.3731 7.01075 -7.15182 12.7461 0 12
+	C 5.92184 11.3823 10.7587 6.06102 10 0
+	C 9.39499 -4.83317 4.96904 -8.77753 0 -8
+	C -3.74481 -7.41403 -6.80825 -3.87403 -6 0
+	C -5.44577 2.6565 -2.76894 4.86654 0 4
+	C 1.56445 3.51041 3.00786 1.61026 2 0
+	C 1.52281 -0.762403 0.246551 -1.08021 0 0"/>
+  <path
+     style="fill:red;stroke:none"
+     transform="rotate(180)"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C  16 -8.832 8.832 -16 0 -16
+	C -8.09982 -15.3663 -14.737 -8.24206 -14 0
+	C -13.3731 7.01075 -7.15182 12.7461 0 12
+	C 5.92184 11.3823 10.7587 6.06102 10 0
+	C 9.39499 -4.83317 4.96904 -8.77753 0 -8
+	C -3.74481 -7.41403 -6.80825 -3.87403 -6 0
+	C -5.44577 2.6565 -2.76894 4.86654 0 4
+	C 1.56445 3.51041 3.00786 1.61026 2 0
+	C 1.52281 -0.762403 0.246551 -1.08021 0 0"/>
+  <path
+     style="fill:yellow;stroke:none"
+     transform="rotate(270)"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C  16 -8.832 8.832 -16 0 -16
+	C -8.09982 -15.3663 -14.737 -8.24206 -14 0
+	C -13.3731 7.01075 -7.15182 12.7461 0 12
+	C 5.92184 11.3823 10.7587 6.06102 10 0
+	C 9.39499 -4.83317 4.96904 -8.77753 0 -8
+	C -3.74481 -7.41403 -6.80825 -3.87403 -6 0
+	C -5.44577 2.6565 -2.76894 4.86654 0 4
+	C 1.56445 3.51041 3.00786 1.61026 2 0
+	C 1.52281 -0.762403 0.246551 -1.08021 0 0"/>
+</svg>
+
diff --git a/src/svg/target_yellow_circle.svg b/src/svg/target_yellow_circle.svg
new file mode 100644
index 0000000..07de788
--- /dev/null
+++ b/src/svg/target_yellow_circle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <circle style="fill:yellow;stroke:black;stroke-width=2;" cx="16" cy="16" r="16"/>
+</svg>
diff --git a/src/svg/target_yellow_octagon.svg b/src/svg/target_yellow_octagon.svg
new file mode 100644
index 0000000..44ffde5
--- /dev/null
+++ b/src/svg/target_yellow_octagon.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:yellow;stroke:black;stroke-width=2;" d="M 9.37,0 l 13.26,0 l 9.37,9.37 l 0,13.26 l -9.37,9.37 l -13.26,0 l -9.37,-9.37 l 0,-13.26 z"/>
+</svg>
diff --git a/src/svg/target_yellow_square.svg b/src/svg/target_yellow_square.svg
new file mode 100644
index 0000000..0eb0f98
--- /dev/null
+++ b/src/svg/target_yellow_square.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <rect style="fill:yellow;stroke:black;stroke-width=2;" x="0" y="0" width="32" height="32"/>
+</svg>
diff --git a/src/svg/target_yellow_triangle.svg b/src/svg/target_yellow_triangle.svg
new file mode 100644
index 0000000..36fd483
--- /dev/null
+++ b/src/svg/target_yellow_triangle.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <path style="fill:yellow;stroke:black;stroke-width=2;" d="M 0,28 l 16,-27.71 l 16,27.71 z"/>
+</svg>
diff --git a/src/svg/w b/src/svg/w
new file mode 100644
index 0000000..2a61fe5
--- /dev/null
+++ b/src/svg/w
@@ -0,0 +1,77 @@
+-2 -3
+-2 -3
+-2 -3
+-2 -3
+-2 -3
+-2 -3
+-2 -3
+34 39
+-2 -3
+37.038 40.055
+36.145 43.645
+34 44.987
+-2 -3
+29.471 47.821
+24.127 43.762
+22.75 39
+-2 -3
+20.313 31.574
+26.529 24.045
+34 22.487
+-2 -3
+44.896 20.213
+54.852 28.829
+56.5 39
+-2 -3
+58.687 53.337
+47.594 65.785
+34 67.487
+-2 -3
+16.954 69.621
+1.988 56.017
+0 39
+-2 -3
+-1.848 19.247
+14.283 1.75
+34 0
+-2 -3
+57.181 -2.086
+77.218 16.581
+79 39
+-2 -3
+79.156 69.947
+52.437 84.323
+34 84
+-2 -3
+56.775 82.5
+75.372 62.399
+73.219 39.225
+-2 -3
+71.388 19.513
+53.834 3.443
+33.727 5.612
+-2 -3
+17.078 7.407
+3.526 22.42
+5.719 39.459
+-2 -3
+7.468 53.047
+19.954 64.097
+33.922 61.862
+-2 -3
+44.449 60.177
+53.03 50.191
+50.719 39.303
+-2 -3
+49.134 31.837
+41.584 25.647
+33.805 28.112
+-2 -3
+29.41 29.504
+25.369 34.862
+28.219 39.381
+-2 -3
+29.569 41.521
+33.278 42.363
+34 39
+-2 -3
diff --git a/src/svg/w.svg b/src/svg/w.svg
new file mode 100644
index 0000000..8a86aa8
--- /dev/null
+++ b/src/svg/w.svg
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
+<svg
+   id="svg101"
+   sodipodi:version="0.31"
+   width="210mm"
+   height="297mm"
+   sodipodi:docname="w.svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink">
+  <defs
+     id="defs103" />
+  <sodipodi:namedview
+     id="base"
+     showgrid="true"
+     snaptogrid="true"
+     gridspacingy="0.19685in"
+     gridspacingx="0.2in"
+     gridoriginy="0.16in" />
+  <path
+     style="stroke:black;stroke-width:0.125;fill:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0"/>
+  <path
+     transform="matrix(0.707107,-0.707107,0.707107,0.707107,0,0)"
+     style="stroke:black;stroke-width:0.125;fill:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0"/>
+  <path
+     style="stroke:black;stroke-width:0.125;fill:none;"
+     d="M 11.3137 -11.3137 C 14.4363 -8.19113 16 -4.416 16 0"/>
+</svg>
diff --git a/src/svg/wall.svg b/src/svg/wall.svg
new file mode 100644
index 0000000..98de7d7
--- /dev/null
+++ b/src/svg/wall.svg
@@ -0,0 +1,6 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" 
+  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
+<svg width="32" height="32">
+  <line style="fill:none;stroke:black;stroke-width:4;" x1="-2" y1="0" x2="34" y2="0"/>
+</svg>
diff --git a/src/svg/whirl.svg b/src/svg/whirl.svg
new file mode 100644
index 0000000..9b63225
--- /dev/null
+++ b/src/svg/whirl.svg
@@ -0,0 +1,87 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg width="744.094" height="1052.36">
+  <path style="fill:red;stroke:none;"
+     d="M 34 39
+	C 37.25 40.055 36.145 43.645 34 44.987
+	C 29.471 47.821 24.127 43.762 22.75 39
+	C 20.313 31.574 26.529 24.045 34 22.487
+	C 44.896 20.213 54.852 28.829 56.5 39
+	C 58.687 53.337 47.594 65.785 34 67.487
+	C 16.954 69.621 1.988 56.017 0 39
+	C -1.848 19.247 14.283 1.75 34 0
+	C 57.181 -2.086 77.218 16.581 79 39
+	C 79.156 69.947 52.437 84.323 34 84
+	C 56.775 82.5 75.372 62.399 73.219 39.225
+	C 71.388 19.513 53.834 3.443 33.727 5.612
+	C 17.078 7.407 3.526 22.42 5.719 39.459
+	C 7.468 53.047 19.954 64.097 33.922 61.862
+	C 44.449 60.177 53.03 50.191 50.719 39.303
+	C 49.134 31.837 41.584 25.647 33.805 28.112
+	C 29.41 29.504 25.369 34.862 28.219 39.381
+	C 29.569 41.521 33.25 42.25 34 39"/>
+  <g transform="translate(34,39),rotate(90),translate(-34,-39)">
+  <path style="fill:blue;stroke:none;"
+     d="M 34 39
+	C 37.25 40.055 36.145 43.645 34 44.987
+	C 29.471 47.821 24.127 43.762 22.75 39
+	C 20.313 31.574 26.529 24.045 34 22.487
+	C 44.896 20.213 54.852 28.829 56.5 39
+	C 58.687 53.337 47.594 65.785 34 67.487
+	C 16.954 69.621 1.988 56.017 0 39
+	C -1.848 19.247 14.283 1.75 34 0
+	C 57.181 -2.086 77.218 16.581 79 39
+	C 79.156 69.947 52.437 84.323 34 84
+	C 56.775 82.5 75.372 62.399 73.219 39.225
+	C 71.388 19.513 53.834 3.443 33.727 5.612
+	C 17.078 7.407 3.526 22.42 5.719 39.459
+	C 7.468 53.047 19.954 64.097 33.922 61.862
+	C 44.449 60.177 53.03 50.191 50.719 39.303
+	C 49.134 31.837 41.584 25.647 33.805 28.112
+	C 29.41 29.504 25.369 34.862 28.219 39.381
+	C 29.569 41.521 33.25 42.25 34 39"/>
+  </g>
+  <g transform="translate(34,39),rotate(180),translate(-34,-39)">
+  <path style="fill:green;stroke:none;"
+     d="M 34 39
+	C 37.25 40.055 36.145 43.645 34 44.987
+	C 29.471 47.821 24.127 43.762 22.75 39
+	C 20.313 31.574 26.529 24.045 34 22.487
+	C 44.896 20.213 54.852 28.829 56.5 39
+	C 58.687 53.337 47.594 65.785 34 67.487
+	C 16.954 69.621 1.988 56.017 0 39
+	C -1.848 19.247 14.283 1.75 34 0
+	C 57.181 -2.086 77.218 16.581 79 39
+	C 79.156 69.947 52.437 84.323 34 84
+	C 56.775 82.5 75.372 62.399 73.219 39.225
+	C 71.388 19.513 53.834 3.443 33.727 5.612
+	C 17.078 7.407 3.526 22.42 5.719 39.459
+	C 7.468 53.047 19.954 64.097 33.922 61.862
+	C 44.449 60.177 53.03 50.191 50.719 39.303
+	C 49.134 31.837 41.584 25.647 33.805 28.112
+	C 29.41 29.504 25.369 34.862 28.219 39.381
+	C 29.569 41.521 33.25 42.25 34 39"/>
+  </g>
+  <g transform="translate(34,39),rotate(270),translate(-34,-39)">
+  <path style="fill:yellow;stroke:none;"
+     d="M 34 39
+	C 37.25 40.055 36.145 43.645 34 44.987
+	C 29.471 47.821 24.127 43.762 22.75 39
+	C 20.313 31.574 26.529 24.045 34 22.487
+	C 44.896 20.213 54.852 28.829 56.5 39
+	C 58.687 53.337 47.594 65.785 34 67.487
+	C 16.954 69.621 1.988 56.017 0 39
+	C -1.848 19.247 14.283 1.75 34 0
+	C 57.181 -2.086 77.218 16.581 79 39
+	C 79.156 69.947 52.437 84.323 34 84
+	C 56.775 82.5 75.372 62.399 73.219 39.225
+	C 71.388 19.513 53.834 3.443 33.727 5.612
+	C 17.078 7.407 3.526 22.42 5.719 39.459
+	C 7.468 53.047 19.954 64.097 33.922 61.862
+	C 44.449 60.177 53.03 50.191 50.719 39.303
+	C 49.134 31.837 41.584 25.647 33.805 28.112
+	C 29.41 29.504 25.369 34.862 28.219 39.381
+	C 29.569 41.521 33.25 42.25 34 39"/>
+  </g>
+ </svg>
diff --git a/src/svg/whirl_non_sodi.svg b/src/svg/whirl_non_sodi.svg
new file mode 100644
index 0000000..479ee36
--- /dev/null
+++ b/src/svg/whirl_non_sodi.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg>
+  <path
+     style="fill:none;stroke:black;stroke-width:1"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0 "/>
+  <path
+     transform="matrix(0,-1,1,0,0,0)"
+     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.125;"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0 "
+     id="path113" />
+  <path
+     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.125;"
+     d="M 8.61478 12.5872 L 8.61478 12.5872 z "
+     id="path112" />
+  <path
+     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.125;"
+     d="M -1.2246e-06 -16 C 8.832 -16 16 -8.832 16 -1.2246e-06 C 16 -7.94261e-07 16 -4.30343e-07 16 -3.91874e-15 L 0 0 L -1.2246e-06 -16 z "
+     id="path108" />
+</svg>
diff --git a/src/svg/whirl_sodi.svg b/src/svg/whirl_sodi.svg
new file mode 100644
index 0000000..479ee36
--- /dev/null
+++ b/src/svg/whirl_sodi.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg>
+  <path
+     style="fill:none;stroke:black;stroke-width:1"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0 "/>
+  <path
+     transform="matrix(0,-1,1,0,0,0)"
+     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.125;"
+     d="M 0 0 C 1.08021 0.246551 0.762403 1.52281 0 2 C -1.61026 3.00786 -3.51041 1.56445 -4 0 C -4.86654 -2.76894 -2.6565 -5.44577 0 -6 C 3.87403 -6.80825 7.41403 -3.74481 8 0 C 8.77753 4.96904 4.83317 9.39499 0 10 C -6.06102 10.7587 -11.3823 5.92184 -12 0 C -12.7461 -7.15182 -7.01075 -13.3731 0 -14 C 8.24206 -14.737 15.3663 -8.09982 16 0 "
+     id="path113" />
+  <path
+     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.125;"
+     d="M 8.61478 12.5872 L 8.61478 12.5872 z "
+     id="path112" />
+  <path
+     style="font-size:12;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.125;"
+     d="M -1.2246e-06 -16 C 8.832 -16 16 -8.832 16 -1.2246e-06 C 16 -7.94261e-07 16 -4.30343e-07 16 -3.91874e-15 L 0 0 L -1.2246e-06 -16 z "
+     id="path108" />
+</svg>
diff --git a/src/svg/x.svg b/src/svg/x.svg
new file mode 100644
index 0000000..7dc9f04
--- /dev/null
+++ b/src/svg/x.svg
@@ -0,0 +1,164 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg>
+  <path style="fill:blue;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(45)"
+        style="fill:blue;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(90)"
+        style="fill:green;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(135)"
+        style="fill:green;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(180)"
+	style="fill:red;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(225)"
+        style="fill:red;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(270)"
+        style="fill:yellow;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+  <path transform="rotate(315)"
+        style="fill:yellow;stroke:none;"
+     d="M 0 0
+	C 1.08021 0.246551 0.762403 1.52281 0 2
+	C -1.61026 3.00786 -3.51041 1.56445 -4 0
+	C -4.86654 -2.76894 -2.6565 -5.44577 0 -6
+	C 3.87403 -6.80825 7.41403 -3.74481 8 0
+	C 8.77753 4.96904 4.83317 9.39499 0 10
+	C -6.06102 10.7587 -11.3823 5.92184 -12 0
+	C -12.7461 -7.15182 -7.01075 -13.3731 0 -14
+	C 8.24206 -14.737 15.3663 -8.09982 16 0
+	C 16 -4.416 14.4363 -8.19113 11.3137 -11.3137
+	C 5.13818 -16.5931 -4.59262 -16.2487 -9.8995 -9.8995
+	C -14.4136 -4.49886 -14.07 3.95575 -8.48528 8.48528
+	C -3.86113 12.2359 3.32176 11.8933 7.07107 7.07107
+	C 10.0608 3.22569 9.7203 -2.69301 5.65686 -5.65686
+	C 2.59453 -7.89049 -2.07481 -7.55352 -4.24264 -4.24264
+	C -5.72917 -1.97231 -5.3991 1.48323 -2.82843 2.82843
+	C -1.376 3.58847 0.988253 3.26551 1.41421 1.41421
+	C 1.61589 0.537689 0.938162 -0.589486 0 0"/>
+</svg>
-- 
2.45.2