Browse Source

simplify the previous approach to make old apps only on demand

pre-master-46
Holger Vogt 8 years ago
parent
commit
eb70e40481
  1. 5
      configure.ac

5
configure.ac

@ -687,12 +687,11 @@ AM_CONDITIONAL([NO_HELP], [test "x$has_no_help" = xtrue])
# enabling making of the old and outdated applications
# ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp
if test "x$enable_oldapps" = xyes ; then
has_oldapps=true
AC_MSG_RESULT([ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp are made.])
else
has_oldapps=false
AC_MSG_RESULT([ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp are not made.])
fi
AM_CONDITIONAL([OLDAPPS], [test "x$has_oldapps" = xtrue])
AM_CONDITIONAL([OLDAPPS], [test "x$enable_oldapps" = xyes])
# Check for a few typdefs:

Loading…
Cancel
Save