diff options
| author | Thomas G. Lockhart | 1998-10-06 05:42:58 +0000 |
|---|---|---|
| committer | Thomas G. Lockhart | 1998-10-06 05:42:58 +0000 |
| commit | 72129e98ce40d44a1b4c537b8c71611666cb36a0 (patch) | |
| tree | b0723192ce0e3721a3afccba361132d8c007be23 /src/Makefile.global.in | |
| parent | b53d36618f7594d8c58327245fcf3d2308f5bad6 (diff) | |
Try to configure interfaces/odbc using the --with-odbc switch.
Suppress installing man pages from here; do it from the doc/Makefile now.
Diffstat (limited to 'src/Makefile.global.in')
| -rw-r--r-- | src/Makefile.global.in | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 555066e281..47aef34c83 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.45 1998/07/26 04:30:15 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.46 1998/10/06 05:42:56 thomas Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -80,6 +80,16 @@ POSTDOCDIR= $(POSTGRESDIR)/doc # Where the header files necessary to build frontend programs get installed. HEADERDIR= $(POSTGRESDIR)/include +# Where the ODBC files get installed. +# This is the root for the actual locations, +# to override /usr/local in the standalone version. +POSTODBCDIR= $(POSTGRESDIR) + +# Where the ODBC installation-wide configuration file gets installed. +# This needs to be a client-side readable area, so can't go in $PGDATA. +# - thomas 1998-10-05 +ODBCINST= $(POSTGRESDIR) + ############################################################################## # # FEATURES @@ -143,6 +153,10 @@ TK_LIB= @TK_LIB@ USE_PERL= @USE_PERL@ +# +# enable native odbc driver support +USE_ODBC= @USE_ODBC@ + X_CFLAGS= @X_CFLAGS@ X_LIBS= @X_LIBS@ X11_LIBS= -lX11 @X_EXTRA_LIBS@ |
