- Added localizations for deprecated IPP attributes/options (Issue #1020)
- Added support for specifying permissions with the `cupsFileOpen` API.
- Added new `cupsParseOptions2` API with "end" argument.
-- Updated documents (Issue #984)
+- Updated documentation (Issue #984)
+- Updated the configure script to default to installing to /usr/local.
- Updated CUPS to require TLS support - OpenSSL, GNUTLS and LibreSSL are
supported.
- Updated CUPS to require ZLIB.
AC_DEFINE([HAVE_ICONV_H], [1], [Have <iconv.h> header?])
SAVELIBS="$SAVELIBS $LIBS"
])
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $LIBS"
LIBS="$SAVELIBS"
])
dnl Licensed under Apache License v2.0. See the file "LICENSE" for more information.
dnl
-AC_PREFIX_DEFAULT(/)
-
dnl Fix "prefix" variable if it hasn't been specified...
AS_IF([test "$prefix" = "NONE"], [
- prefix="/"
+ prefix="/usr/local"
])
dnl Fix "exec_prefix" variable if it hasn't been specified...
#endif"
ac_header_c_list=
-ac_default_prefix=/
ac_subst_vars='LTLIBOBJS
LIBOBJS
UNINSTALL_LANGUAGES
fi
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $LIBS"
LIBS="$SAVELIBS"
fi
-
-
if test "$prefix" = "NONE"
then :
- prefix="/"
+ prefix="/usr/local"
fi
+if test x$enable_shared = xno
+then :
+
+ PKGCONFIG_LIBS="$PKGCONFIG_LIBS $PKGCONFIG_LIBS_STATIC"
+ PKGCONFIG_LIBS_STATIC=""
+
+fi
+
INSTALL_LANGUAGES=""
UNINSTALL_LANGUAGES=""
LANGFILES=""
sinclude(config-scripts/cups-startup.m4)
sinclude(config-scripts/cups-defaults.m4)
+dnl Add static libraries when not building shared libraries...
+AS_IF([test x$enable_shared = xno], [
+ PKGCONFIG_LIBS="$PKGCONFIG_LIBS $PKGCONFIG_LIBS_STATIC"
+ PKGCONFIG_LIBS_STATIC=""
+])
+
dnl See what languages are available and make sure we generate the localization
dnl files as needed...
INSTALL_LANGUAGES=""
URL: https://openprinting.github.io/cups/
Cflags: @PKGCONFIG_CFLAGS@
Libs: @PKGCONFIG_LIBS@
-
-Requires.private: @PKGCONFIG_REQUIRES@
Libs.private: @PKGCONFIG_LIBS_STATIC@
+Requires: @PKGCONFIG_REQUIRES@