diff options
author | NIIBE Yutaka <[email protected]> | 2018-11-02 01:06:51 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2018-11-02 01:06:51 +0000 |
commit | 42413de59a063def05620d899a7fbda265b6c406 (patch) | |
tree | 5d416e0f14be68b96de2f00b27a57ab10e4e81b4 | |
parent | gpg-error.m4: Find gpgrt_libdir by CC. (diff) | |
download | libgpg-error-42413de59a063def05620d899a7fbda265b6c406.tar.gz libgpg-error-42413de59a063def05620d899a7fbda265b6c406.zip |
gpg-error.m4: Emit message when using gpgrt-config.
* src/gpg-error.m4: Add AC_MSG_NOTICE.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | src/gpg-error.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gpg-error.m4 b/src/gpg-error.m4 index 5d5cdf9..3bfa601 100644 --- a/src/gpg-error.m4 +++ b/src/gpg-error.m4 @@ -84,6 +84,7 @@ AC_DEFUN([AM_PATH_GPG_ERROR], GPGRT_CONFIG="$GPGRT_CONFIG --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$gpgrt_libdir" if $GPGRT_CONFIG gpg-error >/dev/null 2>&1; then GPG_ERROR_CONFIG="$GPGRT_CONFIG gpg-error" + AC_MSG_NOTICE([Use gpgrt-config with $gpgrt_libdir as gpg-error-config]) gpg_error_config_version=`$GPG_ERROR_CONFIG --modversion` else unset GPGRT_CONFIG @@ -119,6 +120,7 @@ AC_DEFUN([AM_PATH_GPG_ERROR], GPGRT_CONFIG="$GPGRT_CONFIG --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$gpgrt_libdir" if $GPGRT_CONFIG gpg-error >/dev/null 2>&1; then GPG_ERROR_CONFIG="$GPGRT_CONFIG gpg-error" + AC_MSG_NOTICE([Use gpgrt-config with $gpgrt_libdir as gpg-error-config]) else unset GPGRT_CONFIG fi |