Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install pkg-config to probe ICU headers/libraries #1360

Merged
merged 2 commits into from Jan 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions INSTALL.md
Expand Up @@ -172,7 +172,8 @@ Below outlines how to setup MusicBrainz server with local::lib.
libpq-dev \
libxml2 \
libxml2-dev \
cpanminus
cpanminus \
pkg-config

2. Enable local::lib

Expand Down Expand Up @@ -228,7 +229,7 @@ Creating the database
To build our collate extension you will need libicu and its development
headers, to install these run:

sudo apt-get install libicu-dev
sudo apt-get install libicu-dev pkg-config

With libicu installed, you can build and install the collate extension by
running:
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile.tests
Expand Up @@ -64,6 +64,7 @@ RUN apt-get update && \
openjdk-8-jre \
openssh-client \
perl \
pkg-config \
postgresql \
postgresql-10-pgtap \
postgresql-contrib \
Expand Down
3 changes: 2 additions & 1 deletion docker/templates/macros.m4
Expand Up @@ -53,7 +53,8 @@ libicu-dev m4_dnl
libperl-dev m4_dnl
libpq-dev m4_dnl
libssl-dev m4_dnl
libxml2-dev')
libxml2-dev m4_dnl
pkg-config')
yvanzo marked this conversation as resolved.
Show resolved Hide resolved

# postgresql-server-dev-9.5 provides pg_config, which is needed by InitDb.pl
# at run-time.
Expand Down