Fix build break.
authorJonathan Pryor <jonpryor@vt.edu>
Thu, 28 Mar 2013 03:28:56 +0000 (23:28 -0400)
committerJonathan Pryor <jonpryor@vt.edu>
Thu, 28 Mar 2013 03:29:50 +0000 (23:29 -0400)
5329fab3 requires <sys/uio.h>, which wasn't being included.

support/Makefile.am
support/map.c

index 0ae77e769b901db44970c48aa214319b0be1f87f..c339ebced737526b4eed078345d66c4f46d9ae61 100644 (file)
@@ -142,6 +142,7 @@ refresh:
        --autoconf-header="<sys/statvfs.h>"                   \
        --autoconf-header="<sys/xattr.h>"                     \
        --autoconf-header="<sys/mman.h>"                      \
+       --autoconf-header="<sys/uio.h>"                       \
        --autoconf-header="<unistd.h>"                        \
        --impl-header="<fcntl.h>"                             \
        --impl-header="<signal.h>"                            \
index 8374331c09a3e090fdd95e8c47efb7819b68ef7a..42fdf7cfaadfbfe04b825b13b538ac9427f8b02e 100644 (file)
@@ -45,6 +45,9 @@
 #ifdef HAVE_SYS_MMAN_H
 #include <sys/mman.h>
 #endif /* ndef HAVE_SYS_MMAN_H */
+#ifdef HAVE_SYS_UIO_H
+#include <sys/uio.h>
+#endif /* ndef HAVE_SYS_UIO_H */
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif /* ndef HAVE_UNISTD_H */