]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Sat, 5 Jan 2008 20:55:36 +0000 (20:55 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Sat, 5 Jan 2008 20:55:36 +0000 (20:55 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7101 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/sqlite/.update
libs/sqlite/src/sqliteInt.h

index 1be88db2ad6ce0e7d8c540199dca6922d7c1de43..24ab478169a4c390b6fb217e0dee6fd71489140c 100644 (file)
@@ -1 +1 @@
-Sat Jan  5 12:23:10 EST 2008
+Sat Jan  5 15:55:07 EST 2008
index 467005a86e95664d8dc56dddb5c488493190afd6..8468a156d1abbbfc0c52f7f68c201bdaf9a24bbb 100644 (file)
@@ -15,7 +15,7 @@
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
-#define _GNU_SOURCE
+
 /*
 ** Extra interface definitions for those who need them
 */
@@ -287,11 +287,8 @@ static inline void *zmalloc(size_t x)
 #define sqliteMallocRaw(x)       malloc(x)//sqlite3MallocRaw(x,1)
 #define sqliteRealloc(x,y)       realloc(x, y)//sqlite3Realloc(x,y)
 #define sqliteStrDup(x)          strdup(x)//sqlite3StrDup(x)
-#ifdef _MSC_VER
 #define sqliteStrNDup(x,y)       sqlite3StrNDup(x,y)
-#else
-#define sqliteStrNDup(x,y)       strndup(x, y)//sqlite3StrNDup(x,y)
-#endif
+
 #define sqliteReallocOrFree(x,y) sqlite3ReallocOrFree(x,y)
 
 #endif