libburn/acinclude.m4

28 lines
542 B
Plaintext
Raw Normal View History

2006-08-15 20:37:04 +00:00
AC_DEFUN([TARGET_SHIZZLE],
[
ARCH=""
LIBBURNIA_PKGCONFDIR="$libdir"/pkgconfig
2006-08-15 20:37:04 +00:00
AC_MSG_CHECKING([target operating system])
2006-08-15 20:37:04 +00:00
case $target in
*-*-linux*)
ARCH=linux
LIBBURN_ARCH_LIBS=
;;
*-*-freebsd*)
ARCH=freebsd
LIBBURN_ARCH_LIBS=-lcam
LIBBURNIA_PKGCONFDIR=$(echo "$libdir" | sed 's/\/lib$/\/libdata/')/pkgconfig
2006-08-15 20:37:04 +00:00
;;
*)
ARCH=
LIBBURN_ARCH_LIBS=
# AC_ERROR([You are attempting to compile for an unsupported platform])
2006-08-15 20:37:04 +00:00
;;
esac
AC_MSG_RESULT([$ARCH])
])