mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Add /usr/local/* to search paths on FreeBSD
Seems that on FreeBSD those directories are not in the default search paths, so we'll have to add them manually.
This commit is contained in:
parent
bc734f974a
commit
2fa0b69631
|
@ -110,6 +110,11 @@ case $host_os in
|
||||||
*solaris*)
|
*solaris*)
|
||||||
LIBS="$LIBS -lssp -lsocket -lnsl"
|
LIBS="$LIBS -lssp -lsocket -lnsl"
|
||||||
;;
|
;;
|
||||||
|
*freebsd*)
|
||||||
|
LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
||||||
|
CFLAGS="$CFLAGS -I/usr/local/include"
|
||||||
|
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
AM_CONDITIONAL(WIN32, test "x$WIN32" = "xyes")
|
AM_CONDITIONAL(WIN32, test "x$WIN32" = "xyes")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user