carlasanches commented on issue #859: URL: https://github.com/apache/age/issues/859#issuecomment-1524101541
The reference occurs in lines 116, 117, and 118 of the [Makefile](https://github.com/apache/age/blob/master/Makefile) @M4rcxs mentioned. When installing the extension, `PG_CONFIG = pg_config` receives the path to the `pg_config` executable, which contains information about the installation, includes, and libraries directories path of PostgreSQL. Then, the variable `PGXS` receives the path to the `pgxs` directory, which contains rules for building PostgreSQL extensions using the command `$(PG_CONFIG) --pgxs`. Finally, `include $(PGXS)` will include the makefile that contain rules for compiling and installing the extension, as include `"postgres.h"` and other headers. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
