diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-11-24 06:54:55 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-11-24 06:54:55 +0000 |
commit | 2be74b20ae55dd6ce532e270ae226e08f8b7f170 (patch) | |
tree | e4501aa0112ad13670a30df6dddd38f6f4466a4d /configure.ac | |
parent | 5372508bb358728eaafe0d775eadeffc27bccedf (diff) | |
download | mpfr-2be74b20ae55dd6ce532e270ae226e08f8b7f170.tar.gz |
fixed issue reported by Dan Grayson:
https://gforge.inria.fr/tracker/?func=detail&atid=619&aid=18314&group_id=136
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9239 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 99886bbdf..ac15e2595 100644 --- a/configure.ac +++ b/configure.ac @@ -474,7 +474,7 @@ error #endif ]], [[]])],[AC_MSG_RESULT(DLL)],[ AC_MSG_RESULT(static) - AC_MSG_ERROR([gmp.h isn't a DLL: use --enable-static --disable-shared]) ]) + AC_MSG_ERROR([libgmp isn't provided as a DLL: use --enable-static --disable-shared]) ]) else AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include "gmp.h" @@ -484,7 +484,7 @@ error #endif ]], [[]])],[AC_MSG_RESULT(static)],[ AC_MSG_RESULT(DLL) - AC_MSG_ERROR([gmp.h is a DLL: use --disable-static --enable-shared]) ]) + AC_MSG_ERROR([libgmp is provided as a DLL: use --disable-static --enable-shared]) ]) fi ;; esac |