You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

179 lines
5.3 KiB

25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. dnl AUTOCONF configuration for CLN
  2. dnl Bruno Haible 8.1.1999
  3. dnl
  4. dnl configure.in ---<autoconf>--->> configure
  5. dnl
  6. dnl configure ---<sh>--->> config.status
  7. dnl --->> include/cl_config.h
  8. dnl Makefile.in --->> Makefile
  9. dnl src/Makefile.in --->> src/Makefile
  10. dnl
  11. dnl Makefile ---<make>--->> libcln.a
  12. dnl
  13. dnl
  14. AC_INIT(src/integer/gcd/cl_I_gcd.cc)
  15. AC_CONFIG_HEADER(include/cl_config.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h)
  16. AC_PROG_MAKE_SET
  17. dnl This piece of sed script replaces every line containing '@subdir@'
  18. dnl by several consecutive lines, each referencing one subdir.
  19. extrasub="$extrasub"'
  20. /@subdir@/{
  21. h
  22. g
  23. s/@subdir@/src/
  24. p
  25. g
  26. s/@subdir@/tests/
  27. p
  28. g
  29. s/@subdir@/benchmarks/
  30. p
  31. g
  32. s/@subdir@/examples/
  33. p
  34. g
  35. s/@subdir@/doc/
  36. p
  37. d
  38. }
  39. '
  40. dnl
  41. dnl checks for programs
  42. dnl
  43. AC_PROG_CC
  44. dnl sets variable CC
  45. AC_PROG_CPP
  46. dnl sets variable CPP
  47. AC_PROG_CXX
  48. dnl sets variable CXX
  49. AC_PROG_CXXCPP
  50. dnl sets variable CXXCPP
  51. CL_AS_UNDERSCORE
  52. dnl sets variable AS_UNDERSCORE, DEFS ASM_UNDERSCORE
  53. CL_PROG_RANLIB
  54. dnl sets variable RANLIB
  55. CL_PROG_INSTALL
  56. dnl sets variables INSTALL, INSTALL_DATA, INSTALL_PROGRAM
  57. dnl
  58. dnl check for host type
  59. dnl
  60. CL_CANONICAL_HOST(autoconf)
  61. dnl sets variables host, host_cpu, host_vendor, host_os
  62. CL_CANONICAL_HOST_CPU
  63. dnl DEFS __${host_cpu}__
  64. dnl
  65. dnl check for build configuration
  66. dnl
  67. PACKAGE=cln
  68. AM_DISABLE_SHARED
  69. AM_PROG_LIBTOOL
  70. dnl Libtool's library version information for CLN.
  71. dnl (Not to be confused with CLN's release number.)
  72. dnl Making new releases:
  73. dnl * increment CLN_REVISION,
  74. dnl * if any functions/classes have been added, removed or changed, increment
  75. dnl CLN_CURRENT and set CLN_REVISION to 0,
  76. dnl * if any functions/classes have been added, increment CLN_AGE,
  77. dnl * if backwards compatibility has been broken, set CLN_AGE to 0.
  78. CLN_CURRENT=0
  79. CLN_REVISION=1
  80. CLN_AGE=0
  81. AC_SUBST(CLN_CURRENT)
  82. AC_SUBST(CLN_REVISION)
  83. AC_SUBST(CLN_AGE)
  84. dnl sets variable LIBTOOL
  85. dnl
  86. dnl checks for compiler characteristics
  87. dnl
  88. AC_LANG_CPLUSPLUS
  89. dnl
  90. CL_BOOL
  91. dnl DEFS HAVE_BOOL, bool
  92. CL_LONGLONG
  93. dnl DEFS HAVE_LONGLONG
  94. CL_LONGDOUBLE
  95. dnl DEFS HAVE_LONGDOUBLE
  96. CL_TEMPLATE_NULL
  97. dnl DEFS HAVE_TEMPLATE_NULL
  98. CL_GLOBAL_CONSTRUCTORS
  99. dnl DEFS CL_GLOBAL_CONSTRUCTOR_PREFIX, CL_GLOBAL_DESTRUCTOR_PREFIX
  100. dnl
  101. dnl checks for header files
  102. dnl
  103. CL_UNISTD_H
  104. dnl DEFS HAVE_UNISTD_H if exist unistd.h
  105. dnl
  106. dnl checks for typedefs
  107. dnl
  108. dnl
  109. dnl checks for functions and declarations
  110. dnl
  111. CL_ALLOCA
  112. dnl set variable ALLOCA, DEFS NO_ALLOCA
  113. CL_FPU_CONTROL
  114. dnl DEFS HAVE_FPU_CONTROL_T, HAVE_SETFPUCW
  115. CL_GETTIMEOFDAY
  116. dnl DEFS HAVE_GETTIMEOFDAY, GETTIMEOFDAY_DOTS, GETTIMEOFDAY_TZP_T
  117. CL_FTIME
  118. dnl DEFS HAVE_FTIME
  119. CL_TIMES_CLOCK
  120. dnl DEFS HAVE_TIMES_CLOCK
  121. CL_RUSAGE
  122. dnl DEFS HAVE_SYS_RESOURCE_H, HAVE_GETRUSAGE, HAVE_SYS_TIMES_H
  123. CL_PERROR
  124. dnl DEFS HAVE_PERROR_DECL
  125. dnl
  126. dnl checks for compiler characteristics
  127. dnl
  128. CL_CHAR_UNSIGNED
  129. dnl DEFS __CHAR_UNSIGNED__ if char is unsigned
  130. test -d 'include' || mkdir 'include'
  131. CL_MACHINE([integer types and behaviour],${srcdir}/autoconf/intparam.c,include/cl_intparam.h,cl_cv_file_intparam_h)
  132. dnl builds include/cl_intparam.h
  133. CL_MACHINE([floating-point types and behaviour],${srcdir}/autoconf/floatparam.c,include/cl_floatparam.h,cl_cv_file_floatparam_h)
  134. dnl builds include/cl_floatparam.h
  135. dnl
  136. dnl interfacing to GNU gmp (must be at least version 3)
  137. dnl
  138. AC_ARG_WITH(gmp, [ --with-gmp use external fast low-level functions from GNU gmp3.
  139. [default=yes]], ,with_gmp="yes")
  140. if test "$with_gmp" = yes; then
  141. dnl Is the gmp header file new enough? (i.e. >= 3.0)
  142. AC_CACHE_CHECK([for recent enough gmp.h], cl_cv_new_gmp_h, [
  143. AC_TRY_CPP([#include <gmp.h>
  144. #if !defined(__GNU_MP_VERSION) || (__GNU_MP_VERSION < 3)
  145. #error "ancient gmp.h"
  146. #endif],
  147. cl_cv_new_gmp_h="yes", cl_cv_new_gmp_h="no")
  148. ])
  149. if test "$cl_cv_new_gmp_h" = no; then with_gmp="no"; fi
  150. if test "$with_gmp" = yes; then
  151. dnl Does the library match the header file have 3.0 features?
  152. AC_CACHE_CHECK([for working libgmp], cl_cv_new_libgmp, [
  153. SAVELIBS=$LIBS
  154. LIBS="$LIBS -lgmp"
  155. AC_TRY_LINK([#include <gmp.h>],[mpn_divexact_by3(0,0,0)],
  156. cl_cv_new_libgmp="yes", cl_cv_new_libgmp="no"; LIBS=$SAVELIBS)
  157. ])
  158. if test "$cl_cv_new_libgmp" = no; then with_gmp="no"; fi
  159. fi
  160. fi
  161. if test "$with_gmp" = yes; then
  162. AC_DEFINE(CL_USE_GMP)
  163. else
  164. AC_MSG_WARN([disabling external GNU MP library])
  165. fi
  166. dnl
  167. dnl That's it.
  168. dnl
  169. for f in 'tests/.gdbinit'; do
  170. if test '!' -f "$f"; then
  171. echo "creating $f"
  172. changequote(,)dnl
  173. g=`echo "$f" | sed -e 's,/[^/]*$,,'`
  174. changequote([,])dnl
  175. test "$g" = "$f" || test -d "$g" || mkdir "$g"
  176. cp "$srcdir/$f" "$f"
  177. fi
  178. done
  179. AC_OUTPUT(Makefile src/Makefile tests/Makefile benchmarks/Makefile examples/Makefile doc/Makefile)