guile: allow libunistring and Readline to be found on OpenSolaris
This commit is contained in:
parent
f77a3a15ee
commit
9b70bc6e34
1 changed files with 12 additions and 5 deletions
|
@ -82,12 +82,19 @@
|
|||
//
|
||||
|
||||
(stdenv.lib.optionalAttrs stdenv.isSunOS {
|
||||
# Make sure the right <gmp.h> is found, and not the incompatible
|
||||
# /usr/include/mp.h from OpenSolaris. See
|
||||
# <https://lists.gnu.org/archive/html/hydra-users/2012-08/msg00000.html>
|
||||
# for details.
|
||||
# TODO: Move me above.
|
||||
configureFlags = [ "--with-libgmp-prefix=${gmp}" ];
|
||||
configureFlags =
|
||||
[
|
||||
# Make sure the right <gmp.h> is found, and not the incompatible
|
||||
# /usr/include/mp.h from OpenSolaris. See
|
||||
# <https://lists.gnu.org/archive/html/hydra-users/2012-08/msg00000.html>
|
||||
# for details.
|
||||
"--with-libgmp-prefix=${gmp}"
|
||||
|
||||
# Same for these (?).
|
||||
"--with-libreadline-prefix=${readline}"
|
||||
"--with-libunistring-prefix=${libunistring}"
|
||||
];
|
||||
})
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue