Effective base of libisoburn+xorriso 0.1.1 2008.02.22.124732

This commit is contained in:
2008-02-23 10:01:07 +00:00
parent c16264cabb
commit 3ccc42f0c0
102 changed files with 38150 additions and 0 deletions

View File

@ -0,0 +1,22 @@
AC_DEFUN([TARGET_SHIZZLE],
[
ARCH=""
AC_MSG_CHECKING([target operating system])
case $target in
*-*-linux*)
ARCH=linux
LIBBURN_ARCH_LIBS=
;;
*-*-freebsd*)
ARCH=freebsd
LIBBURN_ARCH_LIBS=-lcam
;;
*)
AC_ERROR([You are attempting to compile for an unsupported platform])
;;
esac
AC_MSG_RESULT([$ARCH])
])