2017-12-04 05:30:45 +01:00
|
|
|
gettextDataDirsHook() {
|
|
|
|
if [ -d "$1/share/gettext" ]; then
|
|
|
|
addToSearchPath GETTEXTDATADIRS "$1/share/gettext"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-01-06 14:32:30 +01:00
|
|
|
addEnvHooks "$hostOffset" gettextDataDirsHook
|
2018-03-14 20:14:21 +01:00
|
|
|
|
|
|
|
# libintl must be listed in load flags on non-Glibc
|
|
|
|
# it doesn't hurt to have it in Glibc either though
|
|
|
|
gettextLdflags() {
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lintl"
|
|
|
|
}
|
|
|
|
|
2018-03-15 01:07:43 +01:00
|
|
|
if [ ! -z "@gettextNeedsLdflags@" ]; then
|
|
|
|
addEnvHooks "$hostOffset" gettextLdflags
|
|
|
|
fi
|