Gentoo Archives: gentoo-commits

From: Sven Eden <sven.eden@×××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/ufed:master commit in: /
Date: Fri, 01 Feb 2013 10:50:01
Message-Id: 1359656336.e4944be76a346f34b679d5008827864b7b04df2b.yamakuzure@gentoo
1 commit: e4944be76a346f34b679d5008827864b7b04df2b
2 Author: Sven Eden <sven.eden <AT> gmx <DOT> de>
3 AuthorDate: Thu Jan 31 18:18:56 2013 +0000
4 Commit: Sven Eden <sven.eden <AT> gmx <DOT> de>
5 CommitDate: Thu Jan 31 18:18:56 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=e4944be7
7
8 Added two missing checks
9
10 ---
11 config.h.in | 36 ++++++++++++++++++++++++++++++++++++
12 configure.ac | 3 +++
13 2 files changed, 39 insertions(+), 0 deletions(-)
14
15 diff --git a/config.h.in b/config.h.in
16 index 98d0c13..0916a33 100644
17 --- a/config.h.in
18 +++ b/config.h.in
19 @@ -1,5 +1,35 @@
20 /* config.h.in. Generated from configure.ac by autoheader. */
21
22 +/* Define to 1 if you have the <inttypes.h> header file. */
23 +#undef HAVE_INTTYPES_H
24 +
25 +/* Define to 1 if you have the <memory.h> header file. */
26 +#undef HAVE_MEMORY_H
27 +
28 +/* Define to 1 if you have the <stdint.h> header file. */
29 +#undef HAVE_STDINT_H
30 +
31 +/* Define to 1 if you have the <stdlib.h> header file. */
32 +#undef HAVE_STDLIB_H
33 +
34 +/* Define to 1 if you have the <strings.h> header file. */
35 +#undef HAVE_STRINGS_H
36 +
37 +/* Define to 1 if you have the <string.h> header file. */
38 +#undef HAVE_STRING_H
39 +
40 +/* Define to 1 if you have the <sys/stat.h> header file. */
41 +#undef HAVE_SYS_STAT_H
42 +
43 +/* Define to 1 if you have the <sys/types.h> header file. */
44 +#undef HAVE_SYS_TYPES_H
45 +
46 +/* Define to 1 if you have the <unistd.h> header file. */
47 +#undef HAVE_UNISTD_H
48 +
49 +/* Define to 1 if the system has the type `_Bool'. */
50 +#undef HAVE__BOOL
51 +
52 /* Name of package */
53 #undef PACKAGE
54
55 @@ -21,6 +51,9 @@
56 /* Define to the version of this package. */
57 #undef PACKAGE_VERSION
58
59 +/* Define to 1 if you have the ANSI C header files. */
60 +#undef STDC_HEADERS
61 +
62 /* Version number of package */
63 #undef VERSION
64
65 @@ -29,3 +62,6 @@
66 #ifndef __cplusplus
67 #undef inline
68 #endif
69 +
70 +/* Define to `unsigned int' if <sys/types.h> does not define. */
71 +#undef size_t
72
73 diff --git a/configure.ac b/configure.ac
74 index 50c54ca..1f47b68 100644
75 --- a/configure.ac
76 +++ b/configure.ac
77 @@ -18,6 +18,9 @@ else
78 fi
79 CFLAGS="${CFLAGS} -Wmissing-prototypes -Wstrict-prototypes"
80
81 +AC_TYPE_SIZE_T
82 +AC_CHECK_HEADER_STDBOOL
83 +
84 AC_ARG_WITH([curses],
85 [AS_HELP_STRING([--with-curses], [override default curses library (ncursesw ncurses curses)])],
86 [curses=$withval],