summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-05-09 10:08:21 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-05-09 10:08:21 +0000
commitccc59afa1380014bacea6da4c904a85a44e4dd23 (patch)
tree621f4f3f67ddc6cda03210d3599f2b1fc619a1ec /m4
parent5847591604b010276119fe8faa9aec44f14d3248 (diff)
downloadmpc-ccc59afa1380014bacea6da4c904a85a44e4dd23.tar.gz
set_x_x.c: replace #if by #ifdef
mpc.h: readded macro _MPC_H_HAVE_INTMAX_T, removed in r973, which is actually used in set_x,c and set_x_x.c mpc.m4: improved message git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1003 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'm4')
-rw-r--r--m4/mpc.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/mpc.m4 b/m4/mpc.m4
index d246883..586aa47 100644
--- a/m4/mpc.m4
+++ b/m4/mpc.m4
@@ -143,7 +143,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([gmp is not available as a DLL: use --enable-static --disable-shared]) ])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include "mpfr.h"
#if !__GMP_LIBGMP_DLL
@@ -152,7 +152,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([gmp is not available as a DLL: use --enable-static --disable-shared]) ])
else
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include "gmp.h"
@@ -162,7 +162,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([gmp is only available as a DLL: use --disable-static --enable-shared]) ])
fi
;;
])