Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / opt_libs.m4
blobe7414860720b6436f0d9c6029fe98d24c960b682
1 dnl ######################################################################
2 dnl Initial settings for LIBS (-l options)
3 dnl NOTE: this is for configuration as well as compilations!
4 AC_DEFUN([AMU_OPT_LIBS],
5 [AC_MSG_CHECKING(for configuration/compilation (-l) library flags)
6 AC_ARG_ENABLE(libs,
7 AC_HELP_STRING([--enable-libs=ARG],
8                 [configure/compile with ARG (-l) library flags]),
10 if test "$enableval" = "" || test "$enableval" = "yes" || test "$enableval" = "no"; then
11   AC_MSG_ERROR(libs must be supplied if option is used)
13 # use supplied options
14 LIBS="$LIBS $enableval"
15 export LIBS
16 AC_MSG_RESULT($enableval)
17 ], [
18   # default is to have no additional flags
19   AC_MSG_RESULT(none)
22 dnl ======================================================================