1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

From William Jojo <w.jojo[AT]hvcc.edu>

AIX dont have getopt.h by default.
Dont try including this file when building on AIX

(This used to be ctdb commit 06b33a826e71e1dd2f9e02ad614be55535d42045)
This commit is contained in:
Ronnie Sahlberg 2009-06-04 09:41:05 +10:00
parent e2810c0cb4
commit 85d67197fe

View File

@ -37,7 +37,9 @@
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#ifndef _AIX
#include <getopt.h>
#endif
#include <sys/mman.h>
static struct timeval tp1,tp2;