--- configure.ac 2006-08-28 04:12:33.000000000 +0800 +++ configure.ac 2008-10-15 10:46:23.000000000 +0800 @@ -240,7 +240,7 @@ RT_PACKAGE_FIND([fuse], [-D_FILE_OFFSET_ ** $FUSE_MSG_ERRORS ])]) -FUSE_CFLAGS="$FUSE_CFLAGS -DFUSE_USE_VERSION=22" +FUSE_CFLAGS="$FUSE_CFLAGS -DFUSE_USE_VERSION=25" # --- configure 2006-08-28 04:13:13.000000000 +0800 +++ configure 2008-10-15 10:46:23.000000000 +0800 @@ -26489,7 +26489,7 @@ fi -FUSE_CFLAGS="$FUSE_CFLAGS -DFUSE_USE_VERSION=22" +FUSE_CFLAGS="$FUSE_CFLAGS -DFUSE_USE_VERSION=25" # diff -purN djmount/cache.h djmount/cache.h --- djmount/cache.h 2006-08-28 04:12:20.000000000 +0800 +++ djmount/cache.h 2008-10-15 11:12:35.000000000 +0800 @@ -25,6 +25,9 @@ #include #include +#ifdef __FreeBSD__ +#include +#endif /****************************************************************************** diff -purN djmount/fuse_main.c djmount/fuse_main.c --- djmount/fuse_main.c 2006-08-28 04:12:20.000000000 +0800 +++ djmount/fuse_main.c 2008-10-15 11:12:21.000000000 +0800 @@ -32,7 +32,9 @@ #include #include #include +#ifdef __linux__ #include +#endif #ifdef HAVE_SETXATTR # include #endif diff -purN djmount/string_util.c djmount/string_util.c --- djmount/string_util.c 2006-08-28 04:12:20.000000000 +0800 +++ djmount/string_util.c 2008-10-15 11:12:03.000000000 +0800 @@ -251,7 +251,11 @@ StringStream_GetSnapshot (StringStream* if (res && slen) *slen = ss->size; #else +#ifdef __linux__ off_t const size = ftello (ss->file); +#else + size_t const size = ftello (ss->file); +#endif res = talloc_size (result_context, size+1); if (res) { rewind (ss->file); diff -purN djmount/content_dir.c djmount/content_dir.c --- djmount/content_dir.c 2006-08-28 05:12:20.000000000 +0900 +++ djmount/content_dir.c 2012-02-12 21:14:11.000000000 +0900 @@ -302,7 +302,7 @@ BrowseOrSearchAll (ContentDir* cds, // Note: it is allowed to have nb_matched == 0 if it cannot be // computed by the CDS. int nb_retry = 0; - while (PtrArray_GetSize (objects) < nb_matched && nb_retry++ < 2) { + while (PtrArray_GetSize (objects) < nb_matched && ++nb_retry) { Log_Printf (LOG_WARNING, "ContentDir_BrowseId ObjectId=%s : " "got %d results, expected %d. Retry %d ...", diff -purN djmount/content_dir.h djmount/content_dir.h --- djmount/content_dir.h 2006-08-28 05:12:20.000000000 +0900 +++ djmount/content_dir.h 2012-02-12 21:14:11.000000000 +0900 @@ -46,7 +46,7 @@ typedef uint_fast32_t ContentDir_Index; // ContentDirectory ServiceType #define CONTENT_DIR_SERVICE_TYPE \ - "urn:schemas-upnp-org:service:ContentDirectory:1" + "urn:schemas-upnp-org:service:ContentDirectory:2" diff -purN djmount/upnp_util.h djmount/upnp_util.h --- djmount/upnp_util.h 2006-08-28 05:12:20.000000000 +0900 +++ djmount/upnp_util.h 2012-02-12 21:14:11.000000000 +0900 @@ -28,6 +28,7 @@ #include +#include #ifdef __cplusplus