summaryrefslogtreecommitdiffstats
path: root/acconfig.h
blob: 8a28b9a99e1ed3e9af101dceb99e2c19d9e40c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Special definitions for GNU id-utils, processed by autoheader.
   Copyright (C) 1995, 96 Free Software Foundation, Inc.
*/

#ifndef _config_h_
#define _config_h_

@TOP@

/* Define to 1 if NLS is requested.  */
#undef ENABLE_NLS

/* Define as 1 if you have catgets and don't want to use GNU gettext.  */
#undef HAVE_CATGETS

/* Define as 1 if you have gettext and don't want to use GNU gettext.  */
#undef HAVE_GETTEXT

/* Define if your locale.h file contains LC_MESSAGES.  */
#undef HAVE_LC_MESSAGES

/* Define if your sys/types.h file defines the type ptrdiff_t.  */
#undef HAVE_PTRDIFF_T

/* Define to 1 if you have the stpcpy function.  */
#undef HAVE_STPCPY

/* Define if you have the <sys/ioctl.h> header file.  */
#undef HAVE_SYS_IOCTL_H

/* Define to the name of the installed language map file.  */
#undef LANGUAGE_MAP_FILE

/* Define to the name of the distribution.  */
#undef PACKAGE

/* The concatenation of the strings PACKAGE, "-", and VERSION.  */
#undef PACKAGE_VERSION

/* Define to 1 if ANSI function prototypes are usable.  */
#undef PROTOTYPES

/* Define to the major.minor version # of the distribution.  */
#undef VERSION

/* Define to 1 if GNU regex should be used instead of GNU rx.  */
#undef WITH_REGEX

@BOTTOM@

/* According to Thomas Neumann, NeXT POSIX termios support is losing,
   and sgtty is the way to go.  Note: the comment between #undef &
   HAVE_TERMIOS_H is necessary to defeat configure's edits.  */

#if HAVE_SGTTY_H
# ifdef NeXT
#  undef /**/ HAVE_TERMIOS_H
# endif
#endif

#ifndef __P
# ifndef PROTOTYPES
#  define	__P(protos)	()		/* traditional C */
# else
#  define	__P(protos)	protos		/* full-blown ANSI C */
# endif
#endif

#endif /* not _config_h_ */