Changeset 1588 for trunk/configure.in
- Timestamp:
- Oct 23, 2009, 3:37:28 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.in
r1585 r1588 115 115 AC_SUBST(ENABLE_GUI) 116 116 117 with_tclsh=" check"117 with_tclsh="yes" 118 118 AC_ARG_WITH( 119 119 [tclsh], 120 120 [AS_HELP_STRING([--with-tclsh[=DIR]], 121 [location of tclsh @<:@default= check@:>@])],121 [location of tclsh @<:@default=yes@:>@])], 122 122 [], 123 [with_tclsh= check])123 [with_tclsh=yes]) 124 124 125 125 TCLSH= … … 147 147 [matlab], 148 148 [AS_HELP_STRING([--with-matlab[=DIR]], 149 [location of matlab and mex compiler @<:@default= check@:>@])],149 [location of matlab and mex compiler @<:@default=yes@:>@])], 150 150 [with_matlab=$withval], 151 151 [with_matlab=yes]) … … 195 195 [octave], 196 196 [AS_HELP_STRING([--with-octave[=DIR]], 197 [location of octave compiler MKOCTFILE @<:@default= check@:>@])],197 [location of octave compiler MKOCTFILE @<:@default=yes@:>@])], 198 198 [with_octave=$withval], 199 199 [with_octave=yes]) … … 223 223 AC_SUBST(MKOCTFILE) 224 224 225 226 225 AC_ARG_WITH( 227 226 [perl], 228 [AS_HELP_STRING([--with-perl[=DIR]], [location of perl @<:@default= check@:>@])],227 [AS_HELP_STRING([--with-perl[=DIR]], [location of perl @<:@default=yes@:>@])], 229 228 [], 230 [with_perl= check])229 [with_perl=yes]) 231 230 232 231 PERL= … … 243 242 if test "$with_perl" != "no" ; then 244 243 AC_MSG_CHECKING([for perl]) 245 if test "$with_perl" != " check" ; then244 if test "$with_perl" != "yes" ; then 246 245 AC_PATH_PROG(PERL, perl, [], [$with_perl/bin:$with_perl]) 247 246 else … … 294 293 295 294 AC_ARG_WITH([python], 296 [AS_HELP_STRING([--with-python[=DIR]],[location of python @<:@default= check@:>@])],295 [AS_HELP_STRING([--with-python[=DIR]],[location of python @<:@default=yes@:>@])], 297 296 [], 298 [with_python= check])297 [with_python=yes]) 299 298 300 299 if test "$with_python" != "no" ; then … … 347 346 HAVE_PYTHON_DISTUTILS="yes" 348 347 else 349 HAVE_PYTHON_DISTUTILS="no"348 HAVE_PYTHON_DISTUTILS="no" 350 349 fi 351 350 AC_MSG_RESULT([$HAVE_PYTHON_DISTUTILS]) … … 534 533 examples/app-fermi/matlab/uncompiled/Makefile 535 534 examples/app-fermi/octave/Makefile 536 examples/app-fermi/octave/2/Makefile537 examples/app-fermi/octave/3/Makefile538 535 examples/app-fermi/perl/Makefile 539 536 examples/app-fermi/python/Makefile
Note: See TracChangeset
for help on using the changeset viewer.