diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 10 | ||||
-rw-r--r-- | src/htscharset.c | 1 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 55a0cc9..4cfbec4 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -73,8 +73,8 @@ am_libhttrack_la_OBJECTS = htscore.lo htsparse.lo htsback.lo \ htsinthash.lo htshelp.lo htslib.lo htscoremain.lo htsname.lo \ htsrobots.lo htstools.lo htswizard.lo htsalias.lo htsthread.lo \ htsindex.lo htsbauth.lo htsmd5.lo htszlib.lo htswrap.lo \ - htsmodules.lo md5.lo htsmms.lo ioapi.lo mztools.lo unzip.lo \ - zip.lo error.lo mms.lo + htsmodules.lo htscharset.lo md5.lo htsmms.lo ioapi.lo \ + mztools.lo unzip.lo zip.lo error.lo mms.lo libhttrack_la_OBJECTS = $(am_libhttrack_la_OBJECTS) binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) @@ -146,6 +146,7 @@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ +ICONV_LIBS = @ICONV_LIBS@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -278,7 +279,7 @@ libhttrack_la_SOURCES = htscore.c htsparse.c htsback.c htscache.c \ htsname.c htsrobots.c htstools.c htswizard.c \ htsalias.c htsthread.c htsindex.c htsbauth.c \ htsmd5.c htszlib.c htswrap.c \ - htsmodules.c \ + htsmodules.c htscharset.c \ md5.c \ htsmms.c \ minizip/ioapi.c minizip/mztools.c minizip/unzip.c minizip/zip.c \ @@ -291,7 +292,7 @@ libhttrack_la_SOURCES = htscore.c htsparse.c htsback.c htscache.c \ htsmodules.h htsname.h htsnet.h \ htsopt.h htsrobots.h htsthread.h \ htstools.h htswizard.h htswrap.h htszlib.h \ - htsstrings.h httrack-library.h \ + htsstrings.h httrack-library.h htscharset.h \ md5.h \ htsmms.h \ minizip/crypt.h minizip/ioapi.h minizip/mztools.h minizip/unzip.h minizip/zip.h \ @@ -454,6 +455,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htsbauth.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htscache.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htscatchurl.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htscharset.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htscore.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htscoremain.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/htsfilters.Plo@am__quote@ diff --git a/src/htscharset.c b/src/htscharset.c index 8f7ff0d..4deba12 100644 --- a/src/htscharset.c +++ b/src/htscharset.c @@ -307,6 +307,7 @@ char *hts_convertStringSystemToUTF8(const char *s, size_t size) { #else #include <string.h> +#include <errno.h> #include <iconv.h> char *hts_convertStringToUTF8(const char *s, size_t size, const char *charset) { |