X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=configure.in;h=7164f9a490ee880432a240006aff4540f9c62259;hb=00b6e0ddcbdbd41252e03732783f65efe5f52526;hp=df3c7c794c28c1d5c452b5217cd939b32ea26efa;hpb=01f8381d6e75139958807e5b99ba3ebc8e0066c5;p=gdcm.git diff --git a/configure.in b/configure.in index df3c7c79..7164f9a4 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/gdcmDict.cxx) -AM_INIT_AUTOMAKE(gdcm, 0.1.0) +AM_INIT_AUTOMAKE(gdcm, 0.3.0) AM_MAINTAINER_MODE AM_CONFIG_HEADER(src/config.h) @@ -37,8 +37,10 @@ AM_CONDITIONAL(HAVE_DOXYGEN, $DOXYGEN) AC_SUBST(HAVE_DOXYGEN) dnl Let people disable the doxygen stuff. -AC_ARG_ENABLE(docygen, [ --enable-doxygen Use doxygen to build documentation (default=auto)], enable_doxygen="$enableval", -enable_doxygen=auto) +AC_ARG_ENABLE(docygen, + [ --enable-doxygen Use doxygen to build documentation (default=auto)], + [enable_doxygen="$enableval"], + [enable_doxygen=auto]) if test x$enable_doxygen = xauto ; then if test x$DOXYGEN = xtrue ; then @@ -54,12 +56,13 @@ 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="no"]) + [ --enable-python Enable Python language support (default=no).], + , + [enable_python="no"]) dnl AC_MSG_RESULT($enable_python) build_python=no if test "yes" = "$enable_python"; then - AM_PATH_PYTHON(2.0) + AM_PATH_PYTHON(2.0.0) if test -n "$PYTHON"; then AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)]) build_python=yes; @@ -68,12 +71,24 @@ 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 gdcm.spec src/Makefile +src/jpeg/Makefile +src/jpeg/libijg8/Makefile +src/jpeg/libijg12/Makefile +src/jpeg/ljpg/Makefile gdcmPython/Makefile Test/Makefile Dicts/Makefile +vtk/Makefile Doc/Makefile])