Codebase list ocaml-dssi / 68b7f0a9-6d9b-45bb-98ee-4d699d7806aa/main configure.ac
68b7f0a9-6d9b-45bb-98ee-4d699d7806aa/main

Tree @68b7f0a9-6d9b-45bb-98ee-4d699d7806aa/main (Download .tar.gz)

configure.ac @68b7f0a9-6d9b-45bb-98ee-4d699d7806aa/mainraw · history · blame

# check for one particular file of the sources
AC_INIT([ocaml-dssi],[0.1.2],[savonet-users@lists.sourceforge.net])

VERSION=$PACKAGE_VERSION
AC_MSG_RESULT([configuring $PACKAGE_STRING])

AC_BASE_CHECKS()

# Check for DSSI
AC_CHECK_HEADERS([dssi.h], [ac_have_dssi="yes"])
if test "$ac_have_dssi" != "yes"; then
   AC_MSG_ERROR([DSSI headers not found.])
fi

# Check for LADSPA
AC_ARG_WITH([ladspa-dir],AS_HELP_STRING([--with-ladspa-dir=path],[use "path" as the location of ocaml-ladspa (autodetected by default)]))
if test -z "$with_ladspa_dir"; then
  AC_MSG_CHECKING(for ocaml-ladspa)
  if ($OCAMLFIND query ladspa > /dev/null 2>&1); then
        OCAMLLADSPA_INC=`$OCAMLFIND query ladspa`
        AC_MSG_RESULT(ok)
  else
        AC_MSG_ERROR(not found.)
  fi
else
  echo $with_ladspa_dir | grep ^/ > /dev/null 2>&1 \
  || with_ladspa_dir=$PWD/$with_ladspa_dir
  OCAMLLADSPA_INC="$with_ladspa_dir"
fi
AC_SUBST(OCAMLLADSPA_INC)

# Save CFLAGS, add stdlib/caml (for safe #include <caml/..>
orig_CFLAGS="-I$OCAMLLADSPA_INC $CFLAGS"
CFLAGS="-I$OCAMLLADSPA_INC $CFLAGS -I$OCAML_STDLIB"

AC_CHECK_HEADERS([ocaml_ladspa.h],[ac_have_ladspa="yes"],[],[#include <caml/misc.h>])

if test "$ac_have_ladspa" != "yes"; then
   AC_MSG_ERROR([ocaml-ladspa headers not found.])
fi

CFLAGS=$orig_CFLAGS

# substitutions to perform
AC_SUBST(VERSION)
AC_SUBST(INC)
ALL_INC="`ocamlfind query -r -separator " " $requires` $INC"
AC_SUBST(ALL_INC)
AC_SUBST(requires)
all_requires="`ocamlfind query -r -separator " " -format "%p" $requires`"
AC_SUBST(all_requires)

# Finally create the Makefile and samples
AC_CONFIG_FILES([Makefile],[chmod a-w Makefile])
AC_CONFIG_FILES([src/META])
AC_CONFIG_FILES([src/Makefile])
AC_OUTPUT