Browse Source

I fixed a compilation error, Dunno why a number in a #define wouldn't be in quotation marks, Also, Why is config.h in .gitignore?

MissValeska 9 years ago
parent
commit
e6bea6b2c0
1 changed files with 110 additions and 0 deletions
  1. 110
    0
      src/config.h

+ 110
- 0
src/config.h View File

@@ -0,0 +1,110 @@
1
+/* src/config.h.  Generated from config.h.in by configure.  */
2
+/* src/config.h.in.  Generated from configure.ac by autoheader.  */
3
+
4
+/* "Location of configuration files" */
5
+#define CONF_DIR "/etc/netsukuku"
6
+
7
+/* "Where the Netsukuku data is saved" */
8
+#define DATA_DIR "/usr/share/netsukuku"
9
+
10
+/* FreeBSD */
11
+/* #undef FREEBSD */
12
+
13
+/* GNU Linux */
14
+#define GNU_LINUX /**/
15
+
16
+/* Define to 1 if you have the <gmp.h> header file. */
17
+#define HAVE_GMP_H 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 `kvm' library (-lkvm). */
23
+/* #undef HAVE_LIBKVM */
24
+
25
+/* Define to 1 if you have the `nsl' library (-lnsl). */
26
+/* #undef HAVE_LIBNSL */
27
+
28
+/* Define to 1 if you have the `socket' library (-lsocket). */
29
+/* #undef HAVE_LIBSOCKET */
30
+
31
+/* Define to 1 if you have the `xnet' library (-lxnet). */
32
+/* #undef HAVE_LIBXNET */
33
+
34
+/* Define to 1 if you have the <memory.h> header file. */
35
+#define HAVE_MEMORY_H 1
36
+
37
+/* netlink */
38
+#define HAVE_NETLINK /**/
39
+
40
+/* NET_RT_IFLIST */
41
+/* #undef HAVE_NET_RT_IFLIST */
42
+
43
+/* Define to 1 if you have the <openssl/crypto.h> header file. */
44
+#define HAVE_OPENSSL_CRYPTO_H 1
45
+
46
+/* Define to 1 if you have the <pthread.h> header file. */
47
+#define HAVE_PTHREAD_H 1
48
+
49
+/* Define to 1 if you have the <stdint.h> header file. */
50
+#define HAVE_STDINT_H 1
51
+
52
+/* Define to 1 if you have the <stdlib.h> header file. */
53
+#define HAVE_STDLIB_H 1
54
+
55
+/* Define to 1 if you have the <strings.h> header file. */
56
+#define HAVE_STRINGS_H 1
57
+
58
+/* Define to 1 if you have the <string.h> header file. */
59
+#define HAVE_STRING_H 1
60
+
61
+/* Define to 1 if you have the <sys/stat.h> header file. */
62
+#define HAVE_SYS_STAT_H 1
63
+
64
+/* Define to 1 if you have the <sys/types.h> header file. */
65
+#define HAVE_SYS_TYPES_H 1
66
+
67
+/* Define to 1 if you have the <unistd.h> header file. */
68
+#define HAVE_UNISTD_H 1
69
+
70
+/* Define to 1 if you have the <zlib.h> header file. */
71
+#define HAVE_ZLIB_H 1
72
+
73
+/* IRIX 6.5 */
74
+/* #undef IRIX */
75
+
76
+/* OpenBSD */
77
+/* #undef OPEN_BSD */
78
+
79
+/* Name of package */
80
+#define PACKAGE "netsukuku"
81
+
82
+/* Define to the address where bug reports for this package should be sent. */
83
+#define PACKAGE_BUGREPORT ""
84
+
85
+/* Define to the full name of this package. */
86
+#define PACKAGE_NAME "netsukuku"
87
+
88
+/* Define to the full name and version of this package. */
89
+#define PACKAGE_STRING "netsukuku 0.0.9b"
90
+
91
+/* Define to the one symbol short name of this package. */
92
+#define PACKAGE_TARNAME "netsukuku"
93
+
94
+/* Define to the home page for this package. */
95
+#define PACKAGE_URL ""
96
+
97
+/* Define to the version of this package. */
98
+#define PACKAGE_VERSION "0.0.9b"
99
+
100
+/* ntkd.pid file location */
101
+#define PID_DIR "/var/run"
102
+
103
+/* Define to 1 if you have the ANSI C header files. */
104
+#define STDC_HEADERS 1
105
+
106
+/* SunOS 5 */
107
+/* #undef SUNOS */
108
+
109
+/* Version number of package */
110
+#define VERSION "0.0.9b"

Loading…
Cancel
Save