added option --disable-iconv

This commit is contained in:
wbaumann
2011-01-02 21:26:10 +00:00
parent d2e28bf8e3
commit 977ed9f3e9
15 changed files with 518 additions and 483 deletions

View File

@ -51,8 +51,8 @@ the files from the backup directory you may need some day.
----------------
davfs2 uses the neon libraries for communication with the server.
libneon (2.6, 2.7, 2.8 or 2.9) must be installed. Your distribution will most
likely provide a package.
libneon (0.25, 0.26, 0.27, 0.28 or 0.29) must be installed. Your distribution
will most likely provide a package.
You will also need the neon header files. Distributions usually provide
development packages for this.
If your distribution don't come with libneon or it does not support TLS and

View File

@ -22,7 +22,7 @@
# Looks for the binary 'neon-config'. If a directory is given with
# --with-neon=, it looks in the bin-subdirectory of this, else it uses
# AC_PATH_PROG to find 'neon-config'.
# If found, it sets variable NRON_CONFIG and calls NEON_USE_EXTERNAL.
# If found, it sets variable NEON_CONFIG and calls NEON_USE_EXTERNAL.
# if not found, or if NEON_USE_EXTERNAL does not set neon_got_library
# to yes, configration is stopped with an error message.
@ -145,6 +145,22 @@ AC_DEFUN([DAV_LFS],[
])
# Disable character conversion.
AC_DEFUN([DAV_ICONV],[
AC_ARG_ENABLE([iconv],
[ --disable-iconv disable character conversion],
[dav_iconv=$enableval],
[dav_iconv=yes])
if test "$dav_iconv" = "yes"; then
AC_DEFINE([DAV_USE_ICONV], [1],
[Define to enable charcter conversion])
fi
])
# Output summary
AC_DEFUN([DAV_MESSAGE],[
@ -164,7 +180,7 @@ Configuration for building davfs2 AC_PACKAGE_VERSION:
Large File Support: ${dav_lfs}
Neon Library: ${neon_library_message}
${ne_SSL_message}
National Language Support: ${dav_nls}
Native Language Support: ${dav_nls}
EOF
])