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