mirror of
https://github.com/postgres/postgres.git
synced 2025-05-28 00:03:23 -04:00
All citext functions are PARALLEL SAFE, and a couple of them can benefit from having aggregate combine functions. Andreas Karlsson
22 lines
485 B
Makefile
22 lines
485 B
Makefile
# contrib/citext/Makefile
|
|
|
|
MODULES = citext
|
|
|
|
EXTENSION = citext
|
|
DATA = citext--1.2.sql citext--1.1--1.2.sql citext--1.0--1.1.sql \
|
|
citext--unpackaged--1.0.sql
|
|
PGFILEDESC = "citext - case-insensitive character string data type"
|
|
|
|
REGRESS = citext
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/citext
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|