]> git.ipfire.org Git - thirdparty/cups.git/blame - config.h.in
Use sigaction instead of sigset under Linux.
[thirdparty/cups.git] / config.h.in
CommitLineData
3a57cba8 1/*
d21a7597 2 * "$Id: config.h.in,v 1.22 2000/03/21 04:03:22 mike Exp $"
3a57cba8 3 *
4 * Configuration file for the Common UNIX Printing System (CUPS).
5 *
6 * @configure_input@
7 *
aff2356d 8 * Copyright 1997-2000 by Easy Software Products.
3a57cba8 9 *
10 * These coded instructions, statements, and computer programs are the
11 * property of Easy Software Products and are protected by Federal
12 * copyright law. Distribution and use rights are outlined in the file
13 * "LICENSE.txt" which should have been included with this file. If this
14 * file is missing or damaged please contact Easy Software Products
15 * at:
16 *
17 * Attn: CUPS Licensing Information
18 * Easy Software Products
c9e6a22c 19 * 44141 Airport View Drive, Suite 204
3a57cba8 20 * Hollywood, Maryland 20636-3111 USA
21 *
22 * Voice: (301) 373-9603
23 * EMail: cups-info@cups.org
24 * WWW: http://www.cups.org
25 */
26
27/*
28 * Version of software...
29 */
30
d21a7597 31#define CUPS_SVERSION "CUPS v1.1b3"
3a57cba8 32
a810d5d8 33/*
34 * Where are files stored?
35 */
36
aff2356d 37#define CUPS_LOCALEDIR "/usr/share/locale"
bd84e0d1 38#define CUPS_SERVERROOT "/etc/cups"
aff2356d 39#define CUPS_SERVERBIN "/usr/lib/cups"
40#define CUPS_DOCROOT "/usr/share/doc/cups"
bd84e0d1 41#define CUPS_REQUESTS "/var/spool/cups"
aff2356d 42#define CUPS_LOGDIR "/var/logs/cups"
43#define CUPS_DATADIR "/usr/share/cups"
bd84e0d1 44
a810d5d8 45
3a57cba8 46/*
47 * Do we have various image libraries?
48 */
49
a810d5d8 50#undef HAVE_LIBPNG
51#undef HAVE_LIBZ
52#undef HAVE_LIBJPEG
53#undef HAVE_LIBTIFF
3a57cba8 54
55/*
56 * Does this machine store words in big-endian (MSB-first) order?
57 */
58
a810d5d8 59#undef WORDS_BIGENDIAN
3a57cba8 60
61/*
62 * Which directory functions and headers do we use?
63 */
64
a810d5d8 65#undef HAVE_DIRENT_H
66#undef HAVE_SYS_DIR_H
67#undef HAVE_SYS_NDIR_H
68#undef HAVE_NDIR_H
3a57cba8 69
8e3eb75d 70/*
71 * Do we have PAM stuff?
72 */
73
74#ifndef HAVE_LIBPAM
75#define HAVE_LIBPAM 0
76#endif /* !HAVE_LIBPAM */
77
3a57cba8 78/*
79 * Do we have <shadow.h>?
80 */
81
a810d5d8 82#undef HAVE_SHADOW_H
3a57cba8 83
ba8a42d9 84/*
85 * Do we have <crypt.h>?
86 */
87
88#undef HAVE_CRYPT_H
89
3a57cba8 90/*
91 * Do we have the strXXX() functions?
92 */
93
a810d5d8 94#undef HAVE_STRDUP
95#undef HAVE_STRCASECMP
96#undef HAVE_STRNCASECMP
3a57cba8 97
8a2c2126 98/*
99 * Do we have the vsyslog() function?
100 */
101
102#undef HAVE_VSYSLOG
103
ac9bff36 104/*
105 * Do we have the (v)snprintf() functions?
106 */
107
108#undef HAVE_SNPRINTF
109#undef HAVE_VSNPRINTF
110
3a57cba8 111/*
5fba2863 112 * What signal functions to use?
113 */
114
115#undef HAVE_SIGSET
116#undef HAVE_SIGACTION
117
118/*
119 * What wait functions to use?
120 */
121
122#undef HAVE_WAITPID
123#undef HAVE_WAIT3
124
125/*
d21a7597 126 * End of "$Id: config.h.in,v 1.22 2000/03/21 04:03:22 mike Exp $".
3a57cba8 127 */