fix linux build of windows branch

--HG--
branch : WINDOWSPORT
This commit is contained in:
Jean-Francois Dockes 2015-08-30 15:50:17 +02:00
parent 8c4f4315fe
commit 1d9047df1a
5 changed files with 12 additions and 12 deletions

View File

@ -22,7 +22,8 @@ COMMONCPPFLAGS = -I. \
-I$(top_srcdir)/rcldb \ -I$(top_srcdir)/rcldb \
-I$(top_srcdir)/unac \ -I$(top_srcdir)/unac \
-I$(top_srcdir)/utils \ -I$(top_srcdir)/utils \
-I$(top_srcdir)/xaposix -I$(top_srcdir)/xaposix \
-DBUILDING_RECOLL
AM_CPPFLAGS = -Wall -Wno-unused \ AM_CPPFLAGS = -Wall -Wno-unused \
$(COMMONCPPFLAGS) \ $(COMMONCPPFLAGS) \

View File

@ -79,7 +79,7 @@ static PTMutexInit o_mcache_mutex;
// vc++ does not let define an array of size o_b1size because non-const?? // vc++ does not let define an array of size o_b1size because non-const??
#define M_o_b1size 1024 #define M_o_b1size 1024
#else #else
#define M_o_b1size o_b1size; #define M_o_b1size o_b1size
#endif #endif
class MboxCache { class MboxCache {

View File

@ -51,7 +51,7 @@ static inline bool is_except_char(unsigned short c, string& trans)
trans = it->second; trans = it->second;
return true; return true;
} }
#endif /* RECOLL_DATADIR */ #endif /* BUILDING_RECOLL*/
/* /*
* If configure.in has not defined this symbol, assume const. It * If configure.in has not defined this symbol, assume const. It
@ -14195,7 +14195,7 @@ int unacmaybefold_string_utf16(const char* in, size_t in_length,
/* /*
* Lookup the tables for decomposition information * Lookup the tables for decomposition information
*/ */
#ifdef RECOLL_DATADIR #ifdef BUILDING_RECOLL
// Exception unac/fold values set by user. There should be 3 arrays for // Exception unac/fold values set by user. There should be 3 arrays for
// unac/fold/unac+fold. For now there is only one array, which used to // unac/fold/unac+fold. For now there is only one array, which used to
// be set for unac+fold, and is mostly or only used to prevent diacritics // be set for unac+fold, and is mostly or only used to prevent diacritics
@ -14218,11 +14218,11 @@ int unacmaybefold_string_utf16(const char* in, size_t in_length,
l = trans.size() / 2; l = trans.size() / 2;
} }
} else { } else {
#endif /* RECOLL_DATADIR */ #endif /* BUILDING_RECOLL */
unac_uf_char_utf16_(c, p, l, what) unac_uf_char_utf16_(c, p, l, what)
#ifdef RECOLL_DATADIR #ifdef BUILDING_RECOLL
} }
#endif /* RECOLL_DATADIR */ #endif /* BUILDING_RECOLL */
/* /*
* Explain what's done in great detail * Explain what's done in great detail
@ -14560,7 +14560,7 @@ const char* unac_version(void)
return UNAC_VERSION; return UNAC_VERSION;
} }
#ifdef RECOLL_DATADIR #ifdef BUILDING_RECOLL
void unac_set_except_translations(const char *spectrans) void unac_set_except_translations(const char *spectrans)
{ {
except_trans.clear(); except_trans.clear();
@ -14613,4 +14613,4 @@ void unac_set_except_translations(const char *spectrans)
free(out); free(out);
} }
} }
#endif /* RECOLL_DATADIR */ #endif /* BUILDING_RECOLL */

View File

@ -1 +0,0 @@
unac.c

View File

@ -114,7 +114,7 @@ int fold_string(const char* charset,
/* To be called before starting threads in mt programs */ /* To be called before starting threads in mt programs */
void unac_init_mt(); void unac_init_mt();
#ifdef RECOLL_DATADIR #ifdef BUILDING_RECOLL
#include <string> #include <string>
/** /**
* Set exceptions for unaccenting, for characters which should not be * Set exceptions for unaccenting, for characters which should not be
@ -128,7 +128,7 @@ void unac_init_mt();
* can't be an exception character, deal with it... * can't be an exception character, deal with it...
*/ */
void unac_set_except_translations(const char *spectrans); void unac_set_except_translations(const char *spectrans);
#endif /* RECOLL_DATADIR */ #endif /* BUILDING_RECOLL */
/* /*
* Return unac version number. * Return unac version number.