X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=config.h.in;h=b71af0ededeff39250ca14a783d0745bf212a5e1;hb=c283f46debd0cba1c776059ddda37fb477a9b758;hp=5937ac3c27cfb94ffde8ef057de10a4b8f9bb69b;hpb=1deb86fdaf8ca1e9bee08b0218b355bac6a9447d;p=thirdparty%2Fcups.git diff --git a/config.h.in b/config.h.in index 5937ac3c2..b71af0ede 100644 --- a/config.h.in +++ b/config.h.in @@ -1,16 +1,10 @@ /* - * "$Id$" - * * Configuration file for CUPS. * - * Copyright 2007-2014 by Apple Inc. + * Copyright 2007-2017 by Apple Inc. * Copyright 1997-2007 by Easy Software Products. * - * These coded instructions, statements, and computer programs are the - * property of Apple Inc. and are protected by Federal copyright - * law. Distribution and use rights are outlined in the file "LICENSE.txt" - * which should have been included with this file. If this file is - * file is missing or damaged, see the license at "http://www.cups.org/". + * Licensed under Apache License v2.0. See the file "LICENSE" for more information. */ #ifndef _CUPS_CONFIG_H_ @@ -242,6 +236,13 @@ #undef HAVE_VSYSLOG +/* + * Do we have the systemd journal functions? + */ + +#undef HAVE_SYSTEMD_SD_JOURNAL_H + + /* * Do we have the (v)snprintf() functions? */ @@ -305,6 +306,13 @@ #undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION +/* + * Do we have the gnutls_priority_set_direct function? + */ + +#undef HAVE_GNUTLS_PRIORITY_SET_DIRECT + + /* * What Security framework headers do we have? */ @@ -341,6 +349,13 @@ #undef HAVE_SECKEYCHAINOPEN +/* + * Do we have (a working) SSLSetEnabledCiphers function? + */ + +#undef HAVE_SSLSETENABLEDCIPHERS + + /* * Do we have libpaper? */ @@ -454,51 +469,32 @@ /* - * Do we have launchd support? + * Do we have on-demand support (launchd/systemd/upstart)? */ -#undef HAVE_LAUNCH_H -#undef HAVE_LAUNCHD -#undef HAVE_LAUNCH_ACTIVATE_SOCKET +#undef HAVE_ONDEMAND /* - * Do we have systemd support? - */ - -#undef HAVE_SYSTEMD - - -/* - * Various scripting languages... + * Do we have launchd support? */ -#undef HAVE_JAVA -#define CUPS_JAVA "/usr/bin/java" -#undef HAVE_PERL -#define CUPS_PERL "/usr/bin/perl" -#undef HAVE_PHP -#define CUPS_PHP "/usr/bin/php" -#undef HAVE_PYTHON -#define CUPS_PYTHON "/usr/bin/python" +#undef HAVE_LAUNCH_H +#undef HAVE_LAUNCHD /* - * Location of the poppler/Xpdf pdftops program... + * Do we have systemd support? */ -#undef HAVE_PDFTOPS -#undef HAVE_PDFTOPS_WITH_ORIGPAGESIZES -#define CUPS_PDFTOPS "/usr/bin/pdftops" +#undef HAVE_SYSTEMD /* - * Location of the Ghostscript gs program... + * Do we have upstart support? */ -#undef HAVE_GHOSTSCRIPT -#undef HAVE_GHOSTSCRIPT_PS2WRITE -#define CUPS_GHOSTSCRIPT "/usr/bin/gs" +#undef HAVE_UPSTART /* @@ -525,7 +521,14 @@ /* - * Do we have OS X 10.4's mbr_XXX functions? + * Do we have the getgrouplist() function? + */ + +#undef HAVE_GETGROUPLIST + + +/* + * Do we have macOS 10.4's mbr_XXX functions? */ #undef HAVE_MEMBERSHIP_H @@ -624,7 +627,7 @@ #ifdef HAVE_ARC4RANDOM # define CUPS_RAND() arc4random() -# define CUPS_SRAND(v) arc4random_stir() +# define CUPS_SRAND(v) #elif defined(HAVE_RANDOM) # define CUPS_RAND() random() # define CUPS_SRAND(v) srandom(v) @@ -671,7 +674,7 @@ /* - * Location of OS X localization bundle, if any. + * Location of macOS localization bundle, if any. */ #undef CUPS_BUNDLEDIR @@ -710,7 +713,3 @@ static __inline int _cups_abs(int i) { return (i < 0 ? -i : i); } #endif /* !HAVE_ABS && !abs */ #endif /* !_CUPS_CONFIG_H_ */ - -/* - * End of "$Id$". - */