~ubuntu-branches/ubuntu/vivid/sunpinyin/vivid

« back to all changes in this revision

Viewing changes to SConstruct

  • Committer: Bazaar Package Importer
  • Author(s): Liang Guo
  • Date: 2011-03-15 00:20:57 UTC
  • Revision ID: james.westby@ubuntu.com-20110315002057-u5bccm0y6ucry3ov
Tags: 2.0.3-2
* Build with prefix=$(DEB_DESTDIR)/usr (Close: #617752)
* Fix FTBFS on SH (Close: #617753)
* Fix FTBFS on MIPSEL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
  || defined(_POWER)   || defined(__powerpc__) \
231
231
  || defined(__ppc__)  || defined(__hpux) || defined(__hppa) \
232
232
  || defined(_MIPSEB)  || defined(_POWER) \
233
 
  || defined(__s390__)
 
233
  || defined(__s390__) || (defined(__sh__) && defined(__BIG_ENDIAN__)) 
234
234
# define WORDS_BIGENDIAN 1
235
235
 
236
236
#elif defined(__i386__) || defined(__i386) \
240
240
  || defined(__amd64__) || defined(_M_AMD64) \
241
241
  || defined(__x86_64)  || defined(__x86_64__) \
242
242
  || defined(_M_X64)    || defined(__bfin__) \
243
 
  || defined(__alpha__) || defined(__ARMEL__)
 
243
  || defined(__alpha__) || defined(__ARMEL__) \
 
244
  || defined(_MIPSEL)   || (defined(__sh__) && defined(__LITTLE_ENDIAN__)) 
244
245
# undef WORDS_BIGENDIAN
245
246
 
246
247
#else