|
From: Mark W. <mj...@re...> - 2012-12-11 09:58:04
|
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. Cheers, Mark |