Обсуждение: pgsql/ /GNUmakefile.in /Makefile ontrib/cube/c ...

Поиск
Список
Период
Сортировка

pgsql/ /GNUmakefile.in /Makefile ontrib/cube/c ...

От
Tom Lane
Дата:
CVSROOT:    /home/projects/pgsql/cvsroot
Module name:    pgsql
Changes by:    tgl@hub.org    01/02/09 21:31:31

Modified files:
    .              : GNUmakefile.in Makefile
    contrib/cube   : cubedata.h
    contrib/earthdistance: earthdistance.c
    contrib/fulltextindex: fti.c
    contrib/intarray: _int.c
    contrib/isbn_issn: isbn_issn.c
    contrib/lo     : lo.c
    contrib/pg_dumplo: main.c
    contrib/pgbench: pgbench.c
    contrib/pgcrypto: encode.c internal.c krb.c md5.c mhash.c
                      openssl.c pgcrypto.c sha1.c
    contrib/soundex: soundex.c
    contrib/string : string_io.c
    doc/src/sgml   : installation.sgml
    src            : GNUmakefile.in Makefile
    src/backend/lib: dllist.c
    src/backend/libpq: hba.c pqsignal.c
    src/backend/port: snprintf.c
    src/backend/port/dynloader: aix.h beos.c bsdi.h dgux.h freebsd.c
                                freebsd.h hpux.c irix5.h linux.h
                                netbsd.c netbsd.h nextstep.h
                                openbsd.c openbsd.h qnx4.c sco.h
                                solaris.h sunos4.h svr4.h ultrix4.c
                                univel.h unixware.h win.h
    src/backend/postmaster: postmaster.c
    src/backend/storage/large_object: inv_api.c
    src/backend/utils/adt: varchar.c varlena.c
    src/backend/utils/fmgr: fmgr.c
    src/backend/utils/mb: alt.c big5.c common.c conv.c iso.c
                          liketest.c mbutils.c wchar.c win.c
                          wstrcmp.c wstrncmp.c
    src/bin/pg_dump: common.c pg_backup.h pg_backup_archiver.h
                     pg_backup_custom.c pg_backup_db.c
                     pg_backup_files.c pg_backup_null.c
                     pg_backup_tar.c pg_dump.c pg_dump.h
                     pg_restore.c
    src/bin/pg_id  : pg_id.c
    src/bin/pg_passwd: pg_passwd.c
    src/bin/psql   : command.c common.c common.h copy.c describe.c
                     help.c input.c large_obj.c mainloop.c
                     mainloop.h print.c prompt.c startup.c
                     stringutils.c tab-complete.c tab-complete.h
                     variables.c
    src/include    : Makefile c.h miscadmin.h postgres.h
                     postgres_ext.h
    src/include/executor: spi.h
    src/include/libpq: libpq-fs.h pqcomm.h
    src/include/mb : pg_wchar.h
    src/include/regex: regex.h regex2.h utils.h
    src/include/storage: ipc.h
    src/include/utils: dynamic_loader.h exc.h geo_decls.h guc.h
                       palloc.h
    src/interfaces/ecpg/lib: extern.h
    src/interfaces/ecpg/preproc: c_keywords.c descriptor.c ecpg.c
                                 ecpg_keywords.c extern.h keywords.c
                                 output.c pgc.l preproc.y type.c
                                 type.h variable.c
    src/interfaces/libpgtcl: pgtcl.c pgtclCmds.c pgtclId.c
    src/interfaces/libpq: fe-auth.c fe-connect.c fe-exec.c fe-lobj.c
                          fe-misc.c fe-print.c libpq-int.h
                          pqexpbuffer.c pqsignal.h
    src/interfaces/libpq++: pgconnection.h
    src/test/regress: regress.c
    src/tutorial   : funcs.c funcs_new.c
Added files:
    src/include    : postgres_fe.h

Log message:
    Restructure the key include files per recent pghackers discussion: there
    are now separate files "postgres.h" and "postgres_fe.h", which are meant
    to be the primary include files for backend .c files and frontend .c files
    respectively.  By default, only include files meant for frontend use are
    installed into the installation include directory.  There is a new make
    target 'make install-all-headers' that adds the whole content of the
    src/include tree to the installed fileset, for use by people who want to
    develop server-side code without keeping the complete source tree on hand.
    Cleaned up a whole lot of crufty and inconsistent header inclusions.