Changeset 4118 for trunk/configure
- Timestamp:
- Jan 14, 2014 6:55:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r4116 r4118 626 626 LIBOBJS 627 627 subdirs 628 VTKDIR 628 VTK_VERSION 629 VTK_TCL_DIR 629 630 TK_VERSION 630 631 TK_XLIBSW … … 684 685 HAVE_INTTYPES_H 685 686 HAVE_FFMPEG_LIBS 687 ENABLE_VTK_DICOM 686 688 ENABLE_GUI 687 689 ENABLE_LANG … … 822 824 with_tclsh 823 825 with_vtk 826 enable_vtkdicom 824 827 with_matlab 825 828 with_octave … … 1470 1473 --enable-gui build code related to the graphical user interface 1471 1474 [default=yes] 1475 --enable-vtkdicom Use vtkDICOM package [default=no] 1472 1476 --enable-shared build and link with shared libraries --enable-shared 1473 1477 --enable-symbols build with debugging symbols --disable-symbols … … 1479 1483 --with-ffmpeg=DIR location of ffmpeg [default=yes] 1480 1484 --with-tclsh=DIR location of tclsh [default=yes] 1481 --with-vtk= DIR location of vtk library [default=yes]1485 --with-vtk=version VTK library version [default=6.0] 1482 1486 --with-matlab=DIR location of matlab and mex compiler [default=yes] 1483 1487 --with-octave=DIR path of default octave compiler `mkoctfile' … … 7467 7471 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vtk" >&5 7468 7472 $as_echo_n "checking for vtk... " >&6; } 7469 VTKDIR="" 7473 VTK_VERSION=6.0 7474 VTK_TCL_DIR="" 7470 7475 7471 7476 if test "$with_vtk" != "no" ; then 7472 if test "$with_vtk" = "yes" ; then 7477 if test "$with_vtk" != "yes" ; then 7478 VTK_VERSION=$with_vtk 7479 fi 7480 if test "x$with_vtk" != "x" ; then 7473 7481 for path in \ 7482 $libdir/tcltk \ 7483 $exec_prefix/lib/tcltk \ 7484 $prefix/lib/tcltk \ 7474 7485 $libdir \ 7475 $prefix/lib/tcltk \7476 7486 $prefix/lib \ 7477 7487 $exec_prefix/lib \ 7478 7488 /usr/lib 7479 7489 do 7480 for vtk in $path/vtk-* ; do 7481 if test -d "${vtk}" ; then 7482 VTKDIR=${vtk} 7483 fi 7484 done 7485 if test "x${VTKDIR}" != "x" ; then 7490 if test -d "$path/vtk-$VTK_VERSION" ; then 7491 VTK_TCL_DIR="$path/vtk-$VTK_VERSION" 7492 fi 7493 if test "x${VTK_TCL_DIR}" != "x" ; then 7486 7494 break 7487 7495 fi 7488 7496 done 7489 7497 fi 7490 fi 7491 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VTKDIR" >&5 7492 $as_echo "$VTKDIR" >&6; } 7498 else 7499 if test "${ENABLE_GUI}" = "yes" ; then 7500 as_fn_error $? "Rappture GUI requires VTK" "$LINENO" 5 7501 fi 7502 fi 7503 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VTK_TCL_DIR" >&5 7504 $as_echo "$VTK_TCL_DIR" >&6; } 7505 7506 # Check whether --enable-vtkdicom was given. 7507 if test "${enable_vtkdicom+set}" = set; then : 7508 enableval=$enable_vtkdicom; 7509 else 7510 enable_vtkdicom=no 7511 fi 7512 7513 7514 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vtkDICOM" >&5 7515 $as_echo_n "checking for vtkDICOM... " >&6; } 7516 ENABLE_VTK_DICOM= 7517 if test "$enable_vtkdicom" != "no" ; then 7518 ENABLE_VTK_DICOM="yes" 7519 fi 7520 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_vtkdicom" >&5 7521 $as_echo "$enable_vtkdicom" >&6; } 7493 7522 7494 7523 … … 10099 10128 10100 10129 10130 10101 10131 MAKE=${make_command} 10132 10102 10133 10103 10134
Note: See TracChangeset
for help on using the changeset viewer.