Skip to content

Commit 532d5be

Browse files
Add pkg-config to installation dependencies
A fresh Ubuntu 16.04 gives the following error with the current instructions: configure.ac:10: error: possibly undefined macro: AC_SUBST If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:48: error: possibly undefined macro: AC_DEFINE autoreconf: /usr/bin/autoconf failed with exit status: 1 Installing pkg-config solves this issue.
1 parent 23fcd28 commit 532d5be

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ The installation process has the following dependencies:
1717

1818
- [autoconf](https://www.gnu.org/software/autoconf/autoconf.html)
1919
- [libtool](https://www.gnu.org/software/libtool/)
20+
- [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/)
2021

21-
The following commands should install both packages:
22+
The following commands should install all packages:
2223

2324
sudo apt-get update
24-
sudo apt-get install autoconf libtool
25+
sudo apt-get install autoconf libtool pkg-config
2526

2627
### Installing
2728

0 commit comments

Comments
 (0)