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

This commit is contained in:
Thomas Schmitt 2010-02-04 08:25:31 +00:00
parent 50e5349d09
commit b4d9c81fe8
4 changed files with 16 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=""

View File

@ -5,6 +5,8 @@ dnl AC_CONFIG_HEADER([config.h])
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
LIBBURNIA_SET_FLAGS
AM_INIT_AUTOMAKE([subdir-objects])
dnl Hint: Search list for version code aspects:

View File

@ -5,6 +5,8 @@ dnl AC_CONFIG_HEADER([config.h])
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
LIBBURNIA_SET_FLAGS
AM_INIT_AUTOMAKE([subdir-objects])
BURN_MAJOR_VERSION=0

View File

@ -1 +1 @@
#define Xorriso_timestamP "2010.01.25.142705"
#define Xorriso_timestamP "2010.02.04.082710"