configure.ac 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ(2.68)
  4. AC_INIT([GNU Guix],
  5. [m4_esyscmd([build-aux/git-version-gen .tarball-version])],
  6. [bug-guix@gnu.org], [guix],
  7. [https://www.gnu.org/software/guix/])
  8. AC_CONFIG_AUX_DIR([build-aux])
  9. AM_INIT_AUTOMAKE([1.14 gnu silent-rules subdir-objects \
  10. color-tests parallel-tests -Woverride -Wno-portability])
  11. # Enable silent rules by default.
  12. AM_SILENT_RULES([yes])
  13. AC_CONFIG_SRCDIR([guix.scm])
  14. AC_CONFIG_MACRO_DIR([m4])
  15. dnl For the C++ code. This must be used early.
  16. AC_USE_SYSTEM_EXTENSIONS
  17. AM_GNU_GETTEXT([external])
  18. AM_GNU_GETTEXT_VERSION([0.18.1])
  19. GUIX_SYSTEM_TYPE
  20. GUIX_ASSERT_SUPPORTED_SYSTEM
  21. AC_ARG_WITH(store-dir,
  22. AC_HELP_STRING([--with-store-dir=PATH],
  23. [file name of the store (defaults to /gnu/store)]),
  24. [storedir="$withval"],
  25. [storedir="/gnu/store"])
  26. AC_SUBST(storedir)
  27. AC_ARG_WITH([bash-completion-dir],
  28. AC_HELP_STRING([--with-bash-completion-dir=DIR],
  29. [name of the Bash completion directory]),
  30. [bashcompletiondir="$withval"],
  31. [bashcompletiondir='${sysconfdir}/bash_completion.d'])
  32. AC_SUBST([bashcompletiondir])
  33. AC_ARG_WITH([zsh-completion-dir],
  34. AC_HELP_STRING([--with-zsh-completion-dir=DIR],
  35. [name of the Zsh completion directory]),
  36. [zshcompletiondir="$withval"],
  37. [zshcompletiondir='${datadir}/zsh/site-functions'])
  38. AC_SUBST([zshcompletiondir])
  39. dnl Better be verbose.
  40. AC_MSG_CHECKING([for the store directory])
  41. AC_MSG_RESULT([$storedir])
  42. AC_ARG_ENABLE([daemon],
  43. [AS_HELP_STRING([--disable-daemon], [do not build the Nix daemon (C++)])],
  44. [guix_build_daemon="$enableval"],
  45. [guix_build_daemon="yes"])
  46. # Prepare a version of $localstatedir & co. that does not contain references
  47. # to shell variables.
  48. guix_prefix="`eval echo $prefix | sed -e"s|NONE|/usr/local|g"`"
  49. guix_localstatedir="`eval echo $localstatedir | sed -e "s|NONE|$guix_prefix|g"`"
  50. guix_sysconfdir="`eval echo $sysconfdir | sed -e "s|NONE|$guix_prefix|g"`"
  51. guix_sbindir="`eval echo $sbindir | sed -e "s|NONE|$guix_prefix|g"`"
  52. AC_SUBST([guix_localstatedir])
  53. AC_SUBST([guix_sysconfdir])
  54. AC_SUBST([guix_sbindir])
  55. GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
  56. AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
  57. dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
  58. dnl Make sure they are available.
  59. m4_pattern_forbid([PKG_CHECK_MODULES])
  60. m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
  61. m4_pattern_forbid([^GUILE_P$])
  62. dnl Search for 'guile' and 'guild'. This macro defines
  63. dnl 'GUILE_EFFECTIVE_VERSION'.
  64. GUILE_PKG([2.2 2.0])
  65. GUILE_PROGS
  66. if test "x$GUILD" = "x"; then
  67. AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.])
  68. fi
  69. if test "x$GUILE_EFFECTIVE_VERSION" = "x2.0"; then
  70. PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.9])
  71. fi
  72. dnl Installation directories for .scm and .go files.
  73. guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
  74. guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"
  75. AC_SUBST([guilemoduledir])
  76. AC_SUBST([guileobjectdir])
  77. dnl The GnuTLS bindings are necessary for substitutes over HTTPS and for 'guix
  78. dnl pull', among other things.
  79. GUILE_MODULE_AVAILABLE([have_gnutls], [(gnutls)])
  80. if test "x$have_gnutls" != "xyes"; then
  81. AC_MSG_ERROR([The Guile bindings of GnuTLS are missing; please install them.])
  82. fi
  83. dnl Check for Guile-Git.
  84. GUILE_MODULE_AVAILABLE([have_guile_git], [(git)])
  85. if test "x$have_guile_git" != "xyes"; then
  86. AC_MSG_ERROR([Guile-Git is missing; please install it.])
  87. fi
  88. dnl Guile-JSON is used in various places.
  89. GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
  90. AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])
  91. dnl Make sure we have a full-fledged Guile.
  92. GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
  93. dnl Make sure we don't suffer from the bug in 'equal?' wrt. syntax objects
  94. dnl found in 2.2.1. See <https://bugs.gnu.org/29903>.
  95. GUIX_ASSERT_SYNTAX_OBJECT_EQUAL
  96. dnl Decompressors, for use by the substituter and other modules.
  97. AC_PATH_PROG([GZIP], [gzip])
  98. AC_PATH_PROG([BZIP2], [bzip2])
  99. AC_PATH_PROG([XZ], [xz])
  100. AC_SUBST([GZIP])
  101. AC_SUBST([BZIP2])
  102. AC_SUBST([XZ])
  103. AC_ARG_WITH([nix-prefix],
  104. [AS_HELP_STRING([--with-nix-prefix=DIR],
  105. [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
  106. [case "$withval" in
  107. yes|no) ;;
  108. *)
  109. NIX_PREFIX="$withval"
  110. PATH="$NIX_PREFIX/bin:$PATH"; export PATH
  111. AC_SUBST([NIX_PREFIX])
  112. ;;
  113. esac],
  114. [])
  115. AC_PATH_PROG([NIX_INSTANTIATE], [nix-instantiate])
  116. AC_PATH_PROG([NIX_HASH], [nix-hash])
  117. if test "x$guix_build_daemon$NIX_INSTANTIATE$NIX_HASH" = "xno"; then
  118. AC_MSG_ERROR([Nix programs not found; please install Nix or use `--with-nix-prefix'.])
  119. fi
  120. if test "x$NIX_INSTANTIATE" = "x"; then
  121. # This program is an optional dependency, so we just want it to be
  122. # taken from $PATH if it's not available right now.
  123. NIX_INSTANTIATE="nix-instantiate"
  124. fi
  125. AC_ARG_WITH([nixpkgs],
  126. [AS_HELP_STRING([--with-nixpkgs=DIR],
  127. [search for Nixpkgs in DIR (for testing purposes only)])],
  128. [case "$withval" in
  129. yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
  130. *) NIXPKGS="$withval";;
  131. esac],
  132. [])
  133. AC_MSG_CHECKING([for Nixpkgs source tree])
  134. if test -f "$NIXPKGS/default.nix"; then
  135. AC_MSG_RESULT([$NIXPKGS])
  136. AC_SUBST([NIXPKGS])
  137. else
  138. AC_MSG_RESULT([not found])
  139. fi
  140. LIBGCRYPT="libgcrypt"
  141. LIBGCRYPT_LIBDIR="no"
  142. LIBGCRYPT_PREFIX="no"
  143. AC_ARG_WITH([libgcrypt-prefix],
  144. [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
  145. [case "$withval" in
  146. yes|no)
  147. ;;
  148. *)
  149. LIBGCRYPT="$withval/lib/libgcrypt"
  150. LIBGCRYPT_PREFIX="$withval"
  151. LIBGCRYPT_LIBDIR="$withval/lib"
  152. ;;
  153. esac])
  154. AC_ARG_WITH([libgcrypt-libdir],
  155. [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
  156. [search for GNU libgcrypt's shared library in DIR])],
  157. [case "$withval" in
  158. yes|no)
  159. LIBGCRYPT="libgcrypt"
  160. LIBGCRYPT_LIBDIR="no"
  161. ;;
  162. *)
  163. LIBGCRYPT="$withval/libgcrypt"
  164. LIBGCRYPT_LIBDIR="$withval"
  165. ;;
  166. esac])
  167. dnl If none of the --with-libgcrypt-* options was used, try to determine the
  168. dnl absolute file name of libgcrypt.so.
  169. case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
  170. xnono)
  171. GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
  172. if test "x$LIBGCRYPT_LIBDIR" != x; then
  173. LIBGCRYPT="$LIBGCRYPT_LIBDIR/libgcrypt"
  174. else
  175. dnl 'config-daemon.ac' expects "no" in this case.
  176. LIBGCRYPT_LIBDIR="no"
  177. fi
  178. ;;
  179. esac
  180. dnl Library name suitable for `dynamic-link'.
  181. AC_MSG_CHECKING([for libgcrypt shared library name])
  182. AC_MSG_RESULT([$LIBGCRYPT])
  183. AC_SUBST([LIBGCRYPT])
  184. AC_SUBST([LIBGCRYPT_PREFIX])
  185. AC_SUBST([LIBGCRYPT_LIBDIR])
  186. GUIX_ASSERT_LIBGCRYPT_USABLE
  187. dnl Library name of zlib suitable for 'dynamic-link'.
  188. GUIX_LIBZ_LIBDIR([libz_libdir])
  189. if test "x$libz_libdir" = "x"; then
  190. LIBZ="libz"
  191. else
  192. LIBZ="$libz_libdir/libz"
  193. fi
  194. AC_MSG_CHECKING([for zlib's shared library name])
  195. AC_MSG_RESULT([$LIBZ])
  196. AC_SUBST([LIBZ])
  197. dnl Check for Guile-SSH, for the (guix ssh) module.
  198. GUIX_CHECK_GUILE_SSH
  199. AM_CONDITIONAL([HAVE_GUILE_SSH],
  200. [test "x$guix_cv_have_recent_guile_ssh" = "xyes"])
  201. AC_CACHE_SAVE
  202. m4_include([config-daemon.ac])
  203. dnl `dot' (from the Graphviz package) is only needed for maintainers.
  204. dnl See `Building from Git' in the manual for more info.
  205. AM_MISSING_PROG([DOT], [dot])
  206. dnl Manual pages.
  207. AM_MISSING_PROG([HELP2MAN], [help2man])
  208. dnl Emacs (optional), for 'etc/indent-package.el'.
  209. AC_PATH_PROG([EMACS], [emacs], [/usr/bin/emacs])
  210. AC_SUBST([EMACS])
  211. case "$storedir" in
  212. /gnu/store)
  213. ;;
  214. *)
  215. AC_MSG_WARN([Using a store directory other than '/gnu/store' will prevent you])
  216. AC_MSG_WARN([from downloading substitutes from gnu.org.])
  217. ;;
  218. esac
  219. AC_CONFIG_FILES([Makefile
  220. po/guix/Makefile.in
  221. po/packages/Makefile.in
  222. guix/config.scm])
  223. AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
  224. AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
  225. AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
  226. [chmod +x pre-inst-env])
  227. AC_CONFIG_FILES([etc/indent-code.el], [chmod +x etc/indent-code.el])
  228. AC_OUTPUT