diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-13 22:55:51 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2020-05-14 18:13:27 +0200 |
commit | a55c835e6b99f96e595ad11888a2714447998378 (patch) | |
tree | 2fe89e663917b6746b8ff3f994a901507400042e /src | |
parent | 600a8cded447cd7118ed50142c576567c0cf5158 (diff) |
curl_multibyte: add to curlx
This will also be needed in the tool and tests.
Ref: https://github.com/curl/curl/pull/3758#issuecomment-482197512
Closes https://github.com/curl/curl/pull/3784
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.inc b/src/Makefile.inc index cb886e7bc..17dd178e0 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -34,14 +34,16 @@ CURLX_CFILES = \ ../lib/strtoofft.c \ ../lib/nonblock.c \ ../lib/warnless.c \ - ../lib/curl_ctype.c + ../lib/curl_ctype.c \ + ../lib/curl_multibyte.c CURLX_HFILES = \ ../lib/curl_setup.h \ ../lib/strtoofft.h \ ../lib/nonblock.h \ ../lib/warnless.h \ - ../lib/curl_ctype.h + ../lib/curl_ctype.h \ + ../lib/curl_multibyte.h CURL_CFILES = \ slist_wc.c \ |