Re-enable univerchardet (for now), also make it use STL rather than stdio (which

isn't complete)

Originally committed to SVN as r2085.
This commit is contained in:
Amar Takhar 2008-03-20 22:24:28 +00:00
parent 735aebb393
commit 90e9e6fef1
2 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@ endif
if HAVE_UNIVCHARDET
noinst_LIBRARIES += libmisc_universalchardet.a
libmisc_universalchardet_a_SOURCES = charset_detect.cpp text_file_reader.cpp
libmisc_universalchardet_a_CPPFLAGS = -D_X86_ -DTEXT_READER_USE_STDIO
libmisc_universalchardet_a_CPPFLAGS = -D_X86_
aegisub_LDADD += libmisc_universalchardet.a ../universalchardet/libuniversalchardet.a
else
UNIVCHARSET = charset_detect.cpp text_file_reader.cpp

View File

@ -319,8 +319,8 @@ fi
######################
## universalchardetect
######################
AC_ARG_ENABLE(univchardet, [ --enable-univchardet enable universalchardet support.], univchardet_disabled="(disabled)")
if test "$with_univchardet" = "yes"; then
AC_ARG_ENABLE(univchardet, [ --disable-univchardet diable universalchardet support.], univchardet_disabled="(disabled)")
if test "$enable_univchardet" != "no"; then
with_univchardet="yes"
AC_DEFINE(WITH_UNIVCHARDET, 1, [Enable universalchardet support])
else
@ -688,5 +688,5 @@ Subtitle Providers:
Misc Packages:
hunspell: $with_hunspell $hunspell_disabled
universalchardet: $with_univchardet $univchardet_disabled (broken)
universalchardet: $with_univchardet $univchardet_disabled
]);