diff options
author | schwarze <> | 2017-09-05 03:16:14 +0000 |
---|---|---|
committer | schwarze <> | 2017-09-05 03:16:14 +0000 |
commit | f63c4fd91b8483c7d4364046fd6ef2d2679dd63a (patch) | |
tree | d7f851bfa426cf869a3a3aec05ffba386b6f2ce5 /src/lib/libc/string/Makefile.inc | |
parent | c1d0fec9b838e4df93e396d54f1e4b9a41f7401a (diff) | |
download | openbsd-libressl-v2.6.1.tar.gz openbsd-libressl-v2.6.1.tar.bz2 openbsd-libressl-v2.6.1.zip |
New POSIX xlocale implementation written from scratch.libressl-v2.6.1
Complete in the sense that all POSIX *locale(3) and *_l(3) functions
are included, but in OpenBSD, we of course only really care about
LC_CTYPE and we only support ASCII and UTF-8.
With important help from kettenis@, guenther@, and jca@.
Repeated testing in ports bulk builds by naddy@.
Additional testing by jca@, sebastia@, dcoppa@, and others.
OK kettenis@ dcoppa@, and guenther@ on an earlier version.
Riding guenther@'s libc/librthread major bump.
Diffstat (limited to 'src/lib/libc/string/Makefile.inc')
-rw-r--r-- | src/lib/libc/string/Makefile.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libc/string/Makefile.inc b/src/lib/libc/string/Makefile.inc index 95eb93006b..a1b1934aad 100644 --- a/src/lib/libc/string/Makefile.inc +++ b/src/lib/libc/string/Makefile.inc | |||
@@ -1,17 +1,17 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.38 2016/03/30 06:38:41 jmc Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.39 2017/09/05 03:16:13 schwarze Exp $ |
2 | 2 | ||
3 | # string sources | 3 | # string sources |
4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/string ${LIBCSRCDIR}/string | 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/string ${LIBCSRCDIR}/string |
5 | 5 | ||
6 | SRCS+= explicit_bzero.c memccpy.c memmem.c memrchr.c stpcpy.c stpncpy.c \ | 6 | SRCS+= explicit_bzero.c memccpy.c memmem.c memrchr.c stpcpy.c stpncpy.c \ |
7 | strcasecmp.c strcasestr.c strcoll.c strdup.c \ | 7 | strcasecmp.c strcasecmp_l.c strcasestr.c strcoll.c strcoll_l.c \ |
8 | strerror.c strerror_r.c strmode.c strndup.c strnlen.c \ | 8 | strdup.c strerror.c strerror_l.c strerror_r.c strmode.c \ |
9 | strsignal.c strtok.c strxfrm.c \ | 9 | strndup.c strnlen.c strsignal.c strtok.c strxfrm.c strxfrm_l.c \ |
10 | timingsafe_bcmp.c timingsafe_memcmp.c \ | 10 | timingsafe_bcmp.c timingsafe_memcmp.c \ |
11 | wcscat.c wcschr.c wcscmp.c wcscpy.c wcscspn.c wcslcat.c wcslcpy.c \ | 11 | wcscat.c wcschr.c wcscmp.c wcscpy.c wcscspn.c wcslcat.c wcslcpy.c \ |
12 | wcslen.c wcsncat.c wcsncmp.c wcsncpy.c wcspbrk.c wcsrchr.c wcsspn.c \ | 12 | wcslen.c wcsncat.c wcsncmp.c wcsncpy.c wcspbrk.c wcsrchr.c wcsspn.c \ |
13 | wcsstr.c wcstok.c wcswcs.c wcswidth.c wmemchr.c wmemcmp.c wmemcpy.c \ | 13 | wcsstr.c wcstok.c wcswcs.c wcswidth.c wmemchr.c wmemcmp.c wmemcpy.c \ |
14 | wmemmove.c wmemset.c wcsdup.c wcscasecmp.c | 14 | wmemmove.c wmemset.c wcsdup.c wcscasecmp.c wcscasecmp_l.c |
15 | 15 | ||
16 | # machine-dependent net sources | 16 | # machine-dependent net sources |
17 | # ../arch/ARCH/Makefile.inc must include sources for: | 17 | # ../arch/ARCH/Makefile.inc must include sources for: |