diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-05-06 07:24:20 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-05-06 07:24:20 +0000 |
commit | 1359f43e963c10d08c6c78f4806da291ca216bfe (patch) | |
tree | 37d590a39dc11733a804116a9384e759ba59e47d /configure.in.in | |
parent | 39984dd5393daabc2ae46e9e0ef6b8e81cfd11f5 (diff) | |
download | krusader-1359f43e963c10d08c6c78f4806da291ca216bfe.tar.gz krusader-1359f43e963c10d08c6c78f4806da291ca216bfe.zip |
Deactivated internal iso kio-slave by default due to inclusion of kio_iso into kdelibs
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/krusader@1123557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |