Merge f45544138d into fe647b81c2
commit
c2bf13391e
6
make.sh
6
make.sh
|
|
@ -60,7 +60,11 @@ if [ "$uname" = "Linux" ]; then
|
|||
fi
|
||||
CFLAGS="$CFLAGS"
|
||||
elif [ "$uname" = "FreeBSD" ] || [ "$uname" = "Darwin" ]; then
|
||||
LIBS="$LIBS -L/usr/lib"
|
||||
if [ $OS_BITS -eq 64 ]; then
|
||||
LIBS="$LIBS -L/usr/lib64"
|
||||
else
|
||||
LIBS="$LIBS -L/usr/lib"
|
||||
fi
|
||||
CFLAGS="$CFLAGS"
|
||||
if [ "$uname" = "Darwin" ]; then
|
||||
CFLAGS="$CFLAGS -DDARWIN"
|
||||
|
|
|
|||
Loading…
Reference in New Issue