Skip to content

Instantly share code, notes, and snippets.

@springrider
Created July 24, 2011 02:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save springrider/1102151 to your computer and use it in GitHub Desktop.
Save springrider/1102151 to your computer and use it in GitHub Desktop.
SlavePGServer
BINDIR = /usr/lib/postgresql/9.0/bin
DOCDIR = /usr/share/doc/postgresql
HTMLDIR = /usr/share/doc/postgresql
INCLUDEDIR = /usr/include/postgresql
PKGINCLUDEDIR = /usr/include/postgresql
INCLUDEDIR-SERVER = /usr/include/postgresql/9.0/server
LIBDIR = /usr/lib
PKGLIBDIR = /usr/lib/postgresql/9.0/lib
LOCALEDIR = /usr/share/locale
MANDIR = /usr/share/postgresql/9.0/man
SHAREDIR = /usr/share/postgresql/9.0
SYSCONFDIR = /etc/postgresql-common
PGXS = /usr/lib/postgresql/9.0/lib/pgxs/src/makefiles/pgxs.mk
CONFIGURE = '--build=x86_64-linux-gnu' '--prefix=/usr' '--includedir=/usr/include' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--sysconfdir=/etc' '--localstatedir=/var' '--libexecdir=/usr/lib/postgresql-9.0' '--srcdir=.' '--disable-maintainer-mode' '--disable-dependency-tracking' '--disable-silent-rules' '--mandir=/usr/share/postgresql/9.0/man' '--with-docdir=/usr/share/doc/postgresql-doc-9.0' '--sysconfdir=/etc/postgresql-common' '--datadir=/usr/share/postgresql/9.0' '--bindir=/usr/lib/postgresql/9.0/bin' '--includedir=/usr/include/postgresql/' '--enable-nls' '--enable-integer-datetimes' '--enable-thread-safety' '--enable-debug' '--disable-rpath' '--with-tcl' '--with-perl' '--with-python' '--with-pam' '--with-krb5' '--with-gssapi' '--with-openssl' '--with-libxml' '--with-libxslt' '--with-ldap' '--with-ossp-uuid' '--with-gnu-ld' '--with-tclconfig=/usr/lib/tcl8.5' '--with-tkconfig=/usr/lib/tk8.5' '--with-includes=/usr/include/tcl8.5' '--with-system-tzdata=/usr/share/zoneinfo' '--with-pgport=5432' 'CFLAGS=-g -O2 -g -O2 -Wall -fPIC' 'LDFLAGS= -Wl,--as-needed' 'build_alias=x86_64-linux-gnu' 'CPPFLAGS='
CC = gcc
CPPFLAGS = -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include/tcl8.5
CFLAGS = -g -O2 -g -O2 -Wall -fPIC -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -g
CFLAGS_SL = -fpic
LDFLAGS = -Wl,--as-needed -Wl,--as-needed
LDFLAGS_EX =
LDFLAGS_SL =
LIBS = -lpgport -lxslt -lxml2 -lpam -lssl -lcrypto -lkrb5 -lcom_err -lgssapi_krb5 -lz -ledit -lcrypt -ldl -lm
VERSION = PostgreSQL 9.0.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment