]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Do not redefined _FILE_OFFSET_BITS (fix for opensolaris)
authorStefan Knoblich <stkn@freeswitch.org>
Tue, 16 Dec 2008 20:12:36 +0000 (20:12 +0000)
committerStefan Knoblich <stkn@freeswitch.org>
Tue, 16 Dec 2008 20:12:36 +0000 (20:12 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10819 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/xmlrpc-c/lib/abyss/src/file.c

index 75926e0fb96d92de684579a5d6978d71f3476a71..b428c0c7a670a51ad11f7ef5de70cc35d2426938 100644 (file)
        cause security exposures.
     */
 
+#if !defined(_FILE_OFFSET_BITS)
 #define _FILE_OFFSET_BITS 64
+#endif
     /* Tell GNU libc to make off_t 64 bits and all the POSIX file functions
        the versions that handle 64 bit file offsets.
     */
+#if !defined(_LARGE_FILES)
 #define _LARGE_FILES
+#endif
     /* Same as above, but for AIX */
 
 #include <string.h>