configure.ac : Fixed detection of S_IRGRP.

This commit is contained in:
Erik de Castro Lopo 2006-06-04 12:23:54 +00:00
parent fcf46c98d2
commit f90ff01b4c
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-06-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Fixed detection of S_IRGRP.
2006-05-30 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* sndfile-convert.c

View File

@ -48,8 +48,11 @@ AC_CHECK_HEADERS(inttypes.h)
AC_HEADER_SYS_WAIT
AC_CHECK_DECLS(S_IRGRP)
AC_DEFINE_UNQUOTED([HAVE_DECL_S_IRGRP],${HAVE_DECL_S_IRGRP},
[Set to 1 if S_IRGRP is defined.])
if test x$ac_cv_have_decl_S_IRGRP = xyes ; then
AC_DEFINE_UNQUOTED([HAVE_DECL_S_IRGRP],1,[Set to 1 if S_IRGRP is defined.])
else
AC_DEFINE_UNQUOTED([HAVE_DECL_S_IRGRP],0)
fi
#====================================================================================
# Check for support of the struct hack.