mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
configure.ac : Fixed detection of S_IRGRP.
This commit is contained in:
parent
fcf46c98d2
commit
f90ff01b4c
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user