Forcing use of /usr/local on FreeBSD by LDFLAGS and CPPFLAGS

This commit is contained in:
2010-02-04 08:31:31 +00:00
parent 7b86d39126
commit 98e71beec6
3 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,14 @@
AC_DEFUN([LIBBURNIA_SET_FLAGS],
[
case $target_os in
freebsd*)
LDFLAGS="$LDFLAGS -L/usr/local/lib"
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
;;
esac
])
AC_DEFUN([TARGET_SHIZZLE],
[
ARCH=""