123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- ##*****************************************************************************
- # AUTHOR:
- # Copied from x_ac_munge.
- #
- # SYNOPSIS:
- # X_AC_BLCR()
- #
- # DESCRIPTION:
- # Check the usual suspects for an BLCR installation,
- # updating CPPFLAGS and LDFLAGS as necessary.
- #
- # WARNINGS:
- # This macro must be placed after AC_PROG_CC and before AC_PROG_LIBTOOL.
- ##*****************************************************************************
- AC_DEFUN([X_AC_BLCR], [
- _x_ac_blcr_dirs="/usr /usr/local /opt/freeware /opt/blcr"
- _x_ac_blcr_libs="lib64 lib"
- AC_ARG_WITH(
- [blcr],
- AS_HELP_STRING(--with-blcr=PATH,Specify path to BLCR installation),
- [AS_IF([test "x$with_blcr" != xno],[_x_ac_blcr_dirs="$with_blcr $_x_ac_blcr_dirs"])])
- if [test "x$with_blcr" = xno]; then
- AC_MSG_WARN([support for blcr disabled])
- else
- AC_CACHE_CHECK(
- [for blcr installation],
- [x_ac_cv_blcr_dir],
- [
- for d in $_x_ac_blcr_dirs; do
- test -d "$d" || continue
- test -d "$d/include" || continue
- test -f "$d/include/libcr.h" || continue
- for bit in $_x_ac_blcr_libs; do
- test -d "$d/$bit" || continue
- _x_ac_blcr_libs_save="$LIBS"
- LIBS="-L$d/$bit -lcr $LIBS"
- AC_LINK_IFELSE(
- [AC_LANG_CALL([], cr_get_restart_info)],
- AS_VAR_SET(x_ac_cv_blcr_dir, $d))
- LIBS="$_x_ac_blcr_libs_save"
- test -n "$x_ac_cv_blcr_dir" && break
- done
- test -n "$x_ac_cv_blcr_dir" && break
- done
- ])
- if test -z "$x_ac_cv_blcr_dir"; then
- AC_MSG_WARN([unable to locate blcr installation])
- else
- BLCR_HOME="$x_ac_cv_blcr_dir"
- BLCR_LIBS="-lcr"
- BLCR_CPPFLAGS="-I$x_ac_cv_blcr_dir/include"
- BLCR_LDFLAGS="-L$x_ac_cv_blcr_dir/$bit"
- fi
- AC_DEFINE_UNQUOTED(BLCR_HOME, "$x_ac_cv_blcr_dir", [Define BLCR installation home])
- AC_SUBST(BLCR_HOME)
- AC_SUBST(BLCR_LIBS)
- AC_SUBST(BLCR_CPPFLAGS)
- AC_SUBST(BLCR_LDFLAGS)
- fi
- AM_CONDITIONAL(WITH_BLCR, test -n "$x_ac_cv_blcr_dir")
- ])
|