diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-05-04 18:40:04 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-05-04 18:40:04 +0200 |
commit | 572d5feb6ee2bad762abc7f79ee563d52e5fa785 (patch) | |
tree | cee591d69ae92884d201046b4cf266edf5299661 | |
parent | 759b931447a4daa14ed02dee9b12d46ddb3037f0 (diff) |
configure.ac: Substitute CAIROMM_EXTRA_LIBS during configuration
CAIROMM_EXTRA_LIBS has been added to data/cairomm.pc.in. It's used only
in Meson builds. During an Autotools build it must be replaced by an
empty string.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c912122..0edd14e 100644 --- a/configure.ac +++ b/configure.ac @@ -46,6 +46,7 @@ AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL PKG_PROG_PKG_CONFIG +AC_SUBST([CAIROMM_EXTRA_LIBS], ['']) AC_SUBST([CAIROMM_MODULES], ['cairo >= 1.10.0 sigc++-3.0 >= 2.5.1']) cairomm_allmodules=$CAIROMM_MODULES CAIROMM_INSTALL_PC='data/cairomm-1.16.pc' |