Fix UTIME_OMIT handling
[dragonfly.git] / lib / libpam / libpam / config.h
blob0d6542e2d67453bf245fe6bb045041324ad210e0
1 /* config.h. Generated from config.h.in by configure. */
2 /* config.h.in. Generated from configure.ac by autoheader. */
4 /* Whether loading unversioned modules support is disabled */
5 /* #undef DISABLE_UNVERSIONED_MODULES */
7 /* Define to 1 if you have the `asprintf' function. */
8 #define HAVE_ASPRINTF 1
10 /* Define to 1 if you have the <crypt.h> header file. */
11 /* #undef HAVE_CRYPT_H */
13 /* Define to 1 if you have the <dlfcn.h> header file. */
14 #define HAVE_DLFCN_H 1
16 /* Define to 1 if you have the `dlfunc' function. */
17 #define HAVE_DLFUNC 1
19 /* Define to 1 if you have the `fdlopen' function. */
20 #define HAVE_FDLOPEN 1
22 /* Define to 1 if you have the `fpurge' function. */
23 #define HAVE_FPURGE 1
25 /* Define to 1 if you have the <inttypes.h> header file. */
26 #define HAVE_INTTYPES_H 1
28 /* Define to 1 if you have the `crypt' library (-lcrypt). */
29 #define HAVE_LIBCRYPT 1
31 /* Define to 1 if you have the `crypto' library (-lcrypto). */
32 #define HAVE_LIBCRYPTO 1
34 /* Define to 1 if you have the `dl' library (-ldl). */
35 #define HAVE_LIBDL 1
37 /* Define to 1 if you have the `pam' library (-lpam). */
38 #define HAVE_LIBPAM 1
40 /* Define to 1 if you have the <memory.h> header file. */
41 #define HAVE_MEMORY_H 1
43 /* Define to 1 if you have the `setlogmask' function. */
44 #define HAVE_SETLOGMASK 1
46 /* Define to 1 if you have the <stdint.h> header file. */
47 #define HAVE_STDINT_H 1
49 /* Define to 1 if you have the <stdlib.h> header file. */
50 #define HAVE_STDLIB_H 1
52 /* Define to 1 if you have the <strings.h> header file. */
53 #define HAVE_STRINGS_H 1
55 /* Define to 1 if you have the <string.h> header file. */
56 #define HAVE_STRING_H 1
58 /* Define to 1 if you have the `strlcat' function. */
59 #define HAVE_STRLCAT 1
61 /* Define to 1 if you have the `strlcmp' function. */
62 /* #undef HAVE_STRLCMP */
64 /* Define to 1 if you have the `strlcpy' function. */
65 #define HAVE_STRLCPY 1
67 /* Define to 1 if you have the `strlset' function. */
68 /* #undef HAVE_STRLSET */
70 /* Define to 1 if you have the <sys/stat.h> header file. */
71 #define HAVE_SYS_STAT_H 1
73 /* Define to 1 if you have the <sys/types.h> header file. */
74 #define HAVE_SYS_TYPES_H 1
76 /* Define to 1 if you have the <unistd.h> header file. */
77 #define HAVE_UNISTD_H 1
79 /* Define to 1 if you have the `vasprintf' function. */
80 #define HAVE_VASPRINTF 1
82 /* OpenPAM library major number */
83 #define LIB_MAJ 2
85 /* Define to the sub-directory where libtool stores uninstalled libraries. */
86 #define LT_OBJDIR ".libs/"
88 /* Turn debugging macros on */
89 /* #undef OPENPAM_DEBUG */
91 /* OpenPAM modules directory */
92 /* Let the Makefile decide this */
93 /* #define OPENPAM_MODULES_DIR "${exec_prefix}/lib/" */
95 /* Name of package */
96 #define PACKAGE "openpam"
98 /* Define to the address where bug reports for this package should be sent. */
99 #define PACKAGE_BUGREPORT "des@des.no"
101 /* Define to the full name of this package. */
102 #define PACKAGE_NAME "OpenPAM"
104 /* Define to the full name and version of this package. */
105 #define PACKAGE_STRING "OpenPAM 20170430"
107 /* Define to the one symbol short name of this package. */
108 #define PACKAGE_TARNAME "openpam"
110 /* Define to the home page for this package. */
111 #define PACKAGE_URL "http://www.openpam.org/"
113 /* Define to the version of this package. */
114 #define PACKAGE_VERSION "20170430"
116 /* Define to 1 if you have the ANSI C header files. */
117 #define STDC_HEADERS 1
119 /* Enable extensions on AIX 3, Interix. */
120 #ifndef _ALL_SOURCE
121 # define _ALL_SOURCE 1
122 #endif
123 /* Enable GNU extensions on systems that have them. */
124 #ifndef _GNU_SOURCE
125 # define _GNU_SOURCE 1
126 #endif
127 /* Enable threading extensions on Solaris. */
128 #ifndef _POSIX_PTHREAD_SEMANTICS
129 # define _POSIX_PTHREAD_SEMANTICS 1
130 #endif
131 /* Enable extensions on HP NonStop. */
132 #ifndef _TANDEM_SOURCE
133 # define _TANDEM_SOURCE 1
134 #endif
135 /* Enable general extensions on Solaris. */
136 #ifndef __EXTENSIONS__
137 # define __EXTENSIONS__ 1
138 #endif
141 /* Version number of package */
142 #define VERSION "20170430"
144 /* Define to 1 if on MINIX. */
145 /* #undef _MINIX */
147 /* Define to 2 if the system does not provide POSIX.1 features except with
148 this defined. */
149 /* #undef _POSIX_1_SOURCE */
151 /* Define to 1 if you need to in order for `stat' and other things to work. */
152 /* #undef _POSIX_SOURCE */
154 /* Define to empty if `const' does not conform to ANSI C. */
155 /* #undef const */
157 /* Define to the equivalent of the C99 'restrict' keyword, or to
158 nothing if this is not supported. Do not define if restrict is
159 supported directly. */
160 #define restrict __restrict
161 /* Work around a bug in Sun C++: it does not support _Restrict or
162 __restrict__, even though the corresponding Sun C compiler ends up with
163 "#define restrict _Restrict" or "#define restrict __restrict__" in the
164 previous line. Perhaps some future version of Sun C++ will work with
165 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
166 #if defined __SUNPRO_CC && !defined __RESTRICT
167 # define _Restrict
168 # define __restrict__
169 #endif
171 /* Define to empty if the keyword `volatile' does not work. Warning: valid
172 code using `volatile' can become incorrect without. Disable with care. */
173 /* #undef volatile */