aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Mono.Data.Sqlite.dll.config
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-04-07 21:44:54 +0100
committerJustin Clark-Casey (justincc)2011-04-07 21:44:54 +0100
commit1b1e6f78fd61b1eb22ea140ba58cf7df3829fd20 (patch)
tree2be911c118175a93812d517fedc96f2824240453 /bin/Mono.Data.Sqlite.dll.config
parentbump main branch version number to 0.7.2. A separate 0.7.1-post-fixes branch... (diff)
downloadopensim-SC_OLD-1b1e6f78fd61b1eb22ea140ba58cf7df3829fd20.zip
opensim-SC_OLD-1b1e6f78fd61b1eb22ea140ba58cf7df3829fd20.tar.gz
opensim-SC_OLD-1b1e6f78fd61b1eb22ea140ba58cf7df3829fd20.tar.bz2
opensim-SC_OLD-1b1e6f78fd61b1eb22ea140ba58cf7df3829fd20.tar.xz
Bundle a built-from-source Mac OS X sqlite3 universal dylib with OpenSim and use this instead of the system one.
This means that Mac OS X users can now use the standard sqlite adaptor instead of the legacy one. This is SQLite 3.7.5. I configured the build with the line CFLAGS="-Os -g -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc7400 -DSQLITE_ENABLE_COLUMN_METADATA" LDFLAGS="-arch i386 -arch x86_64 -arch ppc7400" ./configure --disable-dependency-tracking The SQLITE_ENABLE_COLUMN_METADATA flag exports the metadata symbols that modern Mono SQLite adaptors need. The -Os removes debugging symbols (as per the sqlite3 source pkg README) The other parts are to cross compile for x86_64, i386 and ppc. On Mac OS X, Mono can actually only P/INVOKE 32-bit libraries even on 64 bit platforms so i386 is being used. The dylib has not been tested on ppc.
Diffstat (limited to 'bin/Mono.Data.Sqlite.dll.config')
-rw-r--r--bin/Mono.Data.Sqlite.dll.config1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/Mono.Data.Sqlite.dll.config b/bin/Mono.Data.Sqlite.dll.config
index 6a95476..ccc0cf5 100644
--- a/bin/Mono.Data.Sqlite.dll.config
+++ b/bin/Mono.Data.Sqlite.dll.config
@@ -1,4 +1,5 @@
1<configuration> 1<configuration>
2 <dllmap os="osx" dll="sqlite3" target="./libsqlite3.dylib" />
2 <dllmap os="!windows,osx" cpu="x86-64,ia64" wordsize="64" dll="sqlite3" target="./libsqlite3_64.so" /> 3 <dllmap os="!windows,osx" cpu="x86-64,ia64" wordsize="64" dll="sqlite3" target="./libsqlite3_64.so" />
3 <dllmap os="!windows,osx" cpu="x86" wordsize="32" dll="sqlite3" target="./libsqlite3_32.so" /> 4 <dllmap os="!windows,osx" cpu="x86" wordsize="32" dll="sqlite3" target="./libsqlite3_32.so" />
4</configuration> 5</configuration>