diff options
author | shankar | 2010-02-23 11:47:05 +0000 |
---|---|---|
committer | shankar | 2010-02-23 11:47:05 +0000 |
commit | 802041554ca70f3485bccacf60198ba017895336 (patch) | |
tree | 410f1f1ced23a8532a941256f6c19863935f38c4 /util/src | |
parent | b9b0020b76017ddf13b98f0c0b4a0af4646819c5 (diff) | |
download | axis2c-802041554ca70f3485bccacf60198ba017895336.tar.gz axis2c-802041554ca70f3485bccacf60198ba017895336.tar.bz2 |
fixing issue AXIS2C-1422
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@915291 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/platforms/unix/uuid_gen_unix.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/src/platforms/unix/uuid_gen_unix.c b/util/src/platforms/unix/uuid_gen_unix.c index cdc2544..1941207 100644 --- a/util/src/platforms/unix/uuid_gen_unix.c +++ b/util/src/platforms/unix/uuid_gen_unix.c @@ -32,7 +32,9 @@ # include <linux/if.h> #else # ifdef HAVE_NET_IF_H -# include <sys/sockio.h> +# ifdef HAVE_SYS_SOCKIO_H +# include <sys/sockio.h> +# endif # include <net/if.h> # include <net/if_arp.h> # endif |