Fix x86-64 build on FreeBSD systems

git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@167 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
DRC
2010-04-06 20:05:39 +00:00
parent 97f8ec4b60
commit 0f413b2207
2 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
Significant changes since 0.0.91
================================
[1] Fixed x86-64 build on FreeBSD systems
Significant changes since 0.0.90
================================

View File

@@ -44,7 +44,14 @@ case "$host_os" in
if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
objfmt='BSD-a.out'
else
objfmt='ELF'
case "$host_cpu" in
x86_64)
objfmt='ELF64'
;;
*)
objfmt='ELF'
;;
esac
fi
;;
solaris* | sunos* | sysv* | sco*)