2001-09-17 16:09:38 +04:00
|
|
|
dnl
|
2002-09-12 16:22:01 +04:00
|
|
|
dnl $KTH-KRB: with-all.m4,v 1.1 2001/08/29 17:01:23 assar Exp $
|
|
|
|
dnl $NetBSD: with-all.m4,v 1.1.1.2 2002/09/12 12:22:14 joda Exp $
|
2001-09-17 16:09:38 +04:00
|
|
|
dnl
|
|
|
|
|
|
|
|
dnl AC_WITH_ALL(name)
|
|
|
|
|
|
|
|
AC_DEFUN([AC_WITH_ALL], [
|
|
|
|
AC_ARG_WITH($1,
|
|
|
|
AC_HELP_STRING([--with-$1=dir],
|
|
|
|
[use $1 in dir]))
|
|
|
|
|
|
|
|
AC_ARG_WITH($1-lib,
|
|
|
|
AC_HELP_STRING([--with-$1-lib=dir],
|
|
|
|
[use $1 libraries in dir]),
|
|
|
|
[if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
|
|
AC_MSG_ERROR([No argument for --with-$1-lib])
|
|
|
|
elif test "X$with_$1" = "X"; then
|
|
|
|
with_$1=yes
|
|
|
|
fi])
|
|
|
|
|
|
|
|
AC_ARG_WITH($1-include,
|
|
|
|
AC_HELP_STRING([--with-$1-include=dir],
|
|
|
|
[use $1 headers in dir]),
|
|
|
|
[if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
|
|
AC_MSG_ERROR([No argument for --with-$1-include])
|
|
|
|
elif test "X$with_$1" = "X"; then
|
|
|
|
with_$1=yes
|
|
|
|
fi])
|
|
|
|
|
|
|
|
case "$with_$1" in
|
|
|
|
yes) ;;
|
|
|
|
no) ;;
|
|
|
|
"") ;;
|
|
|
|
*) if test "$with_$1_include" = ""; then
|
|
|
|
with_$1_include="$with_$1/include"
|
|
|
|
fi
|
|
|
|
if test "$with_$1_lib" = ""; then
|
|
|
|
with_$1_lib="$with_$1/lib$abilibdirext"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
])
|