* configure.in: Remove AC_ALLOCA test and test for __builtin_memset.
* configure: Regenerate.
This commit is contained in:
parent
c3099d3d42
commit
4bd8eb7d1b
|
@ -1,3 +1,8 @@
|
|||
2011-02-07 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* configure.in: Remove AC_ALLOCA test and test for __builtin_memset.
|
||||
* configure: Regenerate.
|
||||
|
||||
2010-04-19 Christopher Faylor <me+cygwin@cgf.cx>
|
||||
|
||||
* transport_pipes.cc: Include ntdef.h to accommodate cygerrno.h.
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -44,26 +44,8 @@ AC_CHECK_TOOL(NM, nm, nm)
|
|||
AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
|
||||
AC_CHECK_TOOL(WINDRES, windres, windres)
|
||||
|
||||
AC_ALLOCA
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
dnl check whether gcc supports __builtin_memset.
|
||||
# Test for builtin mem* functions.
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([
|
||||
#include <string.h>
|
||||
void foo(char *s, int c, size_t n)
|
||||
{
|
||||
__builtin_memset(s, c, n);
|
||||
}
|
||||
], [ ],
|
||||
use_builtin_memset=yes, use_builtin_memset=no)
|
||||
if test $use_builtin_memset = "yes"; then
|
||||
AC_DEFINE(HAVE_BUILTIN_MEMSET)
|
||||
fi
|
||||
AC_LANG_RESTORE
|
||||
|
||||
AC_ARG_ENABLE(debugging,
|
||||
[ --enable-debugging Build a cygwin DLL which has more consistency checking for debugging],
|
||||
[case "${enableval}" in
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2011-02-07 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* configure.in: Remove AC_ALLOCA test and test for __builtin_memset.
|
||||
* configure: Regenerate.
|
||||
|
||||
2011-02-07 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_console.cc (fhandler_console::write_normal): Remove
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -48,26 +48,8 @@ AC_CHECK_TOOL(RANLIB, ranlib, ranlib)
|
|||
AC_CHECK_TOOL(STRIP, strip, strip)
|
||||
AC_CHECK_TOOL(WINDRES, windres, windres)
|
||||
|
||||
AC_ALLOCA
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
dnl check whether gcc supports __builtin_memset.
|
||||
# Test for builtin mem* functions.
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([
|
||||
#include <string.h>
|
||||
void foo(char *s, int c, size_t n)
|
||||
{
|
||||
__builtin_memset(s, c, n);
|
||||
}
|
||||
], [ ],
|
||||
use_builtin_memset=yes, use_builtin_memset=no)
|
||||
if test $use_builtin_memset = "yes"; then
|
||||
AC_DEFINE(HAVE_BUILTIN_MEMSET)
|
||||
fi
|
||||
AC_LANG_RESTORE
|
||||
|
||||
AC_ARG_ENABLE(debugging,
|
||||
[ --enable-debugging Build a cygwin DLL which has more consistency checking for debugging],
|
||||
[case "${enableval}" in
|
||||
|
|
Loading…
Reference in New Issue