diff options
author | Andres Freund <andres@anarazel.de> | 2019-01-28 13:51:12 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-01-28 13:51:12 -0800 |
commit | 5c1186751214416fdf88f33a89c3dc88391d2d60 (patch) | |
tree | 850b8c89dae91f3988acfaed324fd39263b03dc2 | |
parent | e6799d5a53011985d916fdb48fe014a4ae70422e (diff) | |
download | postgresql-5c1186751214416fdf88f33a89c3dc88391d2d60.tar.gz postgresql-5c1186751214416fdf88f33a89c3dc88391d2d60.zip |
Install JIT related headers.
There's no reason not to install these, and jit.h can be useful for
users of e.g. planner hooks.
Author: Donald Dong
Reviewed-By: Andres Freund
Discussion: https://postgr.es/m/296D405F-7F95-49F1-B565-389D6AA78505@csumb.edu
Backpatch: 11-, where JIT compilation was introduced
-rw-r--r-- | src/include/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/Makefile b/src/include/Makefile index 6bdfd7db911..c557375ae31 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -18,7 +18,7 @@ all: pg_config.h pg_config_ext.h pg_config_os.h # Subdirectories containing installable headers SUBDIRS = access bootstrap catalog commands common datatype \ - executor fe_utils foreign \ + executor fe_utils foreign jit \ lib libpq mb nodes optimizer parser partitioning postmaster \ regex replication rewrite \ statistics storage tcop snowball snowball/libstemmer tsearch \ |