Changeset 1588 for trunk/configure.in


Ignore:
Timestamp:
Oct 23, 2009, 3:37:28 PM (15 years ago)
Author:
gah
Message:

don't use: broken xyresult print

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r1585 r1588  
    115115AC_SUBST(ENABLE_GUI)
    116116
    117 with_tclsh="check"
     117with_tclsh="yes"
    118118AC_ARG_WITH(
    119119    [tclsh],
    120120    [AS_HELP_STRING([--with-tclsh[=DIR]],
    121         [location of tclsh @<:@default=check@:>@])],
     121        [location of tclsh @<:@default=yes@:>@])],
    122122    [],
    123     [with_tclsh=check])
     123    [with_tclsh=yes])
    124124
    125125TCLSH=
     
    147147    [matlab],
    148148    [AS_HELP_STRING([--with-matlab[=DIR]],
    149         [location of matlab and mex compiler @<:@default=check@:>@])],
     149        [location of matlab and mex compiler @<:@default=yes@:>@])],
    150150    [with_matlab=$withval],
    151151    [with_matlab=yes])
     
    195195    [octave],
    196196    [AS_HELP_STRING([--with-octave[=DIR]],
    197         [location of octave compiler MKOCTFILE @<:@default=check@:>@])],
     197        [location of octave compiler MKOCTFILE @<:@default=yes@:>@])],
    198198    [with_octave=$withval],
    199199    [with_octave=yes])
     
    223223AC_SUBST(MKOCTFILE)
    224224
    225 
    226225AC_ARG_WITH(
    227226    [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@:>@])],
    229228    [],
    230     [with_perl=check])
     229    [with_perl=yes])
    231230
    232231PERL=
     
    243242if test "$with_perl" != "no" ; then
    244243  AC_MSG_CHECKING([for perl])
    245   if test "$with_perl" != "check" ; then
     244  if test "$with_perl" != "yes" ; then
    246245    AC_PATH_PROG(PERL, perl, [], [$with_perl/bin:$with_perl])
    247246  else
     
    294293
    295294AC_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@:>@])],
    297296    [],
    298     [with_python=check])
     297    [with_python=yes])
    299298
    300299if test "$with_python" != "no" ; then
     
    347346    HAVE_PYTHON_DISTUTILS="yes"
    348347  else
    349     HAVE_PYTHON_DISTUTILS="no"
     348     HAVE_PYTHON_DISTUTILS="no"
    350349  fi
    351350  AC_MSG_RESULT([$HAVE_PYTHON_DISTUTILS])
     
    534533    examples/app-fermi/matlab/uncompiled/Makefile
    535534    examples/app-fermi/octave/Makefile
    536     examples/app-fermi/octave/2/Makefile
    537     examples/app-fermi/octave/3/Makefile
    538535    examples/app-fermi/perl/Makefile
    539536    examples/app-fermi/python/Makefile
Note: See TracChangeset for help on using the changeset viewer.