diff options
author | Andre Heinecke <[email protected]> | 2021-06-09 08:47:05 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2021-06-09 08:47:05 +0000 |
commit | 4041e2c62a10a149776a78e9221de6732693dad9 (patch) | |
tree | eb80437664f75e1b9af28c83075b5a7651e171e6 /src/Makefile.am | |
parent | qt: Add separate logging category for result of config loading (diff) | |
download | gpgme-4041e2c62a10a149776a78e9221de6732693dad9.tar.gz gpgme-4041e2c62a10a149776a78e9221de6732693dad9.zip |
core: Explicitly add GPG_ERROR_CFLAGS
* src/Makefile.am (AM_CFLAGS): Add GPG_ERROR_CFLAGS
--
This fixes the include directory for libgpg error if
it is installed in a different prefix then libassuan. Previously
libassuan provided the include directory also implicitly.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 35add9c8..39c341f5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -101,7 +101,7 @@ endif # We use a global CFLAGS setting for all libraries # versions, because then every object file is only compiled once. -AM_CFLAGS = @LIBASSUAN_CFLAGS@ @GLIB_CFLAGS@ +AM_CFLAGS = @LIBASSUAN_CFLAGS@ @GPG_ERROR_CFLAGS@ @GLIB_CFLAGS@ gpgme_tool_SOURCES = gpgme-tool.c argparse.c argparse.h gpgme_tool_LDADD = libgpgme.la @LIBASSUAN_LIBS@ @GPG_ERROR_LIBS@ |