configure.ac 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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. AM_CONDITIONAL([CROSS_COMPILING], [test "x$cross_compiling" = "xyes"])
  22. AC_ARG_WITH(store-dir,
  23. AC_HELP_STRING([--with-store-dir=PATH],
  24. [file name of the store (defaults to /gnu/store)]),
  25. [storedir="$withval"],
  26. [storedir="/gnu/store"])
  27. AC_SUBST(storedir)
  28. AC_ARG_WITH([bash-completion-dir],
  29. AC_HELP_STRING([--with-bash-completion-dir=DIR],
  30. [name of the Bash completion directory]),
  31. [bashcompletiondir="$withval"],
  32. [bashcompletiondir='${sysconfdir}/bash_completion.d'])
  33. AC_SUBST([bashcompletiondir])
  34. AC_ARG_WITH([zsh-completion-dir],
  35. AC_HELP_STRING([--with-zsh-completion-dir=DIR],
  36. [name of the Zsh completion directory]),
  37. [zshcompletiondir="$withval"],
  38. [zshcompletiondir='${datadir}/zsh/site-functions'])
  39. AC_SUBST([zshcompletiondir])
  40. AC_ARG_WITH([fish-completion-dir],
  41. AC_HELP_STRING([--with-fish-completion-dir=DIR],
  42. [name of the Fish completion directory]),
  43. [fishcompletiondir="$withval"],
  44. [fishcompletiondir='${datadir}/fish/vendor_completions.d'])
  45. AC_SUBST([fishcompletiondir])
  46. AC_ARG_WITH([selinux-policy-dir],
  47. AC_HELP_STRING([--with-selinux-policy-dir=DIR],
  48. [name of the SELinux policy directory]),
  49. [selinux_policydir="$withval"],
  50. [selinux_policydir='${datadir}/selinux/'])
  51. AC_SUBST([selinux_policydir])
  52. dnl Better be verbose.
  53. AC_MSG_CHECKING([for the store directory])
  54. AC_MSG_RESULT([$storedir])
  55. AC_ARG_ENABLE([daemon],
  56. [AS_HELP_STRING([--disable-daemon], [do not build the Nix daemon (C++)])],
  57. [guix_build_daemon="$enableval"],
  58. [guix_build_daemon="yes"])
  59. # Prepare a version of $localstatedir & co. that does not contain references
  60. # to shell variables.
  61. guix_prefix="`eval echo $prefix | sed -e"s|NONE|/usr/local|g"`"
  62. guix_localstatedir="`eval echo $localstatedir | sed -e "s|NONE|$guix_prefix|g"`"
  63. guix_sysconfdir="`eval echo $sysconfdir | sed -e "s|NONE|$guix_prefix|g"`"
  64. guix_sbindir="`eval echo $sbindir | sed -e "s|NONE|$guix_prefix|g"`"
  65. AC_SUBST([guix_localstatedir])
  66. AC_SUBST([guix_sysconfdir])
  67. AC_SUBST([guix_sbindir])
  68. GUIX_CHECK_FILE_NAME_LIMITS([can_run_tests])
  69. AM_CONDITIONAL([CAN_RUN_TESTS], [test "x$can_run_tests" = "xyes"])
  70. dnl We require pkg.m4 (from pkg-config) and guile.m4 (from Guile.)
  71. dnl Make sure they are available.
  72. m4_pattern_forbid([PKG_CHECK_MODULES])
  73. m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
  74. m4_pattern_forbid([^GUILE_P])
  75. m4_pattern_allow([^GUILE_PKG_ERRORS])
  76. m4_pattern_forbid([^GUIX_])
  77. dnl Search for 'guile' and 'guild'. This macro defines
  78. dnl 'GUILE_EFFECTIVE_VERSION'.
  79. GUILE_PKG([3.0 2.2])
  80. GUILE_PROGS
  81. if test "x$GUILD" = "x"; then
  82. AC_MSG_ERROR(['guild' binary not found; please check your Guile installation.])
  83. fi
  84. if test "x$GUILE_EFFECTIVE_VERSION" = "x2.2"; then
  85. PKG_CHECK_MODULES([GUILE], [guile-2.2 >= 2.2.3])
  86. fi
  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. dnl Check for Guile-zlib.
  120. GUILE_MODULE_AVAILABLE([have_guile_zlib], [(zlib)])
  121. if test "x$have_guile_zlib" != "xyes"; then
  122. AC_MSG_ERROR([Guile-zlib is missing; please install it.])
  123. fi
  124. dnl Check for Guile-lzlib.
  125. GUILE_MODULE_AVAILABLE([have_guile_lzlib], [(lzlib)])
  126. if test "x$have_guile_lzlib" != "xyes"; then
  127. AC_MSG_ERROR([Guile-lzlib is missing; please install it.])
  128. fi
  129. dnl Guile-newt is used by the graphical installer.
  130. GUILE_MODULE_AVAILABLE([have_guile_newt], [(newt)])
  131. AC_ARG_ENABLE([installer],
  132. AS_HELP_STRING([--enable-installer], [Build the graphical installer sources.]))
  133. AS_IF([test "x$enable_installer" = "xyes"], [
  134. if test "x$have_guile_newt" != "xyes"; then
  135. AC_MSG_ERROR([Guile-newt could not be found; please install it.])
  136. fi
  137. ])
  138. AM_CONDITIONAL([ENABLE_INSTALLER],
  139. [test "x$enable_installer" = "xyes"])
  140. dnl Make sure we have a full-fledged Guile.
  141. GUIX_ASSERT_GUILE_FEATURES([regex posix socket net-db threads])
  142. AC_PROG_SED
  143. dnl Decompressors, for use by the substituter and other modules.
  144. AC_PATH_PROG([GZIP], [gzip])
  145. AC_PATH_PROG([BZIP2], [bzip2])
  146. AC_PATH_PROG([XZ], [xz])
  147. AC_SUBST([GZIP])
  148. AC_SUBST([BZIP2])
  149. AC_SUBST([XZ])
  150. AC_ARG_WITH([nix-prefix],
  151. [AS_HELP_STRING([--with-nix-prefix=DIR],
  152. [search for Nix in DIR (for testing purposes and '--disable-daemon' builds)])],
  153. [case "$withval" in
  154. yes|no) ;;
  155. *)
  156. NIX_PREFIX="$withval"
  157. PATH="$NIX_PREFIX/bin:$PATH"; export PATH
  158. AC_SUBST([NIX_PREFIX])
  159. ;;
  160. esac],
  161. [])
  162. AC_ARG_WITH([nixpkgs],
  163. [AS_HELP_STRING([--with-nixpkgs=DIR],
  164. [search for Nixpkgs in DIR (for testing purposes only)])],
  165. [case "$withval" in
  166. yes|no) AC_MSG_ERROR([Please use `--with-nixpkgs=DIR'.]);;
  167. *) NIXPKGS="$withval";;
  168. esac],
  169. [])
  170. AC_MSG_CHECKING([for Nixpkgs source tree])
  171. if test -f "$NIXPKGS/default.nix"; then
  172. AC_MSG_RESULT([$NIXPKGS])
  173. AC_SUBST([NIXPKGS])
  174. else
  175. AC_MSG_RESULT([not found])
  176. fi
  177. LIBGCRYPT_LIBDIR="no"
  178. LIBGCRYPT_PREFIX="no"
  179. AC_ARG_WITH([libgcrypt-prefix],
  180. [AS_HELP_STRING([--with-libgcrypt-prefix=DIR], [search for GNU libgcrypt in DIR])],
  181. [case "$withval" in
  182. yes|no)
  183. ;;
  184. *)
  185. LIBGCRYPT_PREFIX="$withval"
  186. LIBGCRYPT_LIBDIR="$withval/lib"
  187. ;;
  188. esac])
  189. AC_ARG_WITH([libgcrypt-libdir],
  190. [AS_HELP_STRING([--with-libgcrypt-libdir=DIR],
  191. [search for GNU libgcrypt's shared library in DIR])],
  192. [case "$withval" in
  193. yes|no)
  194. LIBGCRYPT_LIBDIR="no"
  195. ;;
  196. *)
  197. LIBGCRYPT_LIBDIR="$withval"
  198. ;;
  199. esac])
  200. dnl If none of the --with-libgcrypt-* options was used, try to determine the
  201. dnl the library directory.
  202. case "x$LIBGCRYPT_PREFIX$LIBGCRYPT_LIBDIR" in
  203. xnono)
  204. GUIX_LIBGCRYPT_LIBDIR([LIBGCRYPT_LIBDIR])
  205. ;;
  206. esac
  207. AC_SUBST([LIBGCRYPT_PREFIX])
  208. AC_SUBST([LIBGCRYPT_LIBDIR])
  209. dnl Check for Guile-SSH, for the (guix ssh) module.
  210. GUIX_CHECK_GUILE_SSH
  211. AM_CONDITIONAL([HAVE_GUILE_SSH],
  212. [test "x$guix_cv_have_recent_guile_ssh" = "xyes"])
  213. AC_CACHE_SAVE
  214. m4_include([config-daemon.ac])
  215. dnl `dot' (from the Graphviz package) is only needed for maintainers.
  216. dnl See `Building from Git' in the manual for more info.
  217. AM_MISSING_PROG([DOT], [dot])
  218. dnl Manual pages.
  219. AM_MISSING_PROG([HELP2MAN], [help2man])
  220. dnl Documentation translation.
  221. AM_MISSING_PROG([PO4A_TRANSLATE], [po4a-translate])
  222. AM_MISSING_PROG([PO4A_UPDATEPO], [po4a-updatepo])
  223. case "$storedir" in
  224. /gnu/store)
  225. ;;
  226. *)
  227. AC_MSG_WARN([Using a store directory other than '/gnu/store' will prevent you])
  228. AC_MSG_WARN([from downloading substitutes from gnu.org.])
  229. ;;
  230. esac
  231. AC_CONFIG_FILES([Makefile
  232. po/guix/Makefile.in
  233. po/packages/Makefile.in
  234. etc/guix-daemon.cil
  235. guix/config.scm])
  236. AC_CONFIG_FILES([etc/committer.scm], [chmod +x etc/committer.scm])
  237. AC_CONFIG_FILES([test-env:build-aux/test-env.in], [chmod +x test-env])
  238. AC_CONFIG_FILES([pre-inst-env:build-aux/pre-inst-env.in],
  239. [chmod +x pre-inst-env])
  240. AC_OUTPUT