|
From: Florian K. <br...@ac...> - 2012-12-11 13:22:38
|
On 12/11/2012 04:54 AM, Mark Wielaard wrote: > On Sat, 2012-12-08 at 19:26 +0000, sv...@va... wrote: >> +# Check for AT_FDCWD >> + >> +AC_MSG_CHECKING([for AT_FDCWD]) >> +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ >> +#define _GNU_SOURCE >> +#include <fcntl.h> >> +#include <unistd.h> >> +]], [[ >> + int a = AT_FDCWD; >> +]])], [ >> +ac_have_at_fdcwd=yes >> +AC_MSG_RESULT([yes]) >> +], [ >> +ac_have_at_fdcwd=no >> +ac_gcc_have_dfp_type=no >> +AC_MSG_RESULT([no]) >> +]) > > Probably harmless, but that ac_gcc_have_dfp_type=no seems a mistake. Too much cut'n paste. Thanks for spotting this. Fixed in r13175. Florian |