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

@ -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"