From e8e594af66a57517052d9d7d341687880fa9a7ae Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 13 Jun 2003 10:39:03 +0000 Subject: [PATCH] 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 + 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 , 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 <&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 </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 <> ${libobj}T </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 <> ${libobj}T <&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 </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 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 <> $cwrappersource<<"EOF" +#include +#include +#include +#include +#include +#include + +#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 <> $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 <> $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 ." + 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 + */ + +#include +#include + +#include "args.h" + +const char *argp_program_version = "grrobot " VERSION; + +const char *argp_program_bug_address = ""; + +static char doc[] = "grrobot - Ricochet Robot using GTK+ and Xr"; + +/* XXX: SAMPLE: */ +static char args_doc[] = ""; + +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 + */ + +#ifndef ARGS_H +#define ARGS_H + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +#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 + */ + +#include +#include + +#include +#include +#include +#include +#include + +#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 + */ + +#ifndef GRR_BOARD_VIEW_H +#define GRR_BOARD_VIEW_H + +#include +#include +#include + +#include + +#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 + */ + +#include +#include +#include +#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 + */ + +#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 + */ + +#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 +#include +#include +#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 + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include + +#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, ¬ice_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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 z + */ + +#include +#include +#include + +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 @@ + + + + + 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 @@ + + + + + Tux + The Linux Penguin in 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 @@ + + + + + Tux + The Linux Penguin in 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 @@ + + + + + Tux + The Linux Penguin in 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 @@ + + + + + Tux + The Linux Penguin in 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + 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 @@ + + + + + + + + + + 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 @@ + + + + + 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 @@ + + + + + + + + + + + + + + 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 @@ + + + + + + + + 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 @@ + + + + + + + + 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 @@ + + + + + + + + + + + + -- 2.43.0