From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D91701387C2 for ; Fri, 1 Feb 2013 10:50:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14F6421C04E; Fri, 1 Feb 2013 10:49:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F37FA21C04E for ; Fri, 1 Feb 2013 10:49:52 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F0BEE33DCAB for ; Fri, 1 Feb 2013 10:49:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A6385E4098 for ; Fri, 1 Feb 2013 10:49:49 +0000 (UTC) From: "Sven Eden" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Eden" Message-ID: <1359656336.e4944be76a346f34b679d5008827864b7b04df2b.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: config.h.in configure.ac X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: e4944be76a346f34b679d5008827864b7b04df2b X-VCS-Branch: master Date: Fri, 1 Feb 2013 10:49:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4beb6052-8eea-445c-9266-846707061f2d X-Archives-Hash: 97aa230305611b612d9cc54865a8d434 commit: e4944be76a346f34b679d5008827864b7b04df2b Author: Sven Eden gmx de> AuthorDate: Thu Jan 31 18:18:56 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Thu Jan 31 18:18:56 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=e4944be7 Added two missing checks --- config.h.in | 36 ++++++++++++++++++++++++++++++++++++ configure.ac | 3 +++ 2 files changed, 39 insertions(+), 0 deletions(-) diff --git a/config.h.in b/config.h.in index 98d0c13..0916a33 100644 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,35 @@ /* config.h.in. Generated from configure.ac by autoheader. */ +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to 1 if the system has the type `_Bool'. */ +#undef HAVE__BOOL + /* Name of package */ #undef PACKAGE @@ -21,6 +51,9 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + /* Version number of package */ #undef VERSION @@ -29,3 +62,6 @@ #ifndef __cplusplus #undef inline #endif + +/* Define to `unsigned int' if does not define. */ +#undef size_t diff --git a/configure.ac b/configure.ac index 50c54ca..1f47b68 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,9 @@ else fi CFLAGS="${CFLAGS} -Wmissing-prototypes -Wstrict-prototypes" +AC_TYPE_SIZE_T +AC_CHECK_HEADER_STDBOOL + AC_ARG_WITH([curses], [AS_HELP_STRING([--with-curses], [override default curses library (ncursesw ncurses curses)])], [curses=$withval],