Sponge fixes and additions patch:

* 3 New jbigi build scripts and old ones fixed to work properly.
    * Some trivial BOB work.
This commit is contained in:
sponge
2009-03-30 05:31:40 +00:00
parent 4a9543be78
commit 0c98d1843a
11 changed files with 245 additions and 27 deletions

View File

@@ -1,6 +1,7 @@
#!/bin/sh
# When executed in Mingw: Produces an jbigi.dll
# When executed in Linux: Produces an libjbigi.so
# When executed in Linux/FreeBSD: Produces an libjbigi.so
# Darwin produces libjbigi.jnilib, right?
CC="gcc"
@@ -32,7 +33,8 @@ esac
#To link dynamically to GMP (use libgmp.so or gmp.lib), uncomment the first line below
#To link statically to GMP, uncomment the second line below
if test $1 = "dynamic"
# Bug!!! Quote *BOTH* or neither! --Sponge
if test "$1" = "dynamic"
then
echo "Building jbigi lib that is dynamically linked to GMP"
LIBPATH="-L.libs"