X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=configure.in;h=cac0e468f41d686bdb3de27c5403e48345b3ad3f;hb=1988dee6507ec70166b38c7e0cac6c1e9c18351e;hp=df3c7c794c28c1d5c452b5217cd939b32ea26efa;hpb=01f8381d6e75139958807e5b99ba3ebc8e0066c5;p=gdcm.git diff --git a/configure.in b/configure.in index df3c7c79..cac0e468 100644 --- a/configure.in +++ b/configure.in @@ -54,7 +54,7 @@ AM_CONDITIONAL(ENABLE_DOXYGEN, test x$enable_doxygen = xyes) dnl Checks for Python AC_ARG_ENABLE(python, - [ --enable-python Enable Python language support (default=no).],, + [ --enable-python Enable Python language support (default=no).],, [enable_python="no"]) dnl AC_MSG_RESULT($enable_python) build_python=no @@ -68,6 +68,12 @@ if test "yes" = "$enable_python"; then fi AM_CONDITIONAL(BUILD_PYTHON, test x$build_python = xyes) +dnl Checks for vtk +AC_ARG_ENABLE(vtk, + [ --enable-vtk Enable vtk extensions support (default=no).],, + [enable_vtk="no"]) +AM_CONDITIONAL(BUILD_VTK, test x$enable_vtk = xyes) + dnl produce Makefile.in files AC_OUTPUT([ Makefile @@ -76,4 +82,5 @@ src/Makefile gdcmPython/Makefile Test/Makefile Dicts/Makefile +vtk/Makefile Doc/Makefile])