xref: /dragonfly/lib/libpam/libpam/config.h (revision ffe53622)
1 /* config.h.  Generated from config.h.in by configure.  */
2 /* config.h.in.  Generated from configure.ac by autoheader.  */
3 
4 /* Whether loading unversioned modules support is disabled */
5 /* #undef DISABLE_UNVERSIONED_MODULES */
6 
7 /* Define to 1 if you have the <crypt.h> header file. */
8 /* #undef HAVE_CRYPT_H */
9 
10 /* Define to 1 if you have the <dlfcn.h> header file. */
11 #define HAVE_DLFCN_H 1
12 
13 /* Define to 1 if you have the `fdlopen' function. */
14 #define HAVE_FDLOPEN 1
15 
16 /* Define to 1 if you have the `fpurge' function. */
17 #define HAVE_FPURGE 1
18 
19 /* Define to 1 if you have the <inttypes.h> header file. */
20 #define HAVE_INTTYPES_H 1
21 
22 /* Define to 1 if you have the `crypt' library (-lcrypt). */
23 #define HAVE_LIBCRYPT 1
24 
25 /* Define to 1 if you have the `dl' library (-ldl). */
26 #define HAVE_LIBDL 1
27 
28 /* Define to 1 if you have the <memory.h> header file. */
29 #define HAVE_MEMORY_H 1
30 
31 /* Define to 1 if you have the <stdint.h> header file. */
32 #define HAVE_STDINT_H 1
33 
34 /* Define to 1 if you have the <stdlib.h> header file. */
35 #define HAVE_STDLIB_H 1
36 
37 /* Define to 1 if you have the <strings.h> header file. */
38 #define HAVE_STRINGS_H 1
39 
40 /* Define to 1 if you have the <string.h> header file. */
41 #define HAVE_STRING_H 1
42 
43 /* Define to 1 if you have the `strlcat' function. */
44 #define HAVE_STRLCAT 1
45 
46 /* Define to 1 if you have the `strlcmp' function. */
47 /* #undef HAVE_STRLCMP */
48 
49 /* Define to 1 if you have the `strlcpy' function. */
50 #define HAVE_STRLCPY 1
51 
52 /* Define to 1 if you have the <sys/stat.h> header file. */
53 #define HAVE_SYS_STAT_H 1
54 
55 /* Define to 1 if you have the <sys/types.h> header file. */
56 #define HAVE_SYS_TYPES_H 1
57 
58 /* Define to 1 if you have the <unistd.h> header file. */
59 #define HAVE_UNISTD_H 1
60 
61 /* OpenPAM library major number */
62 #define LIB_MAJ 2
63 
64 /* Define to the sub-directory in which libtool stores uninstalled libraries.
65    */
66 #define LT_OBJDIR ".libs/"
67 
68 /* Turn debugging on by default */
69 /* #undef OPENPAM_DEBUG */
70 
71 /* OpenPAM modules directory */
72 /* Let the Makefile decide this */
73 /* #define OPENPAM_MODULES_DIR "${exec_prefix}/lib/" */
74 
75 /* Name of package */
76 #define PACKAGE "openpam"
77 
78 /* Define to the address where bug reports for this package should be sent. */
79 #define PACKAGE_BUGREPORT "des@des.no"
80 
81 /* Define to the full name of this package. */
82 #define PACKAGE_NAME "OpenPAM"
83 
84 /* Define to the full name and version of this package. */
85 #define PACKAGE_STRING "OpenPAM 20120526"
86 
87 /* Define to the one symbol short name of this package. */
88 #define PACKAGE_TARNAME "openpam"
89 
90 /* Define to the home page for this package. */
91 #define PACKAGE_URL ""
92 
93 /* Define to the version of this package. */
94 #define PACKAGE_VERSION "20120526"
95 
96 /* Define to 1 if you have the ANSI C header files. */
97 #define STDC_HEADERS 1
98 
99 /* Enable extensions on AIX 3, Interix.  */
100 #ifndef _ALL_SOURCE
101 # define _ALL_SOURCE 1
102 #endif
103 /* Enable GNU extensions on systems that have them.  */
104 #ifndef _GNU_SOURCE
105 # define _GNU_SOURCE 1
106 #endif
107 /* Enable threading extensions on Solaris.  */
108 #ifndef _POSIX_PTHREAD_SEMANTICS
109 # define _POSIX_PTHREAD_SEMANTICS 1
110 #endif
111 /* Enable extensions on HP NonStop.  */
112 #ifndef _TANDEM_SOURCE
113 # define _TANDEM_SOURCE 1
114 #endif
115 /* Enable general extensions on Solaris.  */
116 #ifndef __EXTENSIONS__
117 # define __EXTENSIONS__ 1
118 #endif
119 
120 
121 /* Version number of package */
122 #define VERSION "20120526"
123 
124 /* Define to 1 if on MINIX. */
125 /* #undef _MINIX */
126 
127 /* Define to 2 if the system does not provide POSIX.1 features except with
128    this defined. */
129 /* #undef _POSIX_1_SOURCE */
130 
131 /* Define to 1 if you need to in order for `stat' and other things to work. */
132 /* #undef _POSIX_SOURCE */
133 
134 /* Define to empty if `const' does not conform to ANSI C. */
135 /* #undef const */
136 
137 /* Define to the equivalent of the C99 'restrict' keyword, or to
138    nothing if this is not supported.  Do not define if restrict is
139    supported directly.  */
140 #define restrict __restrict
141 /* Work around a bug in Sun C++: it does not support _Restrict or
142    __restrict__, even though the corresponding Sun C compiler ends up with
143    "#define restrict _Restrict" or "#define restrict __restrict__" in the
144    previous line.  Perhaps some future version of Sun C++ will work with
145    restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
146 #if defined __SUNPRO_CC && !defined __RESTRICT
147 # define _Restrict
148 # define __restrict__
149 #endif
150 
151 /* Define to empty if the keyword `volatile' does not work. Warning: valid
152    code using `volatile' can become incorrect without. Disable with care. */
153 /* #undef volatile */
154