configure.ac 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  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 tar-ustar 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.19.1])
  19. GUIX_SYSTEM_TYPE
  20. GUIX_ASSERT_SUPPORTED_SYSTEM
  21. GUIX_CHANNEL_METADATA
  22. AM_CONDITIONAL([CROSS_COMPILING], [test "x$cross_compiling" = "xyes"])
  23. AC_ARG_WITH(store-dir,
  24. AS_HELP_STRING([--with-store-dir=PATH],
  25. [file name of the store (defaults to /gnu/store)]),
  26. [storedir="$withval"],
  27. [storedir="/gnu/store"])
  28. AC_SUBST(storedir)
  29. AC_ARG_WITH([bash-completion-dir],
  30. AS_HELP_STRING([--with-bash-completion-dir=DIR],
  31. [name of the Bash completion directory]),
  32. [bashcompletiondir="$withval"],
  33. [bashcompletiondir='${sysconfdir}/bash_completion.d'])
  34. AC_SUBST([bashcompletiondir])
  35. AC_ARG_WITH([zsh-completion-dir],
  36. AS_HELP_STRING([--with-zsh-completion-dir=DIR],
  37. [name of the Zsh completion directory]),
  38. [zshcompletiondir="$withval"],
  39. [zshcompletiondir='${datadir}/zsh/site-functions'])
  40. AC_SUBST([zshcompletiondir])
  41. AC_ARG_WITH([fish-completion-dir],
  42. AS_HELP_STRING([--with-fish-completion-dir=DIR],
  43. [name of the Fish completion directory]),
  44. [fishcompletiondir="$withval"],
  45. [fishcompletiondir='${datadir}/fish/vendor_completions.d'])
  46. AC_SUBST([fishcompletiondir])
  47. AC_ARG_WITH([selinux-policy-dir],
  48. AS_HELP_STRING([--with-selinux-policy-dir=DIR],
  49. [name of the SELinux policy directory]),
  50. [selinux_policydir="$withval"],
  51. [selinux_policydir='${datadir}/selinux/'])
  52. AC_SUBST([selinux_policydir])
  53. dnl Better be verbose.
  54. AC_MSG_CHECKING([for the store directory])
  55. AC_MSG_RESULT([$storedir])
  56. AC_ARG_ENABLE([daemon],
  57. [AS_HELP_STRING([--disable-daemon], [do not build the Nix daemon (C++)])],
  58. [guix_build_daemon="$enableval"],
  59. [guix_build_daemon="yes"])
  60. # Prepare a version of $localstatedir & co. that does not contain references
  61. # to shell variables.
  62. guix_prefix="`eval echo $prefix | sed -e"s|NONE|/usr/local|g"`"
  63. guix_localstatedir="`eval echo $localstatedir | sed -e "s|NONE|$guix_prefix|g"`"
  64. guix_sysconfdir="`eval echo $sysconfdir | sed -e "s|NONE|$guix_prefix|g"`"
  65. guix_sbindir="`eval echo $sbindir | sed -e "s|NONE|$guix_prefix|g"`"
  66. AC_SUBST([guix_localstatedir])
  67. AC_SUBST([guix_sysconfdir])
  68. AC_SUBST([guix_sbindir])
  69. GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
  70. AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
  71. dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
  72. dnl Make sure they are available.
  73. m4_pattern_forbid([PKG_CHECK_MODULES])
  74. m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
  75. m4_pattern_forbid([^GUILE_P])
  76. m4_pattern_allow([^GUILE_PKG_ERRORS])
  77. m4_pattern_forbid([^GUIX_])
  78. dnl Search for 'guile' and 'guild'. This macro defines
  79. dnl 'GUILE_EFFECTIVE_VERSION'.
  80. GUILE_PKG([3.0])
  81. GUILE_PROGS
  82. if test "x$GUILD" = "x"; then
  83. AC_MSG_ERROR(['guild' binary not found; please check your Guile installation.])
  84. fi
  85. dnl (guix ui), notably, requires 'default-optimization-level' added in 3.0.3.
  86. PKG_CHECK_MODULES([GUILE], [guile-3.0 >= 3.0.3])
  87. dnl Get CFLAGS and LDFLAGS for libguile.
  88. GUILE_FLAGS
  89. dnl Installation directories for .scm and .go files.
  90. guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
  91. guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"
  92. AC_SUBST([guilemoduledir])
  93. AC_SUBST([guileobjectdir])
  94. dnl The GnuTLS bindings are necessary for substitutes over HTTPS and for 'guix
  95. dnl pull', among other things.
  96. GUILE_MODULE_AVAILABLE([have_gnutls], [(gnutls)])
  97. if test "x$have_gnutls" != "xyes"; then
  98. AC_MSG_ERROR([The Guile bindings of GnuTLS are missing; please install them.])
  99. fi
  100. dnl Check for Guile-Git.
  101. GUILE_MODULE_AVAILABLE([have_guile_git], [(git)])
  102. if test "x$have_guile_git" != "xyes"; then
  103. AC_MSG_ERROR([Guile-Git is missing; please install it.])
  104. fi
  105. dnl Check for Guile-JSON.
  106. GUIX_CHECK_GUILE_JSON
  107. if test "x$guix_cv_have_recent_guile_json" != "xyes"; then
  108. AC_MSG_ERROR([Guile-JSON is missing; please install it.])
  109. fi
  110. dnl Guile-Sqlite3 is used by the (guix store ...) modules.
  111. GUIX_CHECK_GUILE_SQLITE3
  112. if test "x$guix_cv_have_recent_guile_sqlite3" != "xyes"; then
  113. AC_MSG_ERROR([A recent Guile-SQLite3 could not be found; please install it.])
  114. fi
  115. GUIX_CHECK_GUILE_GCRYPT
  116. if test "x$guix_cv_have_recent_guile_gcrypt" != "xyes"; then
  117. AC_MSG_ERROR([A recent Guile-Gcrypt could not be found; please install it.])
  118. fi
  119. GUIX_CHECK_GUILE_GIT
  120. if test "x$guix_cv_have_recent_guile_git" != "xyes"; then
  121. AC_MSG_ERROR([A recent Guile-Git could not be found; please install it.])
  122. fi
  123. dnl Check for the optional Guile-Lib.
  124. GUILE_MODULE_EXPORTS([have_guile_lib], [(htmlprag)], [%strict-tokenizer?])
  125. AM_CONDITIONAL([HAVE_GUILE_LIB], [test "x$have_guile_lib" = "xyes"])
  126. AM_COND_IF(HAVE_GUILE_LIB,,
  127. [AC_MSG_WARN([The Guile-Lib requirement was not satisfied (>= 0.2.7);
  128. Some features such as the Go importer will not be usable.])])
  129. dnl Check for Guile-zlib.
  130. GUIX_CHECK_GUILE_ZLIB
  131. if test "x$guix_cv_have_recent_guile_zlib" != "xyes"; then
  132. AC_MSG_ERROR([A recent Guile-zlib could not be found; please install it.])
  133. fi
  134. dnl Check for Guile-lzlib.
  135. GUILE_MODULE_AVAILABLE([have_guile_lzlib], [(lzlib)])
  136. if test "x$have_guile_lzlib" != "xyes"; then
  137. AC_MSG_ERROR([Guile-lzlib is missing; please install it.])
  138. fi
  139. dnl Check for Guile-Avahi.
  140. GUILE_MODULE_AVAILABLE([have_guile_avahi], [(avahi)])
  141. AM_CONDITIONAL([HAVE_GUILE_AVAHI],
  142. [test "x$have_guile_avahi" = "xyes"])
  143. dnl Guile-newt is used by the graphical installer.
  144. GUILE_MODULE_AVAILABLE([have_guile_newt], [(newt)])
  145. AC_ARG_ENABLE([installer],
  146. AS_HELP_STRING([--enable-installer], [Build the graphical installer sources.]))
  147. AS_IF([test "x$enable_installer" = "xyes"], [
  148. if test "x$have_guile_newt" != "xyes"; then
  149. AC_MSG_ERROR([Guile-newt could not be found; please install it.])
  150. fi
  151. ])
  152. AM_CONDITIONAL([ENABLE_INSTALLER],
  153. [test "x$enable_installer" = "xyes"])
  154. dnl Make sure we have a full-fledged Guile.
  155. GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
  156. AC_PROG_SED
  157. dnl Decompressors, for use by the substituter and other modules.
  158. AC_PATH_PROG([GZIP], [gzip])
  159. AC_PATH_PROG([BZIP2], [bzip2])
  160. AC_PATH_PROG([XZ], [xz])
  161. AC_SUBST([GZIP])
  162. AC_SUBST([BZIP2])
  163. AC_SUBST([XZ])
  164. LIBGCRYPT_LIBDIR="no"
  165. LIBGCRYPT_PREFIX="no"
  166. AC_ARG_WITH([libgcrypt-prefix],
  167. [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
  168. [case "$withval" in
  169. yes|no)
  170. ;;
  171. *)
  172. LIBGCRYPT_PREFIX="$withval"
  173. LIBGCRYPT_LIBDIR="$withval/lib"
  174. ;;
  175. esac])
  176. AC_ARG_WITH([libgcrypt-libdir],
  177. [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
  178. [search for GNU libgcrypt's shared library in DIR])],
  179. [case "$withval" in
  180. yes|no)
  181. LIBGCRYPT_LIBDIR="no"
  182. ;;
  183. *)
  184. LIBGCRYPT_LIBDIR="$withval"
  185. ;;
  186. esac])
  187. dnl If none of the --with-libgcrypt-* options was used, try to determine the
  188. dnl the library directory.
  189. case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
  190. xnono)
  191. GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
  192. ;;
  193. esac
  194. AC_SUBST([LIBGCRYPT_PREFIX])
  195. AC_SUBST([LIBGCRYPT_LIBDIR])
  196. dnl Check for Guile-SSH, for the (guix ssh) module.
  197. GUIX_CHECK_GUILE_SSH
  198. AM_CONDITIONAL([HAVE_GUILE_SSH],
  199. [test "x$guix_cv_have_recent_guile_ssh" = "xyes"])
  200. AC_CACHE_SAVE
  201. m4_include([config-daemon.ac])
  202. dnl `dot' (from the Graphviz package) is only needed for maintainers.
  203. dnl See `Building from Git' in the manual for more info.
  204. AM_MISSING_PROG([DOT], [dot])
  205. dnl Manual pages.
  206. AM_MISSING_PROG([HELP2MAN], [help2man])
  207. dnl Documentation translation.
  208. AM_MISSING_PROG([PO4A_TRANSLATE], [po4a-translate])
  209. AM_MISSING_PROG([PO4A_UPDATEPO], [po4a-updatepo])
  210. case "$storedir" in
  211. /gnu/store)
  212. ;;
  213. *)
  214. AC_MSG_WARN([Using a store directory other than '/gnu/store' will prevent you])
  215. AC_MSG_WARN([from downloading substitutes from gnu.org.])
  216. ;;
  217. esac
  218. AC_CONFIG_FILES([Makefile
  219. po/guix/Makefile.in
  220. po/packages/Makefile.in
  221. etc/guix-daemon.cil
  222. guix/config.scm])
  223. AC_CONFIG_FILES([etc/committer.scm], [chmod +x etc/committer.scm])
  224. AC_CONFIG_FILES([etc/teams.scm], [chmod +x etc/teams.scm])
  225. AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
  226. AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
  227. [chmod +x pre-inst-env])
  228. AC_OUTPUT