Compare commits
2 Commits
c2bf13391e
...
e0da2301f1
| Author | SHA1 | Date |
|---|---|---|
|
|
e0da2301f1 | |
|
|
f45544138d |
6
make.sh
6
make.sh
|
|
@ -60,7 +60,11 @@ if [ "$uname" = "Linux" ]; then
|
||||||
fi
|
fi
|
||||||
CFLAGS="$CFLAGS"
|
CFLAGS="$CFLAGS"
|
||||||
elif [ "$uname" = "FreeBSD" ] || [ "$uname" = "Darwin" ]; then
|
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"
|
CFLAGS="$CFLAGS"
|
||||||
if [ "$uname" = "Darwin" ]; then
|
if [ "$uname" = "Darwin" ]; then
|
||||||
CFLAGS="$CFLAGS -DDARWIN"
|
CFLAGS="$CFLAGS -DDARWIN"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue