diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-09-27 09:04:44 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-07 12:02:23 -0400 |
commit | 93c71ae6dbadafc27a061ea5f020f5c8e1c7132f (patch) | |
tree | ac2f808f016695dcec6e2b25324a7d88b0510bc9 /docs | |
parent | b2577081528fe36facf5153bed256fe838a74ae6 (diff) | |
download | haskell-93c71ae6dbadafc27a061ea5f020f5c8e1c7132f.tar.gz |
configure: Determine library versions of template-haskell, et al.
These are needed by the user guide documentation. Fixes #17260.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/ghc_config.py.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/users_guide/ghc_config.py.in b/docs/users_guide/ghc_config.py.in index 0feb916656..e2f5c71d5d 100644 --- a/docs/users_guide/ghc_config.py.in +++ b/docs/users_guide/ghc_config.py.in @@ -4,6 +4,9 @@ extlinks = { } libs_base_uri = '../libraries' + +# N.B. If you add a package to this list be sure to also add a corresponding +# LIBRARY_VERSION macro call to configure.ac. lib_versions = { 'base': '@LIBRARY_base_VERSION@', 'ghc-prim': '@LIBRARY_ghc_prim_VERSION@', |