summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2009-08-28 14:26:41 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2009-08-28 14:26:41 +0000
commitdb210b6759b137a8de17d02ea881772da3f1b79f (patch)
tree2d5fbe603fd56ddfddf818aeab8672bf7aa56d8e
parentcb4a557ef16469ace76eefef6647f77fc48445bb (diff)
downloadlasso-db210b6759b137a8de17d02ea881772da3f1b79f.tar.gz
lasso-db210b6759b137a8de17d02ea881772da3f1b79f.tar.xz
lasso-db210b6759b137a8de17d02ea881772da3f1b79f.zip
Core: remove SWIG ID-WSF warning from configure.ac
* configure.ac: as ID-WSF support in SWIG in not maintained anymore we can remove the warning about using pre-generated SWIG files with a different setting for the --enable-wsf flag.
-rw-r--r--configure.ac23
1 files changed, 0 insertions, 23 deletions
diff --git a/configure.ac b/configure.ac
index 869f4c3f..d0e1dfe6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -741,29 +741,6 @@ AC_ARG_ENABLE(wsf, [ --enable-wsf enable experimental ID-WSF],
AM_CONDITIONAL([WSF_ENABLED],[test "x$enable_wsf" = "xyes"])
LASSO_WSF_SUPPORT=0
-if test "x$enable_wsf" = "xyes"; then
- AC_DEFINE(LASSO_WSF_ENABLED, [], [Define if ID-WSF support is enabled])
- LASSO_WSF_SUPPORT=1
- if grep -q 'WSF_SUPPORT.*0' $srcdir/*/lasso_wrap.c 2>/dev/null;
- then
- if test "x$SWIG" = "xecho"; then
- AC_MSG_WARN(Bindings were pre-generated without ID-WSF support)
- AC_MSG_ERROR(and you don't have SWIG to regenerate their files)
- fi
- echo "removing pre-generated language interface files"
- rm -f $srcdir/*/lasso_wrap.c $srcdir/csharp/liblassosharpglue_wrap.c
- fi
-else
- if grep -q 'WSF_SUPPORT.*1' $srcdir/*/lasso_wrap.c 2>/dev/null;
- then
- if test "x$SWIG" = "xecho"; then
- AC_MSG_WARN(Bindings were pre-generated with ID-WSF support)
- AC_MSG_ERROR(and you don't have SWIG to regenerate their files)
- fi
- echo "removing pre-generated language interface files"
- rm -f $srcdir/*/lasso_wrap.c $srcdir/csharp/liblassosharpglue_wrap.c
- fi
-fi
AC_SUBST(LASSO_WSF_SUPPORT)