mirror of
https://github.com/postgres/postgres.git
synced 2026-01-26 09:41:40 +03:00
Fix meson build of snowball code.
include/snowball/libstemmer has to be in the -I search path, as it is in the autoconf build. It's not apparent to me how this ever worked before, nor why my recent commit made it stop working. Discussion: https://postgr.es/m/ld2iurl7kzexwydxmdfhdgarpa7xxsfrgvggqhbblt4rvt3h6t@bxsk6oz5x7cc
This commit is contained in:
@@ -63,7 +63,8 @@ dict_snowball_sources += files(
|
||||
)
|
||||
|
||||
# see comment in src/include/snowball/snowball_runtime.h
|
||||
stemmer_inc = include_directories('../../include/snowball')
|
||||
stemmer_inc = include_directories('../../include/snowball',
|
||||
'../../include/snowball/libstemmer')
|
||||
|
||||
if host_system == 'windows'
|
||||
dict_snowball_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
|
||||
|
||||
Reference in New Issue
Block a user