1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#
# Include the TEA standard macro set
#
builtin(include,tclconfig/tcl.m4)
#
# Add here whatever m4 macros you want to define for your package
#
#------------------------------------------------------------------------
# TOGL_ENABLE_STUBS --
#
# Specifiy if stubs should be used.
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --enable-stubs
#
#------------------------------------------------------------------------
AC_DEFUN(TOGL_ENABLE_STUBS, [
AC_MSG_CHECKING([whether to link with stubs library])
AC_ARG_ENABLE(stubs,
[ --enable-stubs build and link with stub libraries (--enable-stubs)],
[tcl_ok=$enableval], [tcl_ok=yes])
if test "${enable_stubs+set}" = set; then
enableval="$enable_stubs"
tcl_ok=$enableval
else
tcl_ok=yes
fi
if test "$tcl_ok" = "yes" ; then
AC_MSG_RESULT([stubs])
USE_STUBS=1
else
AC_MSG_RESULT([no stubs])
USE_STUBS=0
fi
])
|