]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fix for other modules default configuration.
authorjfa <jfa@opencascade.com>
Fri, 25 Jan 2008 08:19:48 +0000 (08:19 +0000)
committerjfa <jfa@opencascade.com>
Fri, 25 Jan 2008 08:19:48 +0000 (08:19 +0000)
adm_local/unix/config_files/check_vtk.m4

index 17a564a2f3c51e93cc3ec9ae5b876b9367126222..2696664a0eb49da02bd0658b7ef281451992febd 100644 (file)
@@ -27,11 +27,11 @@ dnl  Adds the --with-vtk=path and --with-vtk-version configure options
 dnl
 AC_DEFUN([OPTIONS_VTK], [
   AC_ARG_WITH([vtk],
-              [AC_HELP_STRING([--with-vtk], [The prefix where VTK is installed (default is /usr/local)])],
+              [AC_HELP_STRING([--with-vtk], [The prefix where VTK is installed (default "" means taking from environment variable)])],
               [with_vtk=$withval], [with_vtk=""])
 
   AC_ARG_WITH([vtk-version],
-              [AC_HELP_STRING([--with-vtk-version], [VTK include directory name is vtk-suffix, e.g. vtk-5.0/. What is the suffix? (Default -5.0)])],
+              [AC_HELP_STRING([--with-vtk-version], [VTK include directory name is vtk-suffix, e.g. vtk-5.0/. What is the suffix? (Default "yes" means taking from environment variable)])],
               [vtk_suffix=$withval], [vtk_suffix="yes"])
 ])
 
@@ -88,6 +88,9 @@ LOCAL_LIBS="-lvtkCommon -lvtkGraphics -lvtkImaging -lvtkFiltering -lvtkIO -lvtkR
 TRY_LINK_LIBS="-lvtkCommon $OGL_LIBS $LXLIB -lX11 -lXt"
 
 dnl VTK version suffix
+if test -z $vtk_suffix ; then
+  vtk_suffix="yes"
+fi
 if test "x$vtk_suffix" == "xno" ; then
   dnl in case user wrote --with-vtk-version=no, use empty suffix
   vtk_suffix=""
@@ -102,6 +105,9 @@ else
 fi
 
 dnl VTK install dir
+if test -z $with_vtk ; then
+  with_vtk=""
+fi
 if test "x$with_vtk" = "xyes" ; then
   dnl in case user wrote --with-vtk=yes
   with_vtk=""