2005-09-18 jrandom

* Added support for pure 64bit linux with jbigi and the java service
      wrapper (no need for jcpuid if we're on os.arch=amd64).  Thanks mule
      et al for help testing!
    * UI cleanup in Syndie (thanks gloin and bar!)
This commit is contained in:
jrandom
2005-09-18 23:08:16 +00:00
committed by zzz
parent d40bb459ea
commit 3821e80ac8
12 changed files with 31 additions and 7 deletions

View File

@@ -5,3 +5,7 @@ was optimized for a variety of CPU architectures.
On Sep 16, 2005, libjbigi-osx-none.jnilib was added to jbigi.jar after
being compiled by jrandom on osx/ppc with GMP-4.1.4.
On Sep 18, 2005, libjbigi-linux-athlon64.so was added to jbigi.jar after
being compiled by jrandom on linux/p4 (cross compiled to --host=x86_64)
with GMP-4.1.4.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -31,10 +31,18 @@ if [ "X$HOST_OS" = "X" -o $HOST_OS = "unknown" ]; then
exit 1
fi
OS_ARCH=`uname -m`
X86_64=`echo "$OS_ARCH" | grep x86_64`
case $HOST_OS in
debian | fedora | gentoo | linux | mandrake | redhat | suse )
wrapperpath="./lib/wrapper/linux"
cp $wrapperpath/libwrapper.so ./lib/
if [ "X$X86_64" = "X" ]; then
wrapperpath="./lib/wrapper/linux"
cp $wrapperpath/libwrapper.so ./lib/
else
wrapperpath="./lib/wrapper/linux64"
cp $wrapperpath/libwrapper.so ./lib
fi
;;
freebsd )
wrapperpath="./lib/wrapper/freebsd"