]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - config.h.in
Add support for new attributes in page device header.
[thirdparty/cups.git] / config.h.in
index ad956169ecbc5e6662d449e243c1a0f633630360..7faf778ce613e8e803e4e3a463ac7fb453a622a0 100644 (file)
@@ -1,11 +1,11 @@
 /*
- * "$Id: config.h.in,v 1.77 2004/06/29 03:14:19 mike Exp $"
+ * "$Id$"
  *
  *   Configuration file for the Common UNIX Printing System (CUPS).
  *
  *   @configure_input@
  *
- *   Copyright 1997-2004 by Easy Software Products.
+ *   Copyright 1997-2005 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
@@ -17,7 +17,7 @@
  *       Attn: CUPS Licensing Information
  *       Easy Software Products
  *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636-3142 USA
+ *       Hollywood, Maryland 20636 USA
  *
  *       Voice: (301) 373-9600
  *       EMail: cups-info@cups.org
@@ -31,7 +31,8 @@
  * Version of software...
  */
 
-#define CUPS_SVERSION  "CUPS v1.1.19rc3"
+#define CUPS_SVERSION  ""
+#define CUPS_MINIMAL   ""
 
 
 /*
 #define CUPS_DEFAULT_GROUP     "sys"
 
 
+/*
+ * Default IPP port...
+ */
+
+#define CUPS_DEFAULT_IPP_PORT  631
+
+
 /*
  * Maximum number of file descriptors to support.
  */
 
 
 /*
- * Where are files stored?
+ * Do we have domain socket support?
  */
 
-#define CUPS_LOCALEDIR "/usr/share/locale"
-#define CUPS_SERVERROOT        "/etc/cups"
-#define CUPS_SERVERBIN "/usr/lib/cups"
-#define CUPS_DOCROOT   "/usr/share/doc/cups"
-#define CUPS_REQUESTS  "/var/spool/cups"
-#define CUPS_LOGDIR    "/var/logs/cups"
-#define CUPS_DATADIR    "/usr/share/cups"
-#define CUPS_FONTPATH  "/usr/share/cups/fonts"
+#undef CUPS_DEFAULT_DOMAINSOCKET
 
 
 /*
- * What is the format string for strftime?
+ * Where are files stored?
+ *
+ * Note: These are defaults, which can be overridden by environment
+ *       variables at run-time...
  */
 
-#define CUPS_STRFTIME_FORMAT   NULL
+#define CUPS_BINDIR    "/usr/bin"
+#define CUPS_CACHEDIR  "/var/cache/cups"
+#define CUPS_DATADIR    "/usr/share/cups"
+#define CUPS_DOCROOT   "/usr/share/doc/cups"
+#define CUPS_FONTPATH  "/usr/share/cups/fonts"
+#define CUPS_LOCALEDIR "/usr/share/locale"
+#define CUPS_LOGDIR    "/var/logs/cups"
+#define CUPS_REQUESTS  "/var/spool/cups"
+#define CUPS_SBINDIR   "/usr/sbin"
+#define CUPS_SERVERBIN "/usr/lib/cups"
+#define CUPS_SERVERROOT        "/etc/cups"
+#define CUPS_STATEDIR  "/var/run/cups"
 
 
 /*
 #undef HAVE_LIBTIFF
 
 
-/*
- * Does this machine store words in big-endian (MSB-first) order?
- */
-
-#undef WORDS_BIGENDIAN
-
-
-/*
- * Which directory functions and headers do we use?
- */
-
-#undef HAVE_DIRENT_H
-#undef HAVE_SYS_DIR_H
-#undef HAVE_SYS_NDIR_H
-#undef HAVE_NDIR_H
-
-
 /*
  * Do we have PAM stuff?
  */
 #undef HAVE_STRINGS_H
 #undef HAVE_BSTRING_H
 
+/*
+ * Do we have the long long type?
+ */
+
+#undef HAVE_LONG_LONG
+
+#ifdef HAVE_LONG_LONG
+#  define CUPS_LLFMT   "%lld"
+#  define CUPS_LLCAST  (long long)
+#else
+#  define CUPS_LLFMT   "%ld"
+#  define CUPS_LLCAST  (long)
+#endif /* HAVE_LONG_LONG */
+
+/*
+ * Do we have the strtoll() function?
+ */
+
+#undef HAVE_STRTOLL
+
+#ifndef HAVE_STRTOLL
+#  define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base))
+#endif /* !HAVE_STRTOLL */
 
 /*
  * Do we have the strXXX() functions?
 #undef HAVE_MALLOC_H
 
 
+/*
+ * Do we have the POSIX ACL functions?
+ */
+
+#undef HAVE_ACL_INIT
+
+
+/*
+ * Do we have the langinfo.h header file?
+ */
+
+#undef HAVE_LANGINFO_H
+
+
 /*
  * Which encryption libraries do we have?
  */
 
 
 /*
- * Do we have rresvport()?
+ * Do we have rresvport_af()?
+ */
+
+#undef HAVE_RRESVPORT_AF
+
+
+/*
+ * Do we have getaddrinfo()?
  */
 
-#undef HAVE_RRESVPORT
+#undef HAVE_GETADDRINFO
+
+
+/*
+ * Do we have getnameinfo()?
+ */
+
+#undef HAVE_GETNAMEINFO
 
 
 /*
 #undef HAVE_STRUCT_SOCKADDR_SA_LEN
 
 
+/*
+ * Do we have the AIX usersec.h header file?
+ */
+
+#undef HAVE_USERSEC_H
+
+/*
+ * Do we have pthread support?
+ */
+
+#undef HAVE_PTHREAD_H
+
+
 /*
  * Various scripting languages...
  */
 #define CUPS_PYTHON    "/usr/bin/python"
 
 
+/*
+ * Do we have Darwin's CoreFoundation and SystemConfiguration frameworks?
+ */
+
+#undef HAVE_COREFOUNDATION
+#undef HAVE_SYSTEMCONFIGURATION
+
+
+/*
+ * Do we have CoreFoundation public and private headers?
+ */
+
+#undef HAVE_COREFOUNDATION_H
+#undef HAVE_CFPRIV_H
+#undef HAVE_CFBUNDLEPRIV_H
+
+
+/*
+ * Do we have MacOSX 10.4's mbr_XXX functions()?
+ */
+
+#undef HAVE_MEMBERSHIP_H
+#undef HAVE_MEMBERSHIPPRIV_H
+#undef HAVE_MBR_UID_TO_UUID
+
+
+/*
+ * Do we have Darwin's notify_post() header and function?
+ */
+
+#undef HAVE_NOTIFY_H
+#undef HAVE_NOTIFY_POST
+
+
 #endif /* !_CUPS_CONFIG_H_ */
 
 /*
- * End of "$Id: config.h.in,v 1.77 2004/06/29 03:14:19 mike Exp $".
+ * End of "$Id$".
  */