Changeset 5681 for trunk/configure.in


Ignore:
Timestamp:
Jun 10, 2015 8:54:05 AM (9 years ago)
Author:
ldelgass
Message:

Merge new Python examples from 1.3 branch (uq sync)

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/configure.in

    r5175 r5681  
    4343AC_PROG_MAKE_SET
    4444
    45 # Check for C, C++, and FORTRAN 
     45# Check for C, C++, and FORTRAN
    4646AC_PROG_CC
    4747AC_PROG_CXX
    48 # Avoid g95 
     48# Avoid g95
    4949AC_PROG_F77([g77 gfortran f77 fort77 f90 xlf xlf90 fl32])
    5050
     
    147147for dir in \
    148148 ${exec_prefix} \
    149  ${exec_prefix}/lib ; do 
     149 ${exec_prefix}/lib ; do
    150150  tclconfig="${dir}/tclConfig.sh"
    151151  if test -f "$tclconfig" ; then
     
    172172if test "${with_tclsh}" != "no" ; then
    173173  tclsh="tclsh${TCL_VERSION}"
    174   if test "${with_tclsh}" = "yes" ; then 
     174  if test "${with_tclsh}" = "yes" ; then
    175175    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${exec_prefix}/bin:${PATH}])
    176   else 
     176  else
    177177    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${with_tclsh}/bin:${with_tclsh}])
    178178  fi
     
    189189    [AS_HELP_STRING([--with-vtk[=version]],
    190190        [VTK library version @<:@default=6.2@:>@])],
    191     [], 
     191    [],
    192192    [with_vtk=yes])
    193193
     
    231231    [AS_HELP_STRING([--enable-vtkdicom],
    232232        [Use vtkDICOM package @<:@default=no@:>@])],
    233     [], 
     233    [],
    234234    [enable_vtkdicom=no])
    235235
     
    297297#--------------------------------------------------------------------
    298298if test "${with_ffmpeg}" != "no" ; then
    299   if test "${with_ffmpeg}" = "yes" ; then 
     299  if test "${with_ffmpeg}" = "yes" ; then
    300300    AC_PATH_PROG(FFMPEG, ffmpeg, [], $PATH)
    301   else 
     301  else
    302302    AC_PATH_PROG(FFMPEG, ffmpeg, [], [${with_ffmpeg}/bin:${with_ffmpeg}])
    303   fi 
     303  fi
    304304  if test "${FFMPEG}x" != "x" ; then
    305305    AC_DEFINE(HAVE_FFMPEG, 1, [Render servers can use ffmpeg])
Note: See TracChangeset for help on using the changeset viewer.