Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 66ac94c

Browse files
committed
Move libc-specific code from pg_locale.c into pg_locale_libc.c.
Move implementation of pg_locale_t code for libc collations into pg_locale_libc.c. Other locale-related code, such as pg_perm_setlocale(), remains in pg_locale.c for now. Discussion: https://postgr.es/m/flat/2830211e1b6e6a2e26d845780b03e125281ea17b.camel@j-davis.com
1 parent 9812138 commit 66ac94c

File tree

4 files changed

+514
-464
lines changed

4 files changed

+514
-464
lines changed

src/backend/utils/adt/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ OBJS = \
8080
partitionfuncs.o \
8181
pg_locale.o \
8282
pg_locale_icu.o \
83+
pg_locale_libc.o \
8384
pg_lsn.o \
8485
pg_upgrade_support.o \
8586
pgstatfuncs.o \

src/backend/utils/adt/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ backend_sources += files(
6767
'partitionfuncs.c',
6868
'pg_locale.c',
6969
'pg_locale_icu.c',
70+
'pg_locale_libc.c',
7071
'pg_lsn.c',
7172
'pg_upgrade_support.c',
7273
'pgstatfuncs.c',

0 commit comments

Comments
 (0)