Created
March 8, 2012 18:26
-
-
Save jorgeas80/2002495 to your computer and use it in GitHub Desktop.
PostGIS configure line for Mac OS X 10.6.8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export MACOSX_DEPLOYMENT_TARGET=10.6 | |
export CFLAGS="-Os -arch i386 -arch x86_64" | |
export PG_CPPFLAGS="-arch i386 -arch x86_64" | |
export SHLIB_LINK="-arch i386 -arch x86_64" | |
export LDFLAGS="-arch i386 -arch x86_64" | |
./configure --with-pgconfig=/usr/local/pgsql/bin/pg_config --mandir=/usr/local/pgsql/share/man/ --with-geosconfig=/Library/Frameworks/GEOS.framework/unix/bin/geos-config --with-projdir=/Library/Frameworks/PROJ.framework/unix --with-gdalconfig=/Library/Frameworks/GDAL.framework/unix/bin/gdal-config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PostgreSQL must be compiled with -arch i386 -arch x86_64 to make it work.