1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
# Link with GNU LibIntl
#
# SPDX-FileCopyrightText: Copyright 2022-2023 Markus Uhlin
# SPDX-License-Identifier: BSD-3-Clause
check_intl_header () {
local _tmpfile _srcfile _out
printf "creating temp file..."
_tmpfile=$(mktemp) || { echo "error"; exit 1; }
echo "ok"
_srcfile="${_tmpfile}.c"
_out="${_tmpfile}.out"
cat <<EOF >"$_srcfile"
#include <libintl.h>
int
main(void)
{
return 0;
}
EOF
if [ ! -f "$_srcfile" ]; then
echo "failed to create $_srcfile"
exit 1
fi
printf "checking for 'libintl.h'..."
${CC} ${CFLAGS} "$_srcfile" -o "$_out" >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo "yes"
cat <<EOF >>$MAKE_DEF_FILE
CPPFLAGS += -DHAVE_LIBINTL_H=1
EOF
case "$(uname -s)" in
"Darwin" | "FreeBSD" | "NetBSD" | "OpenBSD")
cat <<EOF >>$MAKE_DEF_FILE
LDLIBS += -lintl
EOF
;;
*)
;;
esac
else
echo "no"
fi
echo "cleaning..."
test -f "$_tmpfile" && rm -f "$_tmpfile"
test -f "$_srcfile" && rm -f "$_srcfile"
test -f "$_out" && rm -f "$_out"
}
check_intl_setlocale () {
local _tmpfile _srcfile _out _libs
printf "creating temp file..."
_tmpfile=$(mktemp) || { echo "error"; exit 1; }
echo "ok"
_srcfile="${_tmpfile}.c"
_out="${_tmpfile}.out"
cat <<EOF >"$_srcfile"
#include <libintl.h>
#ifdef setlocale
#undef setlocale
#endif
int
main(void)
{
libintl_setlocale(LC_ALL, "");
return 0;
}
EOF
if [ ! -f "$_srcfile" ]; then
echo "failed to create $_srcfile"
exit 1
fi
printf "checking for libintl_setlocale()..."
if [ "$(uname -s)" = "Linux" ]; then
_libs=""
else
_libs="-lintl"
fi
${CC} ${CFLAGS} "$_srcfile" -o "$_out" ${LDFLAGS} ${_libs} \
>/dev/null 2>&1
if [ $? -eq 0 ]; then
echo "yes"
cat <<EOF >>$MAKE_DEF_FILE
CPPFLAGS += -DHAVE_LIBINTL_SETLOCALE=1
EOF
else
echo "no"
fi
echo "cleaning..."
test -f "$_tmpfile" && rm -f "$_tmpfile"
test -f "$_srcfile" && rm -f "$_srcfile"
test -f "$_out" && rm -f "$_out"
}
link_with_gnu_libintl () {
check_intl_header
check_intl_setlocale
}
|