Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
libjpeg-dev
libpng-dev
librsvg2-dev
libutf8proc-dev
llvm
pkg-config
wbritish # Needed for `/usr/share/dict/words`, used by test
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/monkey-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
libjpeg-dev
libpng-dev
librsvg2-dev
libutf8proc-dev
llvm
pkg-config
python3-pyasyncore
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
libjpeg-dev
libpng-dev
librsvg2-dev
libutf8proc-dev
pkg-config

- name: ccache
Expand Down
6 changes: 3 additions & 3 deletions docs/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# apt get commandline to install necessary dev packages
ns_apt_get_install()
{
NS_DEV_DEB="build-essential pkg-config git gperf libcurl3-dev libexpat1-dev libpng-dev libjpeg-dev"
NS_DEV_DEB="build-essential pkg-config git gperf libcurl3-dev libexpat1-dev libpng-dev libjpeg-dev libutf8proc-dev"
LIBCURL_OPENSSL_CONFLICTS="$(/usr/bin/apt-cache show libcurl4-openssl-dev | grep Conflicts | grep -o libssl1.0-dev)"
if [ "x${LIBCURL_OPENSSL_CONFLICTS}" != "x" ]; then
NS_DEV_DEB="${NS_DEV_DEB} libssl-dev"
Expand Down Expand Up @@ -173,7 +173,7 @@ ns_freebsdpkg_install()
# generic for help text
ns_generic_install()
{
NS_DEV_GEN="git, gcc, pkgconfig, expat library, openssl library, libcurl, perl, perl MD5 digest, libjpeg library, libpng library"
NS_DEV_GEN="git, gcc, pkgconfig, expat library, openssl library, libcurl, libutf8proc, perl, perl MD5 digest, libjpeg library, libpng library"

NS_TOOL_GEN="flex tool, bison tool"

Expand Down Expand Up @@ -350,7 +350,7 @@ case "$BUILD_TARGET" in

netsurf)
# internal libraries all frontends require (order is important)
NS_INTERNAL_LIBS="libwapcaplet libparserutils libhubbub libdom libcss libnsgif libnsbmp libutf8proc libnsutils libnspsl libnslog"
NS_INTERNAL_LIBS="libwapcaplet libparserutils libhubbub libdom libcss libnsgif libnsbmp libnsutils libnspsl libnslog"

# add target specific libraries
case "${HOST}" in
Expand Down
2 changes: 1 addition & 1 deletion utils/idna.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ idna__ace_to_ucs4(const char *ace_label,

#ifdef WITH_UTF8PROC

#include <libutf8proc/utf8proc.h>
#include <utf8proc.h>

int32_t idna_contexto[] = {
/* CONTEXTO codepoints which have a rule defined */
Expand Down