summaryrefslogtreecommitdiffstats
path: root/configure.in.in
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-11-19 15:34:21 +0100
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-11-22 11:59:10 +0800
commit43dcc7c7e53fb20eee883ecb8837f9c7cd43899d (patch)
tree874bd1313d9444c0aa661db4d2f3952a2a1d946e /configure.in.in
parent55522e2e3f762f435a97cf3bfc4d83df27be1002 (diff)
downloadbasket-43dcc7c7.tar.gz
basket-43dcc7c7.zip
Drop automake build support.
Add basic cmake build instructions. Delete empty files ChangeLog, NEWS and TODO. Rework of the README file. Update some cmake files with latest macros. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit 039945bdcc926c6460cfb2c4372f370744b16d22)
Diffstat (limited to 'configure.in.in')
-rw-r--r--configure.in.in58
1 files changed, 0 insertions, 58 deletions
diff --git a/configure.in.in b/configure.in.in
deleted file mode 100644
index 4b3b49e..0000000
--- a/configure.in.in
+++ /dev/null
@@ -1,58 +0,0 @@
-#MIN_CONFIG(3.0.0)
-
-KDE_ENABLE_HIDDEN_VISIBILITY
-
-AM_INIT_AUTOMAKE(basket, '1.0.3.1')
-AC_C_BIGENDIAN
-AC_CHECK_KDEMAXPATHLEN
-
-KDE_CHECK_LARGEFILE
-
-dnl -----------------------------------------------------------------
-dnl AC_LIB_GPGME([ACTION-IF-TRUE], [ACTION-IF-FALSE])
-dnl -----------------------------------------------------------------
-
-OPTION=" --with-encryption=yes/no compile with encryption support (gpgme)"
-
-AC_DEFUN([AC_ENCRYPTION], [
- AH_TEMPLATE([HAVE_LIBGPGME], [Define if libgpgme is available])
-
- AC_ARG_WITH(encryption, [$OPTION], [
- if test "$withval" = "no"; then
- ac_gpg=
- $2
- elif test "$withval" = "yes"; then
- ac_gpg=yes
- else
- ac_gpg=yes
- fi
- ],[ac_gpg=yes])
-
- if test "$ac_gpg" != ""; then
- AM_PATH_GPGME(1.0.0, ac_libgpgme=yes, ac_libgpgme=no)
- AM_PATH_GPG_ERROR(1.0, ac_libgpgerror=yes, ac_libgpgerror=no)
-
- if test "$ac_libgpgme" != "no" -a "$ac_libgpgerror" != "no"; then
- AC_DEFINE([HAVE_LIBGPGME])
- ac_have_gpgme="yes"
- $1
- else
- :
- $2
- fi
- fi
- AM_CONDITIONAL(HAVE_LIBGPGME, test "$ac_have_gpgme" = "yes")
-])
-
-AC_ENCRYPTION([], [basket_warning_gpgme=yes])
-
-KDE_CHECK_HEADER(kontact/core.h, [KONTACT_SUBDIR="yes"], [KONTACT_SUBDIR="no"])
-
-if test "$KONTACT_SUBDIR" = "no"; then
- basket_warning_kontact=yes
- DO_NOT_COMPILE="$DO_NOT_COMPILE kontact_plugin"
-fi
-
-if test "$build_arts" != "no"; then
- AC_DEFINE(WITH_ARTS, 1, [Define a paired constant for WITHOUT_ARTS without a negative notation.])
-fi