1 --- configure.ac 2017-02-13 14:34:06.983449082 +0100
2 +++ configure.ac 2017-02-13 15:36:50.944653536 +0100
6 # Checking for libgpg-error.
7 -AM_PATH_GPG_ERROR(1.17,, AC_MSG_ERROR([libgpg-error was not found]))
8 +if test "${GPG_ERROR_CFLAGS+set}" != "set"; then
9 + AM_PATH_GPG_ERROR(1.17,, AC_MSG_ERROR([libgpg-error was not found]))
11 + GPG_ERROR_CFLAGS="$GPG_ERROR_CFLAGS"
12 + GPG_ERROR_LIBS="$GPG_ERROR_LIBS"
13 + AC_SUBST(GPG_ERROR_CFLAGS)
14 + AC_SUBST(GPG_ERROR_LIBS)
18 # Checks for library functions.