~ubuntu-branches/ubuntu/natty/libgpg-error/natty

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-12-03 13:46:24 UTC
  • Revision ID: james.westby@ubuntu.com-20101203134624-01r58mt17j1kh6xe
Tags: 1.10-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
/* Define if the GNU gettext() function is already present or preinstalled. */
27
27
#undef HAVE_GETTEXT
28
28
 
29
 
/* Define if you have the iconv() function. */
 
29
/* Define if you have the iconv() function and it works. */
30
30
#undef HAVE_ICONV
31
31
 
32
32
/* Define to 1 if you have the <inttypes.h> header file. */
62
62
/* Define to 1 if you have the <unistd.h> header file. */
63
63
#undef HAVE_UNISTD_H
64
64
 
 
65
/* Defined if we run on WindowsCE */
 
66
#undef HAVE_W32CE_SYSTEM
 
67
 
65
68
/* Defined if we run on a W32 API based system */
66
69
#undef HAVE_W32_SYSTEM
67
70
 
 
71
/* Define to the sub-directory in which libtool stores uninstalled libraries.
 
72
   */
 
73
#undef LT_OBJDIR
 
74
 
68
75
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
69
76
#undef NO_MINUS_C_MINUS_O
70
77
 
83
90
/* Define to the one symbol short name of this package. */
84
91
#undef PACKAGE_TARNAME
85
92
 
 
93
/* Define to the home page for this package. */
 
94
#undef PACKAGE_URL
 
95
 
86
96
/* Define to the version of this package. */
87
97
#undef PACKAGE_VERSION
88
98
 
92
102
/* Define to 1 if strerror_r returns char *. */
93
103
#undef STRERROR_R_CHAR_P
94
104
 
95
 
/* Version number of package */
96
 
#undef VERSION
97
 
 
 
105
/* Enable extensions on AIX 3, Interix.  */
 
106
#ifndef _ALL_SOURCE
 
107
# undef _ALL_SOURCE
 
108
#endif
98
109
/* Enable GNU extensions on systems that have them.  */
99
110
#ifndef _GNU_SOURCE
100
111
# undef _GNU_SOURCE
101
112
#endif
 
113
/* Enable threading extensions on Solaris.  */
 
114
#ifndef _POSIX_PTHREAD_SEMANTICS
 
115
# undef _POSIX_PTHREAD_SEMANTICS
 
116
#endif
 
117
/* Enable extensions on HP NonStop.  */
 
118
#ifndef _TANDEM_SOURCE
 
119
# undef _TANDEM_SOURCE
 
120
#endif
 
121
/* Enable general extensions on Solaris.  */
 
122
#ifndef __EXTENSIONS__
 
123
# undef __EXTENSIONS__
 
124
#endif
 
125
 
 
126
 
 
127
/* Version number of package */
 
128
#undef VERSION
 
129
 
 
130
/* Define to 1 if on MINIX. */
 
131
#undef _MINIX
 
132
 
 
133
/* Define to 2 if the system does not provide POSIX.1 features except with
 
134
   this defined. */
 
135
#undef _POSIX_1_SOURCE
 
136
 
 
137
/* Define to 1 if you need to in order for `stat' and other things to work. */
 
138
#undef _POSIX_SOURCE
102
139
 
103
140
/* Define to empty if `const' does not conform to ANSI C. */
104
141
#undef const
109
146
#if defined(HAVE_W32_SYSTEM) && !defined(ENABLE_NLS)
110
147
#define ENABLE_NLS 1
111
148
#endif
 
149
/* For building we need to define these macro.  */
 
150
#define GPG_ERR_ENABLE_GETTEXT_MACROS 1
 
151
#define GPG_ERR_ENABLE_ERRNO_MACROS 1
112
152