From 8bd410fc16b3e4758577f3ae30bb50abfcae943d Mon Sep 17 00:00:00 2001 From: billwhite <> Date: Mon, 7 Aug 2000 15:24:44 +0000 Subject: [PATCH] 1.) Added a dependence to h5/glide3/src/makefile.autoconf.am, so that gthread.lo is made for fxgasm even though it is not used. Otherwise, everything has to be compiled twice. 2.) Added lots of .cvsignore files, so that cvs doesn't complain that it doesn't know about makefile.autoconf.in. 3.) Remove libtool, since it is autogenerated. 4.) Update the binary files in h5/glide3/tests. The repository files were corrupted. 5.) Hook the texture utility library texus2 in as an option. This is required for compressed textures. The default is the old texture library. 6.) Implemented a texus2 function which sets an error handler. --- glide3x/.cvsignore | 3 + glide3x/ChangeLog | 5 + glide3x/INSTALL | 4 + glide3x/chores.3dfx | 16 +- glide3x/configure.in | 25 +- glide3x/cvg/.cvsignore | 1 + glide3x/cvg/glide3/.cvsignore | 1 + glide3x/cvg/glide3/src/.cvsignore | 1 + glide3x/cvg/incsrc/.cvsignore | 1 + glide3x/cvg/init/.cvsignore | 1 + glide3x/h3/.cvsignore | 1 + glide3x/h3/glide3/.cvsignore | 1 + glide3x/h3/glide3/src/.cvsignore | 1 + glide3x/h3/incsrc/.cvsignore | 1 + glide3x/h3/minihwc/.cvsignore | 1 + glide3x/h5/.cvsignore | 1 + glide3x/h5/glide3/.cvsignore | 2 + glide3x/h5/glide3/src/.cvsignore | 1 + glide3x/h5/glide3/src/makefile.autoconf.am | 1 + glide3x/h5/glide3/tests/.cvsignore | 2 + glide3x/h5/glide3/tests/alpha.3df | Bin 87211 -> 87428 bytes glide3x/h5/glide3/tests/decal1.3df | Bin 174739 -> 174813 bytes glide3x/h5/glide3/tests/lava.3df | Bin 88450 -> 88452 bytes glide3x/h5/glide3/tests/matt1.3df | Bin 174785 -> 174813 bytes glide3x/h5/glide3/tests/miro.3df | Bin 166923 -> 174813 bytes glide3x/h5/glide3/tests/t256x32.3df | Bin 261814 -> 262199 bytes glide3x/h5/glide3/tests/t512x32.3df | Bin 1047090 -> 1048631 bytes glide3x/h5/incsrc/.cvsignore | 1 + glide3x/h5/minihwc/.cvsignore | 1 + glide3x/libtool | 4235 ------------------ swlibs/.cvsignore | 1 + swlibs/fxmisc/.cvsignore | 1 + swlibs/include/config.h.in | 2 + swlibs/include/make/makefile.autoconf.bottom | 9 +- swlibs/makefile.autoconf.am | 2 +- swlibs/newpci/.cvsignore | 1 + swlibs/newpci/pcilib/.cvsignore | 1 + swlibs/texus/.cvsignore | 1 + swlibs/texus/lib/.cvsignore | 1 + swlibs/texus2/.cvsignore | 1 + swlibs/texus2/cmd/.cvsignore | 1 + swlibs/texus2/cmd/makefile.autoconf.am | 14 +- swlibs/texus2/lib/.cvsignore | 1 + swlibs/texus2/lib/texus.h | 15 +- swlibs/texus2/lib/util.c | 16 + 45 files changed, 119 insertions(+), 4255 deletions(-) create mode 100644 glide3x/.cvsignore create mode 100644 glide3x/cvg/.cvsignore create mode 100644 glide3x/cvg/glide3/.cvsignore create mode 100644 glide3x/cvg/glide3/src/.cvsignore create mode 100644 glide3x/cvg/incsrc/.cvsignore create mode 100644 glide3x/cvg/init/.cvsignore create mode 100644 glide3x/h3/.cvsignore create mode 100644 glide3x/h3/glide3/.cvsignore create mode 100644 glide3x/h3/glide3/src/.cvsignore create mode 100644 glide3x/h3/incsrc/.cvsignore create mode 100644 glide3x/h3/minihwc/.cvsignore create mode 100644 glide3x/h5/.cvsignore create mode 100644 glide3x/h5/glide3/.cvsignore create mode 100644 glide3x/h5/glide3/src/.cvsignore create mode 100644 glide3x/h5/glide3/tests/.cvsignore create mode 100644 glide3x/h5/incsrc/.cvsignore create mode 100644 glide3x/h5/minihwc/.cvsignore delete mode 100755 glide3x/libtool create mode 100644 swlibs/.cvsignore create mode 100644 swlibs/fxmisc/.cvsignore create mode 100644 swlibs/newpci/.cvsignore create mode 100644 swlibs/newpci/pcilib/.cvsignore create mode 100644 swlibs/texus/.cvsignore create mode 100644 swlibs/texus/lib/.cvsignore create mode 100644 swlibs/texus2/.cvsignore create mode 100644 swlibs/texus2/cmd/.cvsignore create mode 100644 swlibs/texus2/lib/.cvsignore diff --git a/glide3x/.cvsignore b/glide3x/.cvsignore new file mode 100644 index 0000000..2aaca83 --- /dev/null +++ b/glide3x/.cvsignore @@ -0,0 +1,3 @@ +makefile.autoconf.in +aclocal.m4 +configure diff --git a/glide3x/ChangeLog b/glide3x/ChangeLog index 4f3efff..8e3f846 100644 --- a/glide3x/ChangeLog +++ b/glide3x/ChangeLog @@ -1,3 +1,8 @@ +2000-08-02 Bill White + + * Added the swlibs/texus2 directory, in support of + compressed textures. + 2000-08-01 Bill White * swlibs/include/makefile.autoconf.am: diff --git a/glide3x/INSTALL b/glide3x/INSTALL index 2405398..36bddea 100644 --- a/glide3x/INSTALL +++ b/glide3x/INSTALL @@ -71,6 +71,10 @@ However, there are some small wrinkles. h3 for DRI. To build h3 stand alone, use --disable-fx-dri-build. --enable-amd3d Build with 3DNow instructions. + --enable-fx-texus=library Choose which texture manipulation + library to use. The default value, + texus, is the only one which is + currently functional. 4.) There is a script, build.3dfx, which is installed by the configure script at the root of every build directory. It is essentially the single line: diff --git a/glide3x/chores.3dfx b/glide3x/chores.3dfx index a391171..cec4432 100755 --- a/glide3x/chores.3dfx +++ b/glide3x/chores.3dfx @@ -68,6 +68,11 @@ while [ ! -z "$1" ] && [ "$DONE" != YES ] ; do echo ' Note that you need to put local macros' echo ' in acinclude.m4, not aclocal.m4. The' echo ' former is included in the latter.' + echo ' --debug-build Add configuration option for a' + echo ' debug build.' + echo ' --texus2 Add configuration option to use' + echo ' the texus2 library. (Do not use this' + echo ' unless you know what you are doing.)' echo ' --generate: Generate configure script and' echo ' makefile.autoconf.in files.' echo ' This is essentially just:' @@ -95,18 +100,25 @@ while [ ! -z "$1" ] && [ "$DONE" != YES ] ; do echo '' exit 100 ;; + --debug-build) + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS --enable-fx-debug" + shift + ;; + --texus2) + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS --enable-fx-texlib=texus2" + shift + ;; --generate) DO_GENERATE=YES shift ;; --configure) DO_CONFIGURE=YES - CONFIGURE_OPTIONS="" shift ;; --configure=*) DO_CONFIGURE=YES - CONFIGURE_OPTIONS=`echo $1 | sed s/--configure=//` + CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS `echo $1 | sed s/--configure=//`" shift ;; --build-dir*=*) diff --git a/glide3x/configure.in b/glide3x/configure.in index 713f946..bf1b308 100644 --- a/glide3x/configure.in +++ b/glide3x/configure.in @@ -79,7 +79,7 @@ AM_CONDITIONAL(HAL_HW, test "$FX_GLIDE_HW"=cvg && test ! -z "$HAL_HW") # AC_ARG_ENABLE([fx-debug], [dnl - --enable-fx-debug Enable a debugging glide build [default=yes]], + --enable-fx-debug Enable a debugging glide build [default=no]], [case ${enableval} in true|yes) GLIDE_DEBUG=true @@ -90,7 +90,7 @@ AC_ARG_ENABLE([fx-debug], *) AC_MSG_ERROR([Illegal value (${enableval}) for --enable-fx-debug]) ;; - esac],[GLIDE_DEBUG=true]) + esac],[GLIDE_DEBUG=false]) AM_CONDITIONAL(GLIDE_DEBUG,test x$GLIDE_DEBUG = xtrue) AC_SUBST(GLIDE_DEBUG) # @@ -112,6 +112,24 @@ AC_ARG_ENABLE([amd3d], esac],[enable_amd3d=false]) AM_CONDITIONAL(GL_AMD3D, test x$enable_amd3d = xtrue) # +# --enable-fx-texus2 enables new texus library. +# +AC_ARG_ENABLE([fx-texlib], + [dnl + --enable-fx-tex=dir Enable enhanced texture utilities library + texus - original library + texus2 - library for compressed textures + [default=texus]], + [case ${enableval} in + texus|texus2) + TEXTURE_UTILITIES_DIR=${enableval} + ;; + *) + AC_MSG_ERROR([Illegal value (${enableval}) for --enable-fx-texus]) + ;; + esac],[TEXTURE_UTILITIES_DIR=texus]) +AC_SUBST(TEXTURE_UTILITIES_DIR) +# # These are conditional variables whose value is set by # one of the other enable macros. # @@ -247,6 +265,9 @@ AC_OUTPUT(build.3dfx swlibs/newpci/pcilib/makefile.autoconf:swlibs/newpci/pcilib/makefile.autoconf.in:swlibs/include/make/makefile.autoconf.bottom swlibs/texus/makefile.autoconf:swlibs/texus/makefile.autoconf.in:swlibs/include/make/makefile.autoconf.bottom swlibs/texus/lib/makefile.autoconf:swlibs/texus/lib/makefile.autoconf.in:swlibs/include/make/makefile.autoconf.bottom + swlibs/texus2/makefile.autoconf:swlibs/texus2/makefile.autoconf.in:swlibs/include/make/makefile.autoconf.bottom + swlibs/texus2/lib/makefile.autoconf:swlibs/texus2/lib/makefile.autoconf.in:swlibs/include/make/makefile.autoconf.bottom + swlibs/texus2/cmd/makefile.autoconf:swlibs/texus2/cmd/makefile.autoconf.in:swlibs/include/make/makefile.autoconf.bottom ) AC_OUTPUT_COMMANDS([chmod +x build.3dfx]) diff --git a/glide3x/cvg/.cvsignore b/glide3x/cvg/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/cvg/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/cvg/glide3/.cvsignore b/glide3x/cvg/glide3/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/cvg/glide3/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/cvg/glide3/src/.cvsignore b/glide3x/cvg/glide3/src/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/cvg/glide3/src/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/cvg/incsrc/.cvsignore b/glide3x/cvg/incsrc/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/cvg/incsrc/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/cvg/init/.cvsignore b/glide3x/cvg/init/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/cvg/init/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h3/.cvsignore b/glide3x/h3/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h3/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h3/glide3/.cvsignore b/glide3x/h3/glide3/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h3/glide3/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h3/glide3/src/.cvsignore b/glide3x/h3/glide3/src/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h3/glide3/src/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h3/incsrc/.cvsignore b/glide3x/h3/incsrc/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h3/incsrc/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h3/minihwc/.cvsignore b/glide3x/h3/minihwc/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h3/minihwc/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h5/.cvsignore b/glide3x/h5/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h5/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h5/glide3/.cvsignore b/glide3x/h5/glide3/.cvsignore new file mode 100644 index 0000000..401e7fb --- /dev/null +++ b/glide3x/h5/glide3/.cvsignore @@ -0,0 +1,2 @@ +makefile.autoconf.in +conform diff --git a/glide3x/h5/glide3/src/.cvsignore b/glide3x/h5/glide3/src/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/glide3x/h5/glide3/src/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/glide3x/h5/glide3/src/makefile.autoconf.am b/glide3x/h5/glide3/src/makefile.autoconf.am index 931ce8d..26438a5 100644 --- a/glide3x/h5/glide3/src/makefile.autoconf.am +++ b/glide3x/h5/glide3/src/makefile.autoconf.am @@ -221,6 +221,7 @@ noinst_HEADERS = fxcmd.h fxsplash.h \ qmodes.h tv.h \ fxgasm.h fxinline.h fxgasm_SOURCES = fxgasm.c gthread.c +fxgasm_DEPENDENCIES = gthread.lo lib_LTLIBRARIES = libglide3x.la libglide3x_la_SOURCES = fxinline.h fxgasm.h \ diff --git a/glide3x/h5/glide3/tests/.cvsignore b/glide3x/h5/glide3/tests/.cvsignore new file mode 100644 index 0000000..0d14c6b --- /dev/null +++ b/glide3x/h5/glide3/tests/.cvsignore @@ -0,0 +1,2 @@ +gsurf +makefile.autoconf.in diff --git a/glide3x/h5/glide3/tests/alpha.3df b/glide3x/h5/glide3/tests/alpha.3df index 5c897f0296db4669bb991b9b22781524c28023e0..e67fc8a9ee75ce97391cec7bac11305d047b3acc 100644 GIT binary patch delta 2451 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 diff --git a/glide3x/h5/glide3/tests/lava.3df b/glide3x/h5/glide3/tests/lava.3df index f6aef2e7cc5c29c2be89a677527e474449cf7a17..9811ae9f74e7359c3993d2e2eef5f0a6041892ed 100644 GIT binary patch delta 63 zcmZqL%-XVwP6dRPUv>sP(~)k=>}np%8XpwL&6vzGBR>aH;Z7j08;r8jIluKYy{&5 McCNOL_V$i001Igm;Q#;t diff --git a/glide3x/h5/glide3/tests/matt1.3df b/glide3x/h5/glide3/tests/matt1.3df index 43c627810c44f432aa6af9991c6712da6c3598b5..c02118d70b7a09cd4e8c812890313d3ca7e66bdb 100644 GIT binary patch delta 4034 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 delta 4064 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 diff --git a/glide3x/h5/glide3/tests/miro.3df b/glide3x/h5/glide3/tests/miro.3df index 438169a09f31a65870a0941d5df076ddcc2fe29b..313b6748691df72d531253612e431081598eba7f 100644 GIT binary patch delta 57045 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%0DYK8`- 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 KGFxnY>Hh&n`L)sj diff --git a/glide3x/h5/glide3/tests/t256x32.3df b/glide3x/h5/glide3/tests/t256x32.3df index 59f9132b0d5735ec3b8debcb0cb26f8faf91b392..0b1c9011de46a1a88ad57f4172d5062a8415ebee 100644 GIT binary patch delta 2166 zcmc(gu?oU45QY=86g1dHhq&nAB#0t)5EtK|i?5-b6^!7Zn_z@IhJs+WZlaryBMx$2 z1f?#H-tf_+cjZ6s{wBvq(appCD&p#}igrRv#vn^MpNHvW0?m5;>wPxoz4p14F#O~V z;}|-P#%u3meqSw>KJoW=nWz30{6owPdN&jI3Ytk^glI}})IN0kysZ_Qfe=k8j@pKg zZYCU|85Ej<4m1OuIBJ`8d^gu|uyD!JB^=2)mk3@%g8(B02SZwboo&S3t~VmkN+}=& ze-+XKxU#9iUR;d`oZAZC(h^5Q2%g}i1=#fD`*A{VNGX93yi-XF;L@gN-;1;N#zjE% E1o|Ry^8f$< delta 798 zcmdnqAh7K(|Ar3J&7G#}nWecH82%$;F>dbv)m2sh^;A_Suh&&n2l1r^1mJ2y0|NdV zYion~AUP0UK~xl|wsZ0UU6IKSRzD~ET5(Kv)c-y?K%Zl=g^gi7(29XX_7qw_*)H$* zWZyiFdJ4^j!gh;7Mj&R|Zc)h0s5sO;Hr;+Q^Uvu4lbJat zIyp>tn9BTPdcag>j_nrHm>CVGJ6;0veJ?R{Om{ra{C#@BaUjd#3P{Zr5bGp}brPid I6!U*m05&oa>Hq)$ diff --git a/glide3x/h5/glide3/tests/t512x32.3df b/glide3x/h5/glide3/tests/t512x32.3df index 6341e59f346a5c7f7eb726ff18dbf5f3d6fe3ea3..9fb8256f3e43fe29569a2346ce930dc0be796deb 100644 GIT binary patch delta 8515 zcmeHMtxf|$7~Jh$%TI6bif96xiW*2r8d6e$D|p0_Ac|-(qzFL418g0h3LXHG%9ftE zDuM=q!6B$Xp{ZWxO49HKgIF=iotpW+oy<<|M&G+>cW>yQ7j?O8yWOrm?R1irt998s zIP;U8i&{bItVg(VnSEvGz>r?^gH&g+* zS0465ui$(@JqGklx(~Jw!yJ01)|LoV3#tJ0Y^nh4pDMt^^yy<9qG`UyVbD)np$|<| zQO*<8_1l>zn(fRJaXUnDI1c3)pDV2(0$;AF0#F>N0jPnP=I3~mxqDj|K`|JxA`{, 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. - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="sed -e s/^X//" - -# 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 - -### BEGIN LIBTOOL CONFIG -# Libtool was configured as follows, on host starik: -# -# CC="gcc" CFLAGS="-g -O2" CPPFLAGS="" \ -# LD="/usr/bin/ld" LDFLAGS="" LIBS="" \ -# NM="/usr/bin/nm -B" RANLIB="ranlib" LN_S="ln -s" \ -# DLLTOOL="false" OBJDUMP="objdump" AS="as" \ -# ./ltconfig --cache-file=./config.cache --with-gcc --with-gnu-ld --no-verify ./ltmain.sh i686-pc-linux-gnu -# -# Compiler and other test output produced by ltconfig, useful for -# debugging ltconfig, is in ./config.log if it exists. - -# The version of ltconfig that generated this script. -LTCONFIG_VERSION="1.3.3" - -# Shell to use when invoking shell scripts. -SHELL="/bin/sh" - -# Whether or not to build shared libraries. -build_libtool_libs=yes - -# Whether or not to build static libraries. -build_old_libs=yes - -# Whether or not to optimize for fast installation. -fast_install=yes - -# The host system. -host_alias=i686-pc-linux-gnu -host=i686-pc-linux-gnu - -# An echo program that does not interpret backslashes. -echo="echo" - -# The archiver. -AR="ar" - -# The default C compiler. -CC="gcc" - -# The linker used to build libraries. -LD="/usr/bin/ld" - -# Whether we need hard or soft links. -LN_S="ln -s" - -# A BSD-compatible nm program. -NM="/usr/bin/nm -B" - -# Used on cygwin: DLL creation program. -DLLTOOL="false" - -# Used on cygwin: object dumper. -OBJDUMP="objdump" - -# Used on cygwin: assembler. -AS="as" - -# The name of the directory that contains temporary libtool files. -objdir=.libs - -# How to create reloadable object files. -reload_flag=" -r" -reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" - -# How to pass a linker flag through the compiler. -wl="-Wl," - -# Object file suffix (normally "o"). -objext="o" - -# Old archive suffix (normally "a"). -libext="a" - -# Executable file suffix (normally ""). -exeext="" - -# Additional compiler flags for building library objects. -pic_flag=" -fPIC" - -# Does compiler simultaneously support -c and -o options? -compiler_c_o="yes" - -# Can we write directly to a .lo ? -compiler_o_lo="yes" - -# Must we lock files when doing compilation ? -need_locks="no" - -# Do we need the lib prefix for modules? -need_lib_prefix=no - -# Do we need a version for libraries? -need_version=no - -# Whether dlopen is supported. -dlopen=unknown - -# Whether dlopen of programs is supported. -dlopen_self=unknown - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=unknown - -# Compiler flag to prevent dynamic linking. -link_static_flag="-static" - -# Compiler flag to turn off builtin functions. -no_builtin_flag=" -fno-builtin -fno-rtti -fno-exceptions" - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec="\${wl}--export-dynamic" - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec="" - -# Library versioning type. -version_type=linux - -# Format of library name prefix. -libname_spec="lib\$name" - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec="\${libname}\${release}.so\$versuffix \${libname}\${release}.so\$major \$libname.so" - -# The coded name of the library, if different from the real name. -soname_spec="\${libname}\${release}.so\$major" - -# Commands used to build and install an old-style archive. -RANLIB="ranlib" -old_archive_cmds="\$AR cru \$oldlib\$oldobjs~\$RANLIB \$oldlib" -old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib" -old_postuninstall_cmds="" - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds="" - -# Commands used to build and install a shared archive. -archive_cmds="\$CC -shared \$libobjs \$deplibs \$linkopts \${wl}-soname \$wl\$soname -o \$lib" -archive_expsym_cmds="\$CC -shared \$libobjs \$deplibs \$linkopts \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib" -postinstall_cmds="" -postuninstall_cmds="" - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )" - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd="/usr/bin/file" - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag="" - -# Flag that forces no undefined symbols. -no_undefined_flag="" - -# Commands used to finish a libtool library installation in a directory. -finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval="" - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGISTW]\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'" - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern char \\1;/p'" - -# This is the shared library runtime path variable. -runpath_var=LD_RUN_PATH - -# This is the shared library path variable. -shlibpath_var=LD_LIBRARY_PATH - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=no - -# How to hardcode a shared library path into an executable. -hardcode_action=immediate - -# Flag to hardcode $libdir into a binary during linking. -# This must work even if $libdir does not exist. -hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir" - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator="" - -# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=no - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=no - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=unsupported - -# Compile-time system search path for libraries -sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec="/lib /usr/lib" - -# Fix the shell variable $srcfile for the compiler. -fix_srcfile_path="" - -# Set to yes if exported symbols are required. -always_export_symbols=no - -# The commands to list exported symbols. -export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | sed 's/.* //' | sort | uniq > \$export_symbols" - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms="_GLOBAL_OFFSET_TABLE_" - -# Symbols that must always be exported. -include_expsyms="" - -### END LIBTOOL CONFIG - -# ltmain.sh - Provide generalized library-building support services. -# NOTE: Changing this file will not affect anything until you rerun ltconfig. -# -# Copyright (C) 1996-1999 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 - -if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - echo "$modename: not configured to build any kind of library" 1>&2 - echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 - exit 1 -fi - -# Global variables. -mode=$default_mode -nonopt= -prev= -prevopt= -run= -show="$echo" -show_help= -execute_dlfiles= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" - -# 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) - eval "$prev=\"\$$prev \$arg\"" - ;; - *) - 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" - exit 0 - ;; - - --config) - sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0 - 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" ;; - - --quiet | --silent) - show=: - ;; - - -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 test -z "$show_help"; then - - # Infer the operation mode. - if test -z "$mode"; then - case "$nonopt" in - *cc | *++ | gcc* | *-gcc*) - 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= - lastarg= - srcfile="$nonopt" - suppress_output= - - user_target=no - for arg - do - # Accept any command-line options. - case "$arg" in - -o) - if test "$user_target" != "no"; then - $echo "$modename: you cannot specify \`-o' more than once" 1>&2 - exit 1 - fi - user_target=next - ;; - - -static) - build_old_libs=yes - continue - ;; - esac - - case "$user_target" in - next) - # The next one is the -o target name - user_target=yes - continue - ;; - yes) - # We got the output file - user_target=set - libobj="$arg" - continue - ;; - esac - - # Accept the current argument as the source file. - lastarg="$srcfile" - srcfile="$arg" - - # Aesthetically quote the previous argument. - - # Backslashify any backslashes, double quotes, and dollar signs. - # These are the only characters that are still specially - # interpreted inside of double-quoted scrings. - lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` - - # Double-quote args containing other shell metacharacters. - # Many Bourne shells cannot handle close brackets correctly in scan - # sets, so we specify it separately. - case "$lastarg" in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) - lastarg="\"$lastarg\"" - ;; - esac - - # Add the previous argument to base_compile. - if test -z "$base_compile"; then - base_compile="$lastarg" - else - base_compile="$base_compile $lastarg" - fi - done - - case "$user_target" in - set) - ;; - no) - # Get the name of the library object. - libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` - ;; - *) - $echo "$modename: you must specify a target with \`-o'" 1>&2 - exit 1 - ;; - esac - - # Recognize several different file suffixes. - # If the user specifies -o file.o, it is replaced with file.lo - xform='[cCFSfmso]' - case "$libobj" in - *.ada) xform=ada ;; - *.adb) xform=adb ;; - *.ads) xform=ads ;; - *.asm) xform=asm ;; - *.c++) xform=c++ ;; - *.cc) xform=cc ;; - *.cpp) xform=cpp ;; - *.cxx) xform=cxx ;; - *.f90) xform=f90 ;; - *.for) xform=for ;; - 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 - - 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 $libobj" - else - removelist="$libobj" - fi - - $run $rm $removelist - trap "$run $rm $removelist; exit 1" 1 2 15 - - # 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 - 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 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 - - # Only build a PIC object if we are building libtool libraries. - if test "$build_libtool_libs" = yes; then - # Without this assignment, base_compile gets emptied. - fbsd_hideous_sh_bug=$base_compile - - # All platforms use -DPIC, to notify preprocessed assembler code. - command="$base_compile $pic_flag -DPIC $srcfile" - if test "$build_old_libs" = yes; then - lo_libobj="$libobj" - dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'` - if test "X$dir" = "X$libobj"; then - dir="$objdir" - else - dir="$dir/$objdir" - fi - libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'` - - if test -d "$dir"; then - $show "$rm $libobj" - $run $rm $libobj - else - $show "$mkdir $dir" - $run $mkdir $dir - status=$? - if test $status -ne 0 && test ! -d $dir; then - exit $status - fi - fi - fi - if test "$compiler_o_lo" = yes; then - output_obj="$libobj" - command="$command -o $output_obj" - elif test "$compiler_c_o" = yes; then - output_obj="$obj" - command="$command -o $output_obj" - fi - - $run $rm "$output_obj" - $show "$command" - if $run eval "$command"; then : - else - test -n "$output_obj" && $run $rm $removelist - exit 1 - fi - - if test "$need_locks" = warn && - test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then - echo "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $run $rm $removelist - exit 1 - fi - - # Just move the object if needed, then go on to compile the next one - if test x"$output_obj" != x"$libobj"; then - $show "$mv $output_obj $libobj" - if $run $mv $output_obj $libobj; then : - else - error=$? - $run $rm $removelist - exit $error - fi - fi - - # If we have no pic_flag, then copy the object into place and finish. - if test -z "$pic_flag" && test "$build_old_libs" = yes; then - # Rename the .lo from within objdir to obj - if test -f $obj; then - $show $rm $obj - $run $rm $obj - fi - - $show "$mv $libobj $obj" - if $run $mv $libobj $obj; then : - else - error=$? - $run $rm $removelist - exit $error - fi - - # Now arrange that obj and lo_libobj become the same file - $show "$LN_S $obj $lo_libobj" - if $run $LN_S $obj $lo_libobj; then - exit 0 - else - error=$? - $run $rm $removelist - exit $error - fi - fi - - # Allow error messages only from the first compilation. - suppress_output=' >/dev/null 2>&1' - fi - - # Only build a position-dependent object if we build old libraries. - if test "$build_old_libs" = yes; then - command="$base_compile $srcfile" - if test "$compiler_c_o" = yes; then - command="$command -o $obj" - output_obj="$obj" - fi - - # Suppress compiler output if we already did a PIC compilation. - command="$command$suppress_output" - $run $rm "$output_obj" - $show "$command" - if $run eval "$command"; then : - else - $run $rm $removelist - exit 1 - fi - - if test "$need_locks" = warn && - test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then - echo "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $run $rm $removelist - exit 1 - fi - - # Just move the object if needed - if test 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 - - # Create an invalid libtool object if no PIC, so that we do not - # accidentally link it into a program. - if test "$build_libtool_libs" != yes; then - $show "echo timestamp > $libobj" - $run eval "echo timestamp > \$libobj" || exit $? - else - # Move the .lo from within objdir - $show "$mv $libobj $lo_libobj" - if $run $mv $libobj $lo_libobj; then : - else - error=$? - $run $rm $removelist - exit $error - fi - fi - fi - - # Unlock the critical section if it was locked - if test "$need_locks" != no; then - $rm "$lockfile" - fi - - exit 0 - ;; - - # libtool link mode - link) - modename="$modename: link" - C_compiler="$CC" # save it, to compile generated C sources - CC="$nonopt" - case "$host" in - *-*-cygwin* | *-*-mingw* | *-*-os2*) - # It is impossible to link a dll without this setting, and - # we shouldn't force the makefile maintainer to figure out - # which system we are compiling for in order to pass an extra - # flag for every libtool invokation. - # allow_undefined=no - - # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll which has undefined symbols, in which case not - # even a static library is built. For now, we need to specify - # -no-undefined on the libtool link line when we can be certain - # that all symbols are satisfied, otherwise we get a static library. - allow_undefined=yes - - # This is a source program that is used to create dlls on Windows - # Don't remove nor modify the starting and closing comments -# /* ltdll.c starts here */ -# #define WIN32_LEAN_AND_MEAN -# #include -# #undef WIN32_LEAN_AND_MEAN -# #include -# -# #ifndef __CYGWIN__ -# # ifdef __CYGWIN32__ -# # define __CYGWIN__ __CYGWIN32__ -# # endif -# #endif -# -# #ifdef __cplusplus -# extern "C" { -# #endif -# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); -# #ifdef __cplusplus -# } -# #endif -# -# #ifdef __CYGWIN__ -# #include -# DECLARE_CYGWIN_DLL( DllMain ); -# #endif -# HINSTANCE __hDllInstance_base; -# -# BOOL APIENTRY -# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) -# { -# __hDllInstance_base = hInst; -# return TRUE; -# } -# /* ltdll.c ends here */ - # This is a source program that is used to create import libraries - # on Windows for dlls which lack them. Don't remove nor modify the - # starting and closing comments -# /* impgen.c starts here */ -# /* Copyright (C) 1999 Free Software Foundation, Inc. -# -# This file is part of GNU libtool. -# -# 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. -# */ -# -# #include /* for printf() */ -# #include /* for open(), lseek(), read() */ -# #include /* for O_RDONLY, O_BINARY */ -# #include /* for strdup() */ -# -# static unsigned int -# pe_get16 (fd, offset) -# int fd; -# int offset; -# { -# unsigned char b[2]; -# lseek (fd, offset, SEEK_SET); -# read (fd, b, 2); -# return b[0] + (b[1]<<8); -# } -# -# static unsigned int -# pe_get32 (fd, offset) -# int fd; -# int offset; -# { -# unsigned char b[4]; -# lseek (fd, offset, SEEK_SET); -# read (fd, b, 4); -# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); -# } -# -# static unsigned int -# pe_as32 (ptr) -# void *ptr; -# { -# unsigned char *b = ptr; -# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24); -# } -# -# int -# main (argc, argv) -# int argc; -# char *argv[]; -# { -# int dll; -# unsigned long pe_header_offset, opthdr_ofs, num_entries, i; -# unsigned long export_rva, export_size, nsections, secptr, expptr; -# unsigned long name_rvas, nexp; -# unsigned char *expdata, *erva; -# char *filename, *dll_name; -# -# filename = argv[1]; -# -# dll = open(filename, O_RDONLY|O_BINARY); -# if (!dll) -# return 1; -# -# dll_name = filename; -# -# for (i=0; filename[i]; i++) -# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':') -# dll_name = filename + i +1; -# -# pe_header_offset = pe_get32 (dll, 0x3c); -# opthdr_ofs = pe_header_offset + 4 + 20; -# num_entries = pe_get32 (dll, opthdr_ofs + 92); -# -# if (num_entries < 1) /* no exports */ -# return 1; -# -# export_rva = pe_get32 (dll, opthdr_ofs + 96); -# export_size = pe_get32 (dll, opthdr_ofs + 100); -# nsections = pe_get16 (dll, pe_header_offset + 4 +2); -# secptr = (pe_header_offset + 4 + 20 + -# pe_get16 (dll, pe_header_offset + 4 + 16)); -# -# expptr = 0; -# for (i = 0; i < nsections; i++) -# { -# char sname[8]; -# unsigned long secptr1 = secptr + 40 * i; -# unsigned long vaddr = pe_get32 (dll, secptr1 + 12); -# unsigned long vsize = pe_get32 (dll, secptr1 + 16); -# unsigned long fptr = pe_get32 (dll, secptr1 + 20); -# lseek(dll, secptr1, SEEK_SET); -# read(dll, sname, 8); -# if (vaddr <= export_rva && vaddr+vsize > export_rva) -# { -# expptr = fptr + (export_rva - vaddr); -# if (export_rva + export_size > vaddr + vsize) -# export_size = vsize - (export_rva - vaddr); -# break; -# } -# } -# -# expdata = (unsigned char*)malloc(export_size); -# lseek (dll, expptr, SEEK_SET); -# read (dll, expdata, export_size); -# erva = expdata - export_rva; -# -# nexp = pe_as32 (expdata+24); -# name_rvas = pe_as32 (expdata+32); -# -# printf ("EXPORTS\n"); -# for (i = 0; i&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" - shift - - # 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= - ;; - 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 - ;; - release) - release="-$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 - ;; - *) - eval "$prev=\"\$arg\"" - prev= - continue - ;; - esac - fi - - 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: not more than one -exported-symbols argument allowed" - exit 1 - fi - if test "X$arg" = "X-export-symbols"; then - prev=expsyms - else - prev=expsyms_regex - fi - 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: warning: cannot determine absolute directory name of \`$dir'" 1>&2 - $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 - absdir="$dir" - fi - dir="$absdir" - ;; - esac - case " $deplibs " in - *" $arg "*) ;; - *) deplibs="$deplibs $arg";; - esac - case " $lib_search_path " in - *" $dir "*) ;; - *) lib_search_path="$lib_search_path $dir";; - esac - case "$host" in - *-*-cygwin* | *-*-mingw* | *-*-os2*) - dllsearchdir=`cd "$dir" && pwd || echo "$dir"` - case ":$dllsearchpath:" in - ::) dllsearchpath="$dllsearchdir";; - *":$dllsearchdir:"*) ;; - *) dllsearchpath="$dllsearchpath:$dllsearchdir";; - esac - ;; - esac - ;; - - -l*) - if test "$arg" = "-lc"; then - case "$host" in - *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) - # These systems don't actually have c library (as such) - continue - ;; - esac - elif test "$arg" = "-lm"; then - case "$host" in - *-*-cygwin* | *-*-beos*) - # These systems don't actually have math library (as such) - continue - ;; - esac - fi - deplibs="$deplibs $arg" - ;; - - -module) - module=yes - continue - ;; - - -no-undefined) - allow_undefined=no - 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) - # If we have no pic_flag, then this is the same as -all-static. - if test -z "$pic_flag" && test -n "$link_static_flag"; then - compile_command="$compile_command $link_static_flag" - finalize_command="$finalize_command $link_static_flag" - fi - continue - ;; - - -thread-safe) - thread_safe=yes - continue - ;; - - -version-info) - prev=vinfo - 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 - ;; - - *.o | *.obj | *.a | *.lib) - # A standard object. - objs="$objs $arg" - ;; - - *.lo) - # A library object. - if test "$prev" = dlfiles; then - dlfiles="$dlfiles $arg" - if test "$build_libtool_libs" = yes && test "$dlopen" = yes; then - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - if test "$prev" = dlprefiles; then - # Preload the old-style object. - dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"` - prev= - fi - libobjs="$libobjs $arg" - ;; - - *.la) - # A libtool-controlled library. - - dlname= - libdir= - library_names= - old_library= - - # Check to see that this really is a libtool archive. - if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2 - exit 1 - fi - - # If the library was installed with an old release of libtool, - # it will not redefine variable installed. - installed=yes - - # Read the .la file - # If there is no directory component, then add one. - case "$arg" in - */* | *\\*) . $arg ;; - *) . ./$arg ;; - esac - - # 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 \`$arg'" 1>&2 - exit 1 - fi - - # Find the relevant object directory and library name. - name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'` - - if test "X$installed" = Xyes; then - dir="$libdir" - else - dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$dir" = "X$arg"; then - dir="$objdir" - else - dir="$dir/$objdir" - fi - fi - - if test -n "$dependency_libs"; then - # Extract -R and -L from dependency_libs - temp_deplibs= - for deplib in $dependency_libs; do - case "$deplib" in - -R*) temp_xrpath=`$echo "X$deplib" | $Xsed -e 's/^-R//'` - case " $rpath $xrpath " in - *" $temp_xrpath "*) ;; - *) xrpath="$xrpath $temp_xrpath";; - esac;; - -L*) case "$compile_command $temp_deplibs " in - *" $deplib "*) ;; - *) temp_deplibs="$temp_deplibs $deplib";; - esac - temp_dir=`$echo "X$deplib" | $Xsed -e 's/^-L//'` - case " $lib_search_path " in - *" $temp_dir "*) ;; - *) lib_search_path="$lib_search_path $temp_dir";; - esac - ;; - *) temp_deplibs="$temp_deplibs $deplib";; - esac - done - dependency_libs="$temp_deplibs" - fi - - if test -z "$libdir"; then - # It is a libtool convenience library, so add in its objects. - convenience="$convenience $dir/$old_library" - old_convenience="$old_convenience $dir/$old_library" - deplibs="$deplibs$dependency_libs" - compile_command="$compile_command $dir/$old_library$dependency_libs" - finalize_command="$finalize_command $dir/$old_library$dependency_libs" - continue - fi - - # This library was specified with -dlopen. - if test "$prev" = dlfiles; then - dlfiles="$dlfiles $arg" - if test -z "$dlname" || test "$dlopen" != yes || test "$build_libtool_libs" = no; then - # If there is no dlname, no dlopen support or we're linking statically, - # we need to preload. - prev=dlprefiles - else - # We should not create a dependency on this library, but we - # may need any libraries it requires. - compile_command="$compile_command$dependency_libs" - finalize_command="$finalize_command$dependency_libs" - prev= - continue - fi - fi - - # The library was specified with -dlpreopen. - if test "$prev" = dlprefiles; then - # Prefer using a static library (so that no silly _DYNAMIC symbols - # are required to link). - if test -n "$old_library"; then - dlprefiles="$dlprefiles $dir/$old_library" - else - dlprefiles="$dlprefiles $dir/$linklib" - fi - prev= - fi - - if test -n "$library_names" && - { test "$prefer_static_libs" = no || test -z "$old_library"; }; then - link_against_libtool_libs="$link_against_libtool_libs $arg" - if test -n "$shlibpath_var"; then - # Make sure the rpath contains only unique directories. - case "$temp_rpath " in - *" $dir "*) ;; - *) temp_rpath="$temp_rpath $dir" ;; - esac - fi - - # 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 - $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 - absdir="$dir" - fi - ;; - esac - - # This is the magic to use -rpath. - # Skip directories that are in the system default run-time - # search path, unless they have been requested with -R. - 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 - - lib_linked=yes - case "$hardcode_action" in - immediate | unsupported) - if test "$hardcode_direct" = no; then - compile_command="$compile_command $dir/$linklib" - deplibs="$deplibs $dir/$linklib" - case "$host" in - *-*-cygwin* | *-*-mingw* | *-*-os2*) - dllsearchdir=`cd "$dir" && pwd || echo "$dir"` - if test -n "$dllsearchpath"; then - dllsearchpath="$dllsearchpath:$dllsearchdir" - else - dllsearchpath="$dllsearchdir" - fi - ;; - esac - elif test "$hardcode_minus_L" = no; then - case "$host" in - *-*-sunos*) - compile_shlibpath="$compile_shlibpath$dir:" - ;; - esac - case "$compile_command " in - *" -L$dir "*) ;; - *) compile_command="$compile_command -L$dir";; - esac - compile_command="$compile_command -l$name" - deplibs="$deplibs -L$dir -l$name" - elif test "$hardcode_shlibpath_var" = no; then - case ":$compile_shlibpath:" in - *":$dir:"*) ;; - *) compile_shlibpath="$compile_shlibpath$dir:";; - esac - compile_command="$compile_command -l$name" - deplibs="$deplibs -l$name" - else - lib_linked=no - fi - ;; - - relink) - if test "$hardcode_direct" = yes; then - compile_command="$compile_command $absdir/$linklib" - deplibs="$deplibs $absdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - case "$compile_command " in - *" -L$absdir "*) ;; - *) compile_command="$compile_command -L$absdir";; - esac - compile_command="$compile_command -l$name" - deplibs="$deplibs -L$absdir -l$name" - elif test "$hardcode_shlibpath_var" = yes; then - case ":$compile_shlibpath:" in - *":$absdir:"*) ;; - *) compile_shlibpath="$compile_shlibpath$absdir:";; - esac - compile_command="$compile_command -l$name" - deplibs="$deplibs -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 - - # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes; then - finalize_command="$finalize_command $libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - case "$finalize_command " in - *" -L$libdir "*) ;; - *) finalize_command="$finalize_command -L$libdir";; - esac - finalize_command="$finalize_command -l$name" - elif test "$hardcode_shlibpath_var" = yes; then - case ":$finalize_shlibpath:" in - *":$libdir:"*) ;; - *) finalize_shlibpath="$finalize_shlibpath$libdir:";; - esac - finalize_command="$finalize_command -l$name" - else - # We cannot seem to hardcode it, guess we'll fake it. - case "$finalize_command " in - *" -L$dir "*) ;; - *) finalize_command="$finalize_command -L$libdir";; - esac - finalize_command="$finalize_command -l$name" - fi - else - # Transform directly to old archives if we don't build new libraries. - if test -n "$pic_flag" && test -z "$old_library"; then - $echo "$modename: cannot find static library for \`$arg'" 1>&2 - exit 1 - fi - - # 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_command="$compile_command $dir/$linklib" - finalize_command="$finalize_command $dir/$linklib" - else - case "$compile_command " in - *" -L$dir "*) ;; - *) compile_command="$compile_command -L$dir";; - esac - compile_command="$compile_command -l$name" - case "$finalize_command " in - *" -L$dir "*) ;; - *) finalize_command="$finalize_command -L$dir";; - esac - finalize_command="$finalize_command -l$name" - fi - fi - - # Add in any libraries that this one depends upon. - compile_command="$compile_command$dependency_libs" - finalize_command="$finalize_command$dependency_libs" - 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 - - # 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 - - if test -n "$prev"; then - $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 - $echo "$help" 1>&2 - exit 1 - 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" - - case "$output" in - "") - $echo "$modename: you must specify an output file" 1>&2 - $echo "$help" 1>&2 - exit 1 - ;; - - *.a | *.lib) - if test -n "$link_against_libtool_libs"; then - $echo "$modename: error: cannot link libtool libraries into archives" 1>&2 - exit 1 - fi - - 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' 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" - ;; - - *.la) - # 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 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 libname=\"$libname_spec\" - else - libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` - fi - ;; - esac - - 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 - - if test -n "$objs"; then - $echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1 - exit 1 - fi - - # How the heck are we supposed to write a wrapper for a shared library? - if test -n "$link_against_libtool_libs"; then - $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2 - exit 1 - fi - - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen' 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. - libext=al - oldlibs="$output_objdir/$libname.$libext $oldlibs" - build_libtool_libs=convenience - build_old_libs=yes - fi - dependency_libs="$deplibs" - - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info' 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. - IFS="${IFS= }"; 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 - - current="$2" - revision="$3" - age="$4" - - # Check that each of the things are valid numbers. - case "$current" in - 0 | [1-9] | [1-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]*) ;; - *) - $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]*) ;; - *) - $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) ;; - - irix) - major=`expr $current - $age + 1` - versuffix="$major.$revision" - verstring="sgi$major.$revision" - - # Add in all the interfaces that we are compatible with. - loop=$revision - while test $loop != 0; do - iface=`expr $revision - $loop` - loop=`expr $loop - 1` - verstring="sgi$major.$iface:$verstring" - done - ;; - - 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 != 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" - ;; - - freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; - ;; - - freebsd-elf) - major=".$current" - versuffix=".$current"; - ;; - - windows) - # Like Linux, but with '-' rather than '.', since we only - # want one extension on Windows 95. - major=`expr $current - $age` - versuffix="-$major-$age-$revision" - ;; - - *) - $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= - verstring="0.0" - 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 - - dependency_libs="$deplibs" - case "$host" in - *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) - # these systems don't actually have a c library (as such)! - ;; - *) - # Add libc to deplibs on all other systems. - deplibs="$deplibs -lc" - ;; - esac - fi - - # Create the output directory, or remove our outputs if we need to. - if test -d $output_objdir; then - $show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*" - $run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.* - else - $show "$mkdir $output_objdir" - $run $mkdir $output_objdir - status=$? - if test $status -ne 0 && test ! -d $output_objdir; then - exit $status - 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 - - if test "$build_libtool_libs" = yes; then - # 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 behaviour. - 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 - if test -n "$a_deplib" ; then - droppeddeps=yes - echo - echo "*** Warning: This library needs some functionality provided by $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." - fi - else - # Add a -L argument. - newdeplibs="$newdeplibs $a_deplib" - fi - done # Gone through all deplibs. - ;; - none | unknown | *) - newdeplibs="" - if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ - -e 's/ -[LR][^ ]*//g' -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 - - 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." - 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 - # Get the real and link names of the library. - 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 - - lib="$output_objdir/$realname" - for link - do - linknames="$linknames $link" - done - - # Ensure that we have .o objects for linkers which dislike .lo - # (e.g. aix) incase we are running --disable-static - for obj in $libobjs; do - oldobj=`$echo "X$obj" | $Xsed -e "$lo2o"` - if test ! -f $oldobj; then - $show "${LN_S} $obj $oldobj" - $run ${LN_S} $obj $oldobj || exit $? - fi - 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\" - IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - 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 - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec"; then - 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 - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - - libobjs="$libobjs "`find $xdir -name \*.o -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\" - linkopts="$linkopts $flag" - fi - - # 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 - IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - - # 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 - ;; - - *.lo | *.o | *.obj) - if test -n "$link_against_libtool_libs"; then - $echo "$modename: error: cannot link libtool libraries into objects" 1>&2 - exit 1 - fi - - 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"; 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 - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - - reload_conv_objs="$reload_objs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP` - done - fi - fi - - # Create the old-style object. - reload_objs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" - - output="$obj" - eval cmds=\"$reload_cmds\" - IFS="${IFS= }"; 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"; then - # Only do commands if we really have different PIC objects. - reload_objs="$libobjs $reload_conv_objs" - output="$libobj" - eval cmds=\"$reload_cmds\" - IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - else - # Just create a symlink. - $show $rm $libobj - $run $rm $libobj - $show "$LN_S $obj $libobj" - $run $LN_S $obj $libobj || exit $? - fi - - if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop - fi - - exit 0 - ;; - - # Anything else should be a program. - *) - 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" = 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 - - 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 "$compile_rpath " in - *" $libdir "*) ;; - *) compile_rpath="$compile_rpath $libdir" ;; - esac - 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 - 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" - - 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 binary in the object directory, then wrap it. - 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 - - 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" | $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" | sort +2 | 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_t void * -#else -# define lt_ptr_t char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - lt_ptr_t address; -} -lt_preloaded_symbols[] = -{\ -" - - sed -n -e 's/^: \([^ ]*\) $/ {\"\1\", (lt_ptr_t) 0},/p' \ - -e 's/^. \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr_t) \&\2},/p' \ - < "$nlist" >> "$output_objdir/$dlsyms" - - $echo >> "$output_objdir/$dlsyms" "\ - {0, (lt_ptr_t) 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*) - case "$compile_command " in - *" -static "*) ;; - *) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";; - esac - esac - - # Now compile the dynamic symbol file. - $show "(cd $output_objdir && $C_compiler -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" - $run eval '(cd $output_objdir && $C_compiler -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 -z "$link_against_libtool_libs" || 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 "$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 - 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 - $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: - link_against_libtool_libs='$link_against_libtool_libs' -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' - 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 (cd \"\$thisdir\" && eval \$relink_command); then : - else - $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$exeext' - 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 - *-*-cygwin* | *-*-mingw | *-*-os2*) - # win32 systems need to use the prog path for dll - # lookup to work - $echo >> $output "\ - exec \$progdir\\\\\$program \${1+\"\$@\"} -" - ;; - *) - $echo >> $output "\ - # Export the path to the program. - PATH=\"\$progdir:\$PATH\" - export PATH - - exec \$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="$objs "`$echo "X$libobjs_save" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP` - 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 - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - - 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 - # Ensure that we have .o objects in place incase we decided - # not to build a shared library, and have fallen back to building - # static libs even though --disable-static was passed! - for oldobj in $oldobjs; do - if test ! -f $oldobj; then - obj=`$echo "X$oldobj" | $Xsed -e "$o2lo"` - $show "${LN_S} $obj $oldobj" - $run ${LN_S} $obj $oldobj || exit $? - fi - done - - eval cmds=\"$old_archive_cmds\" - fi - IFS="${IFS= }"; 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" - - if test -n "$xrpath"; then - temp_xrpath= - for libdir in $xrpath; do - temp_xrpath="$temp_xrpath -R$libdir" - done - dependency_libs="$temp_xrpath $dependency_libs" - fi - - # 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 - fi - $rm $output - $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='$dlname' - -# 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 - -# Directory that this library needs to be installed in: -libdir='$install_libdir'\ -" - 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; 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 - *.a | *.lib) - # Do the static libraries later. - staticlibs="$staticlibs $file" - ;; - - *.la) - # Check to see that this really is a libtool archive. - if (sed -e '2q' $file | egrep "^# 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= - # 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" - - # See the names of the shared library. - set dummy $library_names - if test -n "$2"; then - realname="$2" - shift - shift - - # Install the shared library and build the symlinks. - $show "$install_prog$stripme $dir/$realname $destdir/$realname" - $run eval "$install_prog$stripme $dir/$realname $destdir/$realname" || exit $? - - 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\" - IFS="${IFS= }"; 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"` - ;; - *.o | *.obj) - 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 - - # Do a test to see if this is really a libtool program. - if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - link_against_libtool_libs= - relink_command= - - # If there is no directory component, then add one. - case "$file" in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Check the variables that should have been set. - if test -z "$link_against_libtool_libs"; then - $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2 - exit 1 - fi - - finalize=yes - for lib in $link_against_libtool_libs; 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'`" - if test -n "$libdir" && test ! -f "$libfile"; then - $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 - finalize=no - fi - done - - 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 - 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" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` - fi - fi - - $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 $? - - # Do each command in the postinstall commands. - eval cmds=\"$old_postinstall_cmds\" - IFS="${IFS= }"; 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 $SHELL $0 --finish$current_libdirs - exit 1 - fi - - exit 0 - ;; - - # 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\" - IFS="${IFS= }"; 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 \`-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 | egrep "^# 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 | egrep "^# 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 - # Export the shlibpath_var. - eval "export $shlibpath_var" - - # Restore saved enviroment 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 actually exec the command. - eval "exec \$cmd$args" - - $echo "$modename: cannot exec \$cmd$args" - exit 1 - else - # Display what would be done. - eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" - $echo "export $shlibpath_var" - $echo "$cmd$args" - exit 0 - fi - ;; - - # libtool uninstall mode - uninstall) - modename="$modename: uninstall" - rm="$nonopt" - files= - - for arg - do - case "$arg" in - -*) 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 - - for file in $files; do - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$file" && dir=. - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - - rmfiles="$file" - - case "$name" in - *.la) - # Possibly a libtool archive, so verify it. - if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - . $dir/$name - - # Delete the libtool libraries and symlinks. - for n in $library_names; do - rmfiles="$rmfiles $dir/$n" - done - test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library" - - $show "$rm $rmfiles" - $run $rm $rmfiles - - if test -n "$library_names"; then - # Do each command in the postuninstall commands. - eval cmds=\"$postuninstall_cmds\" - IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" - done - IFS="$save_ifs" - fi - - if test -n "$old_library"; then - # Do each command in the old_postuninstall commands. - eval cmds=\"$old_postuninstall_cmds\" - IFS="${IFS= }"; save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" - done - IFS="$save_ifs" - fi - - # FIXME: should reinstall the best remaining shared library. - fi - ;; - - *.lo) - if test "$build_old_libs" = yes; then - oldobj=`$echo "X$name" | $Xsed -e "$lo2o"` - rmfiles="$rmfiles $dir/$oldobj" - fi - $show "$rm $rmfiles" - $run $rm $rmfiles - ;; - - *) - $show "$rm $rmfiles" - $run $rm $rmfiles - ;; - esac - done - exit 0 - ;; - - "") - $echo "$modename: you must specify a MODE" 1>&2 - $echo "$generic_help" 1>&2 - exit 1 - ;; - esac - - $echo "$modename: invalid operation mode \`$mode'" 1>&2 - $echo "$generic_help" 1>&2 - exit 1 -fi # test -z "$show_help" - -# 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 - --version print version information - -MODE must be one of the following: - - 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." - exit 0 - ;; - -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 - -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-undefined declare that a library does not refer to external symbols - -o OUTPUT-FILE create OUTPUT-FILE from the specified 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 - -# Local Variables: -# mode:shell-script -# sh-indentation:2 -# End: diff --git a/swlibs/.cvsignore b/swlibs/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/fxmisc/.cvsignore b/swlibs/fxmisc/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/fxmisc/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/include/config.h.in b/swlibs/include/config.h.in index d9bf592..4ae949f 100644 --- a/swlibs/include/config.h.in +++ b/swlibs/include/config.h.in @@ -90,3 +90,5 @@ /* Version number of package */ #undef VERSION +/* Configure in texture display in texus2 */ +#undef TEXTURE_DISPLAY diff --git a/swlibs/include/make/makefile.autoconf.bottom b/swlibs/include/make/makefile.autoconf.bottom index 7925d09..25108ec 100644 --- a/swlibs/include/make/makefile.autoconf.bottom +++ b/swlibs/include/make/makefile.autoconf.bottom @@ -59,7 +59,12 @@ GCFLAGS = $(GLIDE_DEBUG_GCFLAGS) # # Global DEFS # -GDEFS=-DENDB -DX11 $(GLIDE_DEBUG_GDEFS) -Wall +# This variable may require -DENDB. The original Linux build +# used it, but the Windows build didn't. It seems to mean +# Big Endian, which is not the case for the x86. It is only +# used in texus2 as far as I can see. +# +GDEFS=-DX11 $(GLIDE_DEBUG_GDEFS) -Wall # # Global INCLUDES # @@ -88,7 +93,7 @@ GINCLUDES = $(CVG_VINCLUDES) $(H3_VINCLUDES) $(H5_VINCLUDES) \ -I$(top_srcdir)/swlibs/fxmemmap \ -I$(top_srcdir)/swlibs/fxmisc \ -I$(top_srcdir)/swlibs/newpci/pcilib \ - -I$(top_srcdir)/swlibs/texus/lib + -I$(top_srcdir)/swlibs/@TEXTURE_UTILITIES_DIR@/lib ######################################################################## # diff --git a/swlibs/makefile.autoconf.am b/swlibs/makefile.autoconf.am index b8dbe1a..681e278 100644 --- a/swlibs/makefile.autoconf.am +++ b/swlibs/makefile.autoconf.am @@ -20,4 +20,4 @@ ## $Revision$ ## $Date$ ## -SUBDIRS=fxmisc newpci texus +SUBDIRS=fxmisc newpci @TEXTURE_UTILITIES_DIR@ diff --git a/swlibs/newpci/.cvsignore b/swlibs/newpci/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/newpci/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/newpci/pcilib/.cvsignore b/swlibs/newpci/pcilib/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/newpci/pcilib/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/texus/.cvsignore b/swlibs/texus/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/texus/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/texus/lib/.cvsignore b/swlibs/texus/lib/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/texus/lib/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/texus2/.cvsignore b/swlibs/texus2/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/texus2/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/texus2/cmd/.cvsignore b/swlibs/texus2/cmd/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/texus2/cmd/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/texus2/cmd/makefile.autoconf.am b/swlibs/texus2/cmd/makefile.autoconf.am index d81346f..f6562cf 100644 --- a/swlibs/texus2/cmd/makefile.autoconf.am +++ b/swlibs/texus2/cmd/makefile.autoconf.am @@ -21,18 +21,8 @@ ## $Date$ ## -MAGICK_DIR = @MAGICK_DIR@ -X_LIB_PATH = @X_LIB_PATH@ -if TEXTURE_DISPLAY -DISPLAY_LIBS = $(X_LIB_PATH) -lX11 -lXext $(MAGICK_DIR) -lMagick -ltiff -lpng -TEXTURE_DISPLAY_DEFS = -DTEXTURE_DISPLAY -endif - -LDEFS = $(TEXTURE_DISPLAY_DEFS) - -bin_PROGRAMS = texus +noinst_PROGRAMS = texus texus_SOURCES = cmd.c texus_LDADD = $(top_builddir)/swlibs/fxmisc/libfxmisc.la \ - $(top_builddir)/swlibs/texus2/lib/libtexus.la \ - $(DISPLAY_LIBS) + $(top_builddir)/swlibs/texus2/lib/libtexus.la diff --git a/swlibs/texus2/lib/.cvsignore b/swlibs/texus2/lib/.cvsignore new file mode 100644 index 0000000..089b534 --- /dev/null +++ b/swlibs/texus2/lib/.cvsignore @@ -0,0 +1 @@ +makefile.autoconf.in diff --git a/swlibs/texus2/lib/texus.h b/swlibs/texus2/lib/texus.h index b324463..3b25ffe 100644 --- a/swlibs/texus2/lib/texus.h +++ b/swlibs/texus2/lib/texus.h @@ -283,7 +283,20 @@ void txImgQuantize( char *dst, char *src, */ typedef void (*TxErrorCallbackFnc_t)( const char *string, FxBool fatal ); -void txErrorSetCallback( TxErrorCallbackFnc_t fnc ); +/* + * Set the error call back function. + * Paramters: + * fnc: If this is non-null, set the callback + * function to this value. If this pointer, + * is null, set the callback function to + * the default value. + * old_fnc: If this pointer is non-null, fill its + * contents with the callback function before + * changing it. If this pointer is null, + * do nothing. + */ +extern void txErrorSetCallback( TxErrorCallbackFnc_t fnc, + TxErrorCallbackFnc_t *old_fnc); /* * TEXUS MEMORY ALLOCATION ROUTINES. diff --git a/swlibs/texus2/lib/util.c b/swlibs/texus2/lib/util.c index e3d1ee9..a6017b9 100644 --- a/swlibs/texus2/lib/util.c +++ b/swlibs/texus2/lib/util.c @@ -120,6 +120,22 @@ txError(char *message) _txErrorCallback( message, FXFALSE ); } +extern void _txDefaultErrorCallback( const char *string, FxBool fatal ); + +void +txErrorSetCallback( TxErrorCallbackFnc_t fnc, + TxErrorCallbackFnc_t *old_fnc) +{ + if (old_fnc) { + *old_fnc = _txErrorCallback; + } + if (fnc) { + _txErrorCallback = fnc; + } else { + _txErrorCallback = _txDefaultErrorCallback; + } +} + int txGCD(int a, int b) {