~ubuntu-branches/debian/stretch/ndisc6/stretch

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Rémi Denis-Courmont
  • Date: 2006-10-08 20:21:18 UTC
  • Revision ID: james.westby@ubuntu.com-20061008202118-zil2ffq4mjo3xcbk
Tags: upstream-0.7.3
Import upstream version 0.7.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* config.h.in.  Generated from configure.ac by autoheader.  */
 
2
 
 
3
/* Define to 1 if you have the `clock_nanosleep' function. */
 
4
#undef HAVE_CLOCK_NANOSLEEP
 
5
 
 
6
/* Define to 1 if you have the <getopt.h> header file. */
 
7
#undef HAVE_GETOPT_H
 
8
 
 
9
/* Define to 1 if you have the `getopt_long' function. */
 
10
#undef HAVE_GETOPT_LONG
 
11
 
 
12
/* Define to 1 if you have the `inet6_rth_add' function. */
 
13
#undef HAVE_INET6_RTH_ADD
 
14
 
 
15
/* Define to 1 if you have the <inttypes.h> header file. */
 
16
#undef HAVE_INTTYPES_H
 
17
 
 
18
/* Define to 1 if you have the <memory.h> header file. */
 
19
#undef HAVE_MEMORY_H
 
20
 
 
21
/* Define to 1 if you have the <stdint.h> header file. */
 
22
#undef HAVE_STDINT_H
 
23
 
 
24
/* Define to 1 if you have the <stdlib.h> header file. */
 
25
#undef HAVE_STDLIB_H
 
26
 
 
27
/* Define to 1 if you have the <strings.h> header file. */
 
28
#undef HAVE_STRINGS_H
 
29
 
 
30
/* Define to 1 if you have the <string.h> header file. */
 
31
#undef HAVE_STRING_H
 
32
 
 
33
/* Define to 1 if you have the <sys/stat.h> header file. */
 
34
#undef HAVE_SYS_STAT_H
 
35
 
 
36
/* Define to 1 if you have the <sys/types.h> header file. */
 
37
#undef HAVE_SYS_TYPES_H
 
38
 
 
39
/* Define to 1 if you have the <unistd.h> header file. */
 
40
#undef HAVE_UNISTD_H
 
41
 
 
42
/* Name of package */
 
43
#undef PACKAGE
 
44
 
 
45
/* Define to the address where bug reports for this package should be sent. */
 
46
#undef PACKAGE_BUGREPORT
 
47
 
 
48
/* Define to the hostname of the host who builds the package. */
 
49
#undef PACKAGE_BUILD_HOSTNAME
 
50
 
 
51
/* Define to the command line used to invoke the configure script. */
 
52
#undef PACKAGE_CONFIGURE_INVOCATION
 
53
 
 
54
/* Define to the full name of this package. */
 
55
#undef PACKAGE_NAME
 
56
 
 
57
/* Define to the full name and version of this package. */
 
58
#undef PACKAGE_STRING
 
59
 
 
60
/* Define to the one symbol short name of this package. */
 
61
#undef PACKAGE_TARNAME
 
62
 
 
63
/* Define to the version of this package. */
 
64
#undef PACKAGE_VERSION
 
65
 
 
66
/* Define to 1 if you have the ANSI C header files. */
 
67
#undef STDC_HEADERS
 
68
 
 
69
/* Version number of package */
 
70
#undef VERSION
 
71
 
 
72
/* Define to 1 if on AIX 3.
 
73
   System headers sometimes define this.
 
74
   We just want to avoid a redefinition error message.  */
 
75
#ifndef _ALL_SOURCE
 
76
# undef _ALL_SOURCE
 
77
#endif
 
78
 
 
79
/* Enable GNU extensions on systems that have them.  */
 
80
#ifndef _GNU_SOURCE
 
81
# undef _GNU_SOURCE
 
82
#endif
 
83
 
 
84
/* Define to 1 if on MINIX. */
 
85
#undef _MINIX
 
86
 
 
87
/* Define to 2 if the system does not provide POSIX.1 features except with
 
88
   this defined. */
 
89
#undef _POSIX_1_SOURCE
 
90
 
 
91
/* Define to 1 if you need to in order for `stat' and other things to work. */
 
92
#undef _POSIX_SOURCE
 
93
 
 
94
/* Enable extensions on Solaris.  */
 
95
#ifndef __EXTENSIONS__
 
96
# undef __EXTENSIONS__
 
97
#endif
 
98
#ifndef _POSIX_PTHREAD_SEMANTICS
 
99
# undef _POSIX_PTHREAD_SEMANTICS
 
100
#endif
 
101
 
 
102
/* Fallback replacement for GNU `getopt_long' */
 
103
#ifndef HAVE_GETOPT_LONG
 
104
# define getopt_long( argc, argv, optstring, longopts, longindex ) \
 
105
        getopt (argc, argv, optstring)
 
106
# if !GETOPT_STRUCT_OPTION && !HAVE_GETOPT_H
 
107
 struct option { const char *name; int has_arg; int *flag; int val; };
 
108
#  define GETOPT_STRUCT_OPTION 1
 
109
# endif
 
110
# ifndef required_argument
 
111
#  define no_argument 0
 
112
#  define required_argument 1
 
113
#  define optional_argument 2
 
114
# endif
 
115
#endif
 
116
 
 
117
 
 
118
#ifndef HAVE_CLOCK_NANOSLEEP
 
119
# define clock_nanosleep( c, f, d, r ) nanosleep( d, r )
 
120
#endif
 
121
 
 
122
#define _( str )                gettext (str)
 
123
#define N_( str )               gettext_noop (str)
 
124
#define gettext( str )          (str)
 
125
#define gettext_noop( str )     (str)
 
126
#define ngettext( a, b, c ) (((c) == 1) ? (a) : (b))
 
127