diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-22 18:58:28 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-22 18:58:28 +0000 |
commit | 83b9bf0e3bfb1d842b10b80bbe749095b2c661a1 (patch) | |
tree | b05b1793361693ae88106648c2a953bed988f423 /configure.in.in | |
download | krusader-83b9bf0e3bfb1d842b10b80bbe749095b2c661a1.tar.gz krusader-83b9bf0e3bfb1d842b10b80bbe749095b2c661a1.zip |
Added old KDE3 version of Krusader
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/krusader@1094427 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/configure.in.in b/configure.in.in new file mode 100644 index 0000000..440ee70 --- /dev/null +++ b/configure.in.in @@ -0,0 +1,108 @@ +#MIN_CONFIG(3) + +################################################### +# Check for Konqueror +################################################### + +AC_ARG_WITH(konqueror, + AC_HELP_STRING([--without-konqueror],[build Krusader without support Konqueror's servicemenus [default=with]]), + [with_konq=$withval], + [with_konq=yes] +) + +if test "$with_konq" != "no"; then + # check for the headers + have_libkonq=yes + KDE_CHECK_HEADER(konq_popupmenu.h, ,[have_libkonq=no] ) + KDE_CHECK_HEADER(konqbookmarkmanager.h, ,[have_libkonq=no] ) + + if test "$have_libkonq" = "no"; then + # if this var is 'yes', the configure-suppery drops a warning. + # see admin/configure.in.bot.end + warn_konq=yes + fi +fi + +AM_CONDITIONAL(include_libkonq, test "$have_libkonq" = yes) + +################################################### +# Check for ACL +################################################### + +AC_ARG_WITH(acl, + AC_HELP_STRING([--without-acl],[build Krusader without ACL support [default=with]]), + [with_acl=$withval], + [with_acl=yes] +) + +if test "$with_acl" != "no"; then + # check for the headers + have_posix_acl=yes + AC_CHECK_HEADER(sys/acl.h, ,[have_posix_acl=no] ) + have_non_posix_acl_ext=yes + AC_CHECK_HEADER(acl/libacl.h, ,[have_non_posix_acl_ext=no] ) + + if test "$have_posix_acl" = "yes" ; then + AC_DEFINE([HAVE_POSIX_ACL], 1, [Define if system has POSIX ACL support.]) + if test "$have_non_posix_acl_ext" = "yes" ; then + AC_DEFINE([HAVE_NON_POSIX_ACL_EXTENSIONS], 1, [Define if system has non-POSIX extensions to the ACL support.]) + fi + fi + + if test "$have_posix_acl" = "yes" ; then + AC_CHECK_LIB(acl, acl_free) + fi +fi + +################################################### +# Check for JavaScript +################################################### + +AC_ARG_WITH(javascript, + AC_HELP_STRING([--without-javascript],[build Krusader without JavaScript support [default=with]]), + [with_js=$withval], + [with_js=yes] +) + +if test "$with_js" != "no"; then + # check for the header + have_libkjsembed=yes + KDE_CHECK_HEADER(kjsembed/kjsembedpart.h, ,[have_libkjsembed=no] ) + + if test "$have_libkjsembed" = "no"; then + # if this var is 'yes', the configure-suppery drops a warning. + # see admin/configure.in.bot.end + warn_js=yes + fi +fi + +AM_CONDITIONAL(include_libkjsembed, test "$have_libkjsembed" = yes) + +################################################### +# If our own tar-KIO schould be build +################################################### + +AC_ARG_WITH(kiotar, + AC_HELP_STRING([--with-kiotar],[use our write-enabled version of KDE's tar KIO-Slave [default=without]]), + [with_tar=$withval], + [with_tar=no] +) + +AM_CONDITIONAL(with_tar, test "$with_tar" != "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 +AH_BOTTOM([#define RELEASE_NAME "Power Stone"]) + +dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__ +dnl CFLAGS="$NOOPT_CFLAGS" dnl __kdevelop[noopt]__ +dnl CXXFLAGS="$CXXFLAGS $USE_EXCEPTIONS" dnl __kdevelop[exc]__ + +dnl KDE_NEED_FLEX dnl __kdevelop__ +dnl AC_PROG_YACC dnl __kdevelop__ + + +CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE -DKDE_NO_COMPAT -DQT_NO_ASCII_CAST" |