We now distribute documentation.

This commit is contained in:
Federico Di Gregorio 2006-01-01 11:14:48 +00:00
parent 7db16edad3
commit 73846966a2
3 changed files with 10 additions and 5 deletions

View File

@ -1,4 +1,8 @@
2006-01-01 Federico Di Gregorio <fog@initd.org>
2006-01-01 Federico Di Gregorio <fog@initd.org>
* MANIFEST.in: we now distrbute pre-built documentation (still need
to add to setup.py the code necessary to build docs as part of the
build process.)
* psycopg/connection_int.c: PostgreSQL encoding names are now force
uppercase (after all PostgreSQL documentation reports them this way.)

View File

@ -9,3 +9,4 @@ recursive-include scripts *.py *.sh
include scripts/maketypes.sh scripts/buildtypes.py
include AUTHORS README INSTALL ChangeLog
include PKG-INFO MANIFEST.in MANIFEST setup.py setup.cfg
recursive-include doc *.rst *.css *.html

View File

@ -168,13 +168,13 @@ class psycopg_build_ext(build_ext):
fink installs lots of goodies in /sw/... - make sure we check there
"""
self.include_dirs.append("/sw/include")
self.include_dirs.append("/sw/include")
self.include_dirs.append("/sw/include/postgresql")
self.include_dirs.append("/sw/include/postgresql/server")
self.include_dirs.append("/sw/include/postgresql/server")
self.library_dirs.append("/sw/lib")
self.include_dirs.append("/opt/local/include")
self.include_dirs.append("/opt/local/include")
self.include_dirs.append("/opt/local/include/postgresql")
self.include_dirs.append("/opt/local/include/postgresql/server")
self.include_dirs.append("/opt/local/include/postgresql/server")
self.library_dirs.append("/opt/local/lib")
self.library_dirs.append("/usr/lib")
self.libraries.append('ssl')