AROS fixes
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Wed, 29 May 2013 05:13:08 +0000 (22:13 -0700)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Wed, 29 May 2013 05:13:08 +0000 (22:13 -0700)
aros/aros_compat.h
lib/libnfs.c

index e882967a6ee2e2ad14ab4ef867aab44e2d56a268..f06974b98c83de02f752de18beddb1fe7b949893 100644 (file)
@@ -8,6 +8,8 @@
 #include <sys/mount.h>
 #include <proto/socket.h>
 #include <proto/exec.h>
+#include <netdb.h>
+#include <net/if.h>
 
 #define statvfs statfs
 #define ioctl IoctlSocket
index c322c377b15d5a858da2e084c0e8aeeb03ee11b8..2915c9a99b6edf65123925490f3f696bc50f34c5 100644 (file)
@@ -2868,6 +2868,7 @@ int nfs_utimes_async(struct nfs_context *nfs, const char *path, struct timeval *
 /*
  * Async utime()
  */
+#ifdef HAVE_UTIME_H
 int nfs_utime_async(struct nfs_context *nfs, const char *path, struct utimbuf *times, nfs_cb cb, void *private_data)
 {
        struct timeval *new_times = NULL;
@@ -2892,9 +2893,7 @@ int nfs_utime_async(struct nfs_context *nfs, const char *path, struct utimbuf *t
 
        return 0;
 }
-
-
-
+#endif
 
 
 /*