diff options
author | Björn Jacke <bj@sernet.de> | 2011-05-29 23:42:09 +0200 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2011-05-30 00:53:59 +0200 |
commit | a4d03620cb51638d1786c32b50953029752b7bc5 (patch) | |
tree | 1662bed92321a4d1a86b6336b1be5d7f8c41daa6 /lib | |
parent | c7c0e4ca71277a02bb9371aaf47ac1157f7ca542 (diff) | |
download | samba-a4d03620cb51638d1786c32b50953029752b7bc5.tar.gz samba-a4d03620cb51638d1786c32b50953029752b7bc5.tar.xz samba-a4d03620cb51638d1786c32b50953029752b7bc5.zip |
replace: fix build issues on GNU Hurd (#7998)
Patch from Samuel Thibault <sthibault@debian.org> to fix Debian Bug 610678
resp. BSO #7998. IOV_MAX and UIO_MAXIOV are not defined on GNU Hurd.
Autobuild-User: Björn Jacke <bj@sernet.de>
Autobuild-Date: Mon May 30 00:53:59 CEST 2011 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/system/network.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/system/network.h b/lib/replace/system/network.h index f7c1bcfacbb..2ec9ebde452 100644 --- a/lib/replace/system/network.h +++ b/lib/replace/system/network.h @@ -332,7 +332,7 @@ typedef unsigned short int sa_family_t; */ # define IOV_MAX 512 # else -# error IOV_MAX and UIO_MAXIOV undefined +# warning IOV_MAX and UIO_MAXIOV undefined # endif # endif #endif |