diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-07-22 23:10:39 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-07-22 23:10:39 +0000 |
| commit | 59f0a24756ea18d472dd12c64a1d78c1762e51eb (patch) | |
| tree | 43dcf45498f73427380500f1587fbd90f4afa1bc /databases/postgresql92-server | |
| parent | 4a7d808593e3fab610a8c64623987821b8c82b7d (diff) | |
Notes
Diffstat (limited to 'databases/postgresql92-server')
| -rw-r--r-- | databases/postgresql92-server/Makefile | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile index 8da1809f1d6c..ddde82a5a72b 100644 --- a/databases/postgresql92-server/Makefile +++ b/databases/postgresql92-server/Makefile @@ -73,37 +73,43 @@ MAKE_ENV= PATH=${PREFIX}/bin:${PATH} CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} .endif +.if defined(SERVER_ONLY) +OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA +LDAP_DESC= Build with LDAP authentication support +DTRACE_DESC= Build with DTrace probes +TZDATA_DESC= Use internal timezone database +XML_DESC= Build with XML data type + +# See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info +OPTIONS_DEFINE+= ICU +ICU_DESC= Use ICU for unicode collation + +# See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info +# (requires dump/restore if modified.) +OPTIONS_DEFINE+= INTDATE +INTDATE_DESC= Builds with 64-bit date/time type +OPTIONS_DEFAULT= XML TZDATA INTDATE +.endif + .if !defined(SLAVE_ONLY) -OPTIONS_DEFINE+= NLS DTRACE PAM LDAP GSSAPI OPTIMIZED_CFLAGS XML TZDATA DEBUG +OPTIONS_DEFINE+= NLS PAM GSSAPI OPTIMIZED_CFLAGS DEBUG OPTIONS_RADIO= KRB5 OPTIONS_RADIO_KRB5= MIT_KRB5 HEIMDAL_KRB5 KRB5_DESC= Build with kerberos provider support NLS_DESC= Use internationalized messages -DTRACE_DESC= Build with DTrace probes (server only) PAM_DESC= Build with PAM Support -LDAP_DESC= Build with LDAP authentication support (server only) MIT_KRB5_DESC= Build with MIT kerberos support HEIMDAL_KRB5_DESC= Builds with Heimdal kerberos GSSAPI_DESC= Build with GSSAPI support OPTIMIZED_CFLAGS_DESC= Builds with compiler optimizations (-O3) -XML_DESC= Build with XML data type (server) -TZDATA_DESC= Use internal timezone database (server) DEBUG_DESC= Builds with debugging symbols -# See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info -OPTIONS_DEFINE+= ICU -ICU_DESC= Use ICU for unicode collation (server) - -# See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info -# (requires dump/restore if modified.) -OPTIONS_DEFINE+= INTDATE -INTDATE_DESC= Builds with 64-bit date/time type (server) OPTIONS_DEFINE+= SSL SSL_DESC= Build with OpenSSL support -OPTIONS_DEFAULT= NLS XML TZDATA INTDATE SSL +OPTIONS_DEFAULT+= NLS SSL .endif # !SLAVE_ONLY .if defined(CLIENT_ONLY) |
