Ports: Fix building icu

LC_MESSAGES was recently added in LibC which makes the hack in the
package.sh script unnecessary. In fact, this breaks building the
port now.
This commit is contained in:
Gunnar Beutner 2021-05-08 20:23:06 +02:00 committed by Andreas Kling
parent e0deb46723
commit d301bd6732

View file

@ -15,5 +15,5 @@ configure() {
run ./configure --host="${SERENITY_ARCH}-pc-serenity" $configopts
}
export CFLAGS="-DU_HAVE_NL_LANGINFO_CODESET=0 -DLC_MESSAGES=1"
export CXXFLAGS="-DU_HAVE_NL_LANGINFO_CODESET=0 -DLC_MESSAGES=1"
export CFLAGS="-DU_HAVE_NL_LANGINFO_CODESET=0"
export CXXFLAGS="-DU_HAVE_NL_LANGINFO_CODESET=0"