Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit10c378f

Browse files
committed
Fix contrib/sepgsql and contrib/xml2 to always link required libraries.
contrib/xml2 can get by without libxslt; the relevant features justwon't work. But if doesn't have libxml2, or if sepgsql doesn't havelibselinux, the link succeeds but the module then fails to work at loadtime. To avoid that, link the require libraries unconditionally, sothat it will be clear at link-time that there is a problem.Per discussion with Tom Lane and KaiGai Kohei.
1 parenta64bdf5 commit10c378f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎contrib/sepgsql/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ include $(top_builddir)/src/Makefile.global
1919
include$(top_srcdir)/contrib/contrib-global.mk
2020
endif
2121

22-
SHLIB_LINK +=$(filter-lselinux,$(LIBS))
22+
SHLIB_LINK += -lselinux
2323
REGRESS_OPTS += --launcher$(top_builddir)/contrib/sepgsql/launcher
2424

2525
check_selinux_environment:

‎contrib/xml2/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DATA = xml2--1.0.sql xml2--unpackaged--1.0.sql
88

99
REGRESS = xml2
1010

11-
SHLIB_LINK +=$(filter -lxslt,$(LIBS))$(filter-lxml2,$(LIBS))
11+
SHLIB_LINK +=$(filter -lxslt,$(LIBS)) -lxml2
1212

1313
ifdefUSE_PGXS
1414
PG_CONFIG = pg_config

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp