Skip to content

Commit 09608cd

Browse files
committedFeb 5, 2025
Support icu provided by Windows
1 parent 490bd6f commit 09608cd

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed
 

‎fuzz/libpsl_fuzzer.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@ typedef unsigned __int8 uint8_t;
3535
#include <stdlib.h> /* malloc, free */
3636
#include <string.h> /* memcpy */
3737

38-
#if defined(WITH_LIBICU)
38+
#ifdef WITH_LIBICU
39+
#ifndef WITH_LIBICU_WIN
3940
#include <unicode/uclean.h>
41+
#else
42+
#include <icu.h>
43+
#endif
4044
#endif
4145

4246
#include "libpsl.h"

‎meson.build

+12
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ buildtype = get_option('buildtype')
1414
notfound = dependency('', required : false)
1515
libidn2_dep = notfound
1616
libicu_dep = notfound
17+
libicu_win_dep = notfound
1718
libidn_dep = notfound
1819
libunistring = notfound
1920
networking_deps = notfound
@@ -57,6 +58,16 @@ if ['libicu', 'auto'].contains(enable_runtime)
5758
endif
5859
endif
5960

61+
if ['libicu-win', 'auto'].contains(enable_runtime)
62+
libicu_win_dep = cc.find_library('icu', required: false)
63+
if libicu_win_dep.found()
64+
libicu_dep = libicu_win_dep
65+
enable_runtime = 'libicu' # Treat libicu-win as a libicu variant.
66+
elif enable_runtime == 'libicu-win'
67+
error('You requested libicu-win but it is not found.')
68+
endif
69+
endif
70+
6071
if ['libidn', 'auto'].contains(enable_runtime)
6172
libidn_dep = dependency('libidn', required : false)
6273
if not libidn_dep.found() and cc.has_header('idna.h')
@@ -89,6 +100,7 @@ config = configuration_data()
89100
config.set_quoted('PACKAGE_VERSION', meson.project_version())
90101
config.set('WITH_LIBIDN2', enable_runtime == 'libidn2')
91102
config.set('WITH_LIBICU', enable_runtime == 'libicu')
103+
config.set('WITH_LIBICU_WIN', libicu_win_dep.found())
92104
config.set('WITH_LIBIDN', enable_runtime == 'libidn')
93105
config.set('ENABLE_BUILTIN', enable_builtin)
94106
config.set('HAVE_UNISTD_H', cc.check_header('unistd.h'))

‎meson_options.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
option('runtime', type : 'combo',
2-
choices : ['libidn2', 'libicu', 'libidn', 'no', 'auto'], value : 'auto',
2+
choices : ['libidn2', 'libicu', 'libicu-win', 'libidn', 'no', 'auto'], value : 'auto',
33
description : 'Specify the IDNA library used for libpsl run-time conversions')
44

55
option('builtin', type : 'boolean',

‎src/psl.c

+12-4
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,14 @@ typedef SSIZE_T ssize_t;
7070
#endif
7171

7272
#ifdef WITH_LIBICU
73-
# include <unicode/uversion.h>
74-
# include <unicode/ustring.h>
75-
# include <unicode/uidna.h>
76-
# include <unicode/ucnv.h>
73+
# ifndef WITH_LIBICU_WIN
74+
# include <unicode/uversion.h>
75+
# include <unicode/ustring.h>
76+
# include <unicode/uidna.h>
77+
# include <unicode/ucnv.h>
78+
# else
79+
# include <icu.h>
80+
# endif
7781
#elif defined(WITH_LIBIDN2)
7882
# include <iconv.h>
7983
# include <idn2.h>
@@ -116,6 +120,10 @@ typedef SSIZE_T ssize_t;
116120
#define PRIV_PSL_FLAG_PRIVATE (1<<3) /* entry of PRIVATE section */
117121
#define PRIV_PSL_FLAG_PLAIN (1<<4) /* just used for PSL syntax checking */
118122

123+
#ifdef WITH_LIBICU_WIN
124+
# define U_ICU_VERSION "Windows"
125+
#endif
126+
119127
typedef struct {
120128
char
121129
label_buf[128];

0 commit comments

Comments
 (0)