1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
# adhoc_gmp.m4 serial 2
dnl m4/adhoc_gmp.m4 -- M4 macro processor include script
dnl
dnl Copyright (C) 2015 Jerome Benoit <jgmbenoit@rezozer.net>
dnl
dnl Based on macros by Owen Taylor, modified by:
dnl Hans Petter Jansson, 2001-04-09;
dnl Allin Cottrell, April 2003;
dnl and certainly others.
dnl
dnl Copying and distribution of this file, with or without modification, are
dnl permitted in any medium without royalty provided the copyright notice and
dnl this notice are preserved. This file is offered as-is, without any warranty.
dnl
dnl
dnl NOTE:
dnl m4/adhoc_gmp.m4 is a digest version of m4/mpria_ax_prog_path_gmp_cc.m4
dnl written and copyrighted by the same author Jerome Benoit for the
dnl GNU MPRIA project <http://www.gnu.org/software/mpria/>.
dnl
dnl _adhoc_AC_PROG_PATH_GMP_CC_ARG_WITH
AC_DEFUN_ONCE([_adhoc_AC_PROG_PATH_GMP_CC_ARG_WITH],[dnl
AC_ARG_WITH([gmp-prefix],
[AS_HELP_STRING([--with-gmp-prefix=PREFIX],
[specify prefix for the installed GMP [standard search prefixes]])],
[gmp_config_prefix="$withval"],[gmp_config_prefix=""])
AC_ARG_WITH([gmp-include],
[AS_HELP_STRING([--with-gmp-include=PATH],
[specify directory for the installed GMP header file [standard search paths]])],
[gmp_config_include_prefix="$withval"],[gmp_config_include_prefix=""])
AC_ARG_WITH([gmp-lib],
[AS_HELP_STRING([--with-gmp-lib=PATH],
[specify directory for the installed GMP library [standard search paths]])],
[gmp_config_lib_prefix="$withval"],[gmp_config_lib_prefix=""])
if test "x$gmp_config_include_prefix" = "x" ; then
if test "x$gmp_config_prefix" != "x" ; then
gmp_config_include_prefix="$gmp_config_prefix/include"
fi
fi
if test "x$gmp_config_lib_prefix" = "x" ; then
if test "x$gmp_config_prefix" != "x" ; then
gmp_config_lib_prefix="$gmp_config_prefix/lib"
fi
fi
GMP_CPPFLAGS=
if test "x$gmp_config_include_prefix" != "x" ; then
GMP_CPPFLAGS="-I$gmp_config_include_prefix"
fi
GMP_LDFLAGS=
if test "x$gmp_config_lib_prefix" != "x" ; then
GMP_LDFLAGS="-L$gmp_config_lib_prefix"
fi
AC_SUBST(GMP_CPPFLAGS)
AC_SUBST(GMP_LDFLAGS)
])
dnl adhoc_AM_PATH_GMP([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
AC_DEFUN([adhoc_AM_PATH_GMP],[dnl
AC_REQUIRE([AC_PROG_SED])dnl
AC_REQUIRE([_adhoc_AC_PROG_PATH_GMP_CC_ARG_WITH])dnl
min_gmp_version=m4_default([$1],[4.1.0])
min_gmp_version_0_0_0="$min_gmp_version.0.0.0"
min_gmp_version_major=`echo $min_gmp_version_0_0_0 | \
$SED 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)\(.*\)/\1/'`
min_gmp_version_minor=`echo $min_gmp_version_0_0_0 | \
$SED 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)\(.*\)/\2/'`
min_gmp_version_micro=`echo $min_gmp_version_0_0_0 | \
$SED 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)\(.*\)/\3/'`
min_gmp_dotted_version="$min_gmp_version_major.$min_gmp_version_minor.$min_gmp_version_micro"
GMP_LIBS="-lgmp"
AC_MSG_CHECKING([for GMP - version >= $min_gmp_version ])
ac_save_CPPFLAGS="$CPPFLAGS"
ac_save_CFLAGS="$CFLAGS"
ac_save_LDFLAGS="$LDFLAGS"
ac_save_LIBS="$LIBS"
CPPFLAGS="$CPPFLAGS $GMP_CPPFLAGS"
CFLAGS="$CFLAGS $GMP_CFLAGS"
LDFLAGS="$LDFLAGS $GMP_LDFLAGS"
LIBS="$LIBS $GMP_LIBS"
rm -f conf.gmptest
AC_RUN_IFELSE([AC_LANG_SOURCE(
[[
#include <gmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define PRINTF_MSG_ERROR_MISMATCH_HEADER_LIBRARY \
printf("*** This likely indicates either a bad configuration or some\n"); \
printf("*** other inconsistency in the development environment. If the\n"); \
printf("*** expected GNU MP library cannot be found, it may be sufficient\n"); \
printf("*** either to set properly the LD_LIBRARY_PATH environment variable\n"); \
printf("*** or to configure ldconfig(8) to consider the installed location.\n"); \
printf("*** Otherwise a bad configuration or an inconsistency in the\n"); \
printf("*** include/library search paths may be investigated; adjustments\n"); \
printf("*** through the use of --with-gmp-(include|lib) configure option\n"); \
printf("*** may help.\n"); \
printf("***\n"); \
printf("*** If an old version is installed, it may be best to remove it and to\n"); \
printf("*** reinstall a more recent one; although modifying LD_LIBRARY_PATH\n"); \
printf("*** may also get things to work. The latest version of GNU MP is always\n"); \
printf("*** available from http://gmplib.org/.\n"); \
printf("***\n");
int main ()
{
int gmp_hdr_version_major = 0;
int gmp_hdr_version_minor = 0;
int gmp_hdr_version_micro = 0;
int gmp_lib_version_major = 0;
int gmp_lib_version_minor = 0;
int gmp_lib_version_micro = 0;
char *tmp_version_0;
char *tmp_version_1;
mpz_t a;
mpz_t b;
mpz_t c;
mpz_init (a);
mpz_init (b);
mpz_init (c);
mpz_mul (c, a, b);
fclose (fopen ("conf.gmptest", "w"));
#ifdef __GMP_CC
#define GMPM4_CC __GMP_CC
#else
#define GMPM4_CC ""
#endif
#ifdef __GMP_CFLAGS
#define GMPM4_CFLAGS __GMP_CFLAGS
#else
#define GMPM4_CFLAGS ""
#endif
#ifdef __GNU_MP_VERSION
gmp_hdr_version_major = __GNU_MP_VERSION;
#endif
#ifdef __GNU_MP_VERSION_MINOR
gmp_hdr_version_minor = __GNU_MP_VERSION_MINOR;
#endif
#ifdef __GNU_MP_VERSION_PATCHLEVEL
gmp_hdr_version_micro = __GNU_MP_VERSION_PATCHLEVEL;
#endif
/* HP/UX 9 (%@#!) writes to sscanf strings */
tmp_version_0 = strdup(gmp_version);
tmp_version_1 = strdup(gmp_version);
if (sscanf(tmp_version_0, "%d.%d.%d",
&gmp_lib_version_major, &gmp_lib_version_minor, &gmp_lib_version_micro) != 3) {
gmp_lib_version_micro = 0;
if (sscanf(tmp_version_1, "%d.%d",
&gmp_lib_version_major, &gmp_lib_version_minor) != 2) {
printf("\n***\n");
printf("*** unexpected GMP library version string\n");
printf("***\n");
exit(1);
}
}
if (
(gmp_lib_version_major != gmp_hdr_version_major) ||
(gmp_lib_version_minor != gmp_hdr_version_minor) ||
(gmp_lib_version_micro != gmp_hdr_version_micro)
) {
printf("\n***\n");
printf("*** GNU MP header version numbers (%d.%d.%d) and\n",
gmp_hdr_version_major, gmp_hdr_version_minor, gmp_hdr_version_micro);
printf("*** GNU MP library version numbers (%d.%d.%d)\n",
gmp_lib_version_major, gmp_lib_version_minor, gmp_lib_version_micro);
printf("*** do not match.\n");
printf("***\n");
PRINTF_MSG_ERROR_MISMATCH_HEADER_LIBRARY
}
else if (
($min_gmp_version_major < gmp_hdr_version_major) ||
(
($min_gmp_version_major == gmp_hdr_version_major) &&
($min_gmp_version_minor < gmp_hdr_version_minor)
) ||
(
($min_gmp_version_major == gmp_hdr_version_major) &&
($min_gmp_version_minor == gmp_hdr_version_minor) &&
($min_gmp_version_micro <= gmp_hdr_version_micro)
)
) {
return (0);
}
else {
printf("\n***\n");
printf("*** GNU MP version $min_gmp_dotted_version or higher is required:\n");
printf("*** an older version of GNU MP (%d.%d.%d) was found.\n",
gmp_hdr_version_major, gmp_hdr_version_minor, gmp_hdr_version_micro);
printf("*** The latest version of GNU MP is always available from http://gmplib.org/.\n");
printf("***\n");
}
return (1);
}
]]
)],[],[no_gmp=yes],[AC_MSG_WARN([$ac_n "cross compiling; assumed OK... $ac_c])])
CPPFLAGS="$ac_save_CPPFLAGS"
CFLAGS="$ac_save_CFLAGS"
LDFLAGS="$ac_save_LDFLAGS"
LIBS="$ac_save_LIBS"
if test "x$no_gmp" = "x" ; then
AC_MSG_RESULT([yes])
$2
else
AC_MSG_RESULT([no])
if test -f conf.gmptest ; then
:
else
echo "***"
echo "*** Could not run GNU MP test program, checking why..."
CPPFLAGS="$CPPFLAGS $GMP_CPPFLAGS"
CFLAGS="$CFLAGS $GMP_CFLAGS"
LDFLAGS="$CFLAGS $GMP_LDFLAGS"
LIBS="$LIBS $GMP_LIBS"
AC_LINK_IFELSE([AC_LANG_PROGRAM(
[[
#include <gmp.h>
#include <stdio.h>
]],
[[ return (1); ]]
)],
[
echo "***"
echo "*** The test program compiled, but did not run. This usually means"
echo "*** that the run-time linker is not finding GNU MP or finding the wrong"
echo "*** version of GNU MP. If it is not finding GNU MP, you'll need to set your"
echo "*** LD_LIBRARY_PATH environment variable, or configure ldconfig(8) to consider"
echo "*** the installed location."
echo "***"
echo "*** If you have an old version installed, it is best to remove it; although"
echo "*** modifying LD_LIBRARY_PATH may also get things to work. The latest version"
echo "*** of GNU MP is always available from http://gmplib.org/."
echo "***"
],
[
echo "***"
echo "*** The test program failed to compile or link. See the file config.log for the"
echo "*** exact error that occured. This usually means GNU MP was incorrectly installed"
echo "*** or that you have moved GNU MP since it was installed."
echo "***"
])
CPPFLAGS="$ac_save_CPPFLAGS"
CFLAGS="$ac_save_CFLAGS"
LDFLAGS="$ac_save_LDFLAGS"
LIBS="$ac_save_LIBS"
fi
rm -f conf.gmptest
m4_default([$3],[AC_MSG_ERROR([no suitable GNU MP library found])])
fi
rm -f conf.gmptest
AC_SUBST(GMP_LIBS)
])
dnl alias
AU_ALIAS([AM_PATH_GMP],[adhoc_AM_PATH_GMP])
dnl eof
|