diff options
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/configure.in.in b/configure.in.in index 440ee70..89c0864 100644 --- a/configure.in.in +++ b/configure.in.in @@ -79,7 +79,7 @@ fi AM_CONDITIONAL(include_libkjsembed, test "$have_libkjsembed" = yes) ################################################### -# If our own tar-KIO schould be build +# If our own tar-KIO should be built ################################################### AC_ARG_WITH(kiotar, @@ -92,6 +92,20 @@ AM_CONDITIONAL(with_tar, test "$with_tar" != "no") ################################################### +################################################### +# If our own iso-KIO should be built +################################################### + +AC_ARG_WITH(kioiso, + AC_HELP_STRING([--with-kioiso],[use our version of Trinity's iso KIO-slave [default=without]]), + [with_iso=$withval], + [with_iso=no] +) + +AM_CONDITIONAL(with_iso, test "$with_iso" != "no") + +################################################### + AM_INIT_AUTOMAKE(krusader,1.90.0) # This adds the RELEASE_NAME-Marco to config.h (where also VERSION is defined). # It can be used to add a name to a release. If commented out only VERSION is used, see main.cpp |