mirror of
https://github.com/samba-team/samba.git
synced 2025-03-08 04:58:40 +03:00
added aclent_t autoconf test (defines as an int if it doesn't exist).
this is to stop a compilation error caused by make proto putting functions that are wrapped in #if HAVE_ACLxxx code. maybe a better fix would be to have mkproto.awk exclude any functions wrapped in #if HAVEs that don't exist.
This commit is contained in:
parent
e3f0f1ad9c
commit
361c1b7ea9
@ -10,6 +10,7 @@
|
||||
#undef ssize_t
|
||||
#undef loff_t
|
||||
#undef offset_t
|
||||
#undef aclent_t
|
||||
#undef HAVE_CONNECT
|
||||
#undef HAVE_SHORT_INO_T
|
||||
#undef WITH_AFS
|
||||
|
761
source/configure
vendored
761
source/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -85,6 +85,7 @@ AC_STRUCT_ST_RDEV
|
||||
AC_DIRENT_D_OFF
|
||||
AC_CHECK_TYPE(ino_t,unsigned)
|
||||
AC_CHECK_TYPE(loff_t,off_t)
|
||||
AC_CHECK_TYPE(aclent_t, int)
|
||||
AC_CHECK_TYPE(offset_t,loff_t)
|
||||
AC_CHECK_TYPE(ssize_t, int)
|
||||
|
||||
|
@ -67,6 +67,7 @@
|
||||
#undef ssize_t
|
||||
#undef loff_t
|
||||
#undef offset_t
|
||||
#undef aclent_t
|
||||
#undef HAVE_CONNECT
|
||||
#undef HAVE_SHORT_INO_T
|
||||
#undef WITH_AFS
|
||||
|
Loading…
x
Reference in New Issue
Block a user