diff options
Diffstat (limited to 'intl/locale/unix/moz.build')
-rw-r--r-- | intl/locale/unix/moz.build | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/intl/locale/unix/moz.build b/intl/locale/unix/moz.build index 68a151b656..42ea11a697 100644 --- a/intl/locale/unix/moz.build +++ b/intl/locale/unix/moz.build @@ -9,20 +9,15 @@ SOURCES += [ 'nsPosixLocale.cpp', ] -if CONFIG['OS_TARGET'] == 'Android': - SOURCES += [ - 'nsAndroidCharset.cpp', - ] -else: - SOURCES += [ - 'nsUNIXCharset.cpp', - ] - GENERATED_FILES = [ - 'unixcharset.properties.h', - ] - unixcharset = GENERATED_FILES['unixcharset.properties.h'] - unixcharset.script = '../props2arrays.py' - unixcharset.inputs = ['unixcharset.properties'] +SOURCES += [ + 'nsUNIXCharset.cpp', +] +GENERATED_FILES = [ + 'unixcharset.properties.h', +] +unixcharset = GENERATED_FILES['unixcharset.properties.h'] +unixcharset.script = '../props2arrays.py' +unixcharset.inputs = ['unixcharset.properties'] FINAL_LIBRARY = 'xul' @@ -31,6 +26,7 @@ LOCAL_INCLUDES += [ ] # CODESET is not automatically defined on some older versions of Redhat. +# XXXMC: Which ones? Do we still support those older versions? # Define _XOPEN_SOURCE so CODESET will get defined and thus allow # nl_langinfo(CODESET) to compile on these systems. if CONFIG['OS_ARCH'] == 'Linux': |