mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
ea398a02dc
Removes armv6 and mmx optimizations. Removes x86inc.asm distinction. This was put in place because of issues with 32bit PIC builds but x86inc.asm has since been improved to support those. Switch to '.S' for arm assembly. There is now an #include for a helper file. All build systems appear to support .S so switch to it for consistency. Remove clang-cl.patch. There have been numerous changes upstream to improve clang support. MozReview-Commit-ID: IHVTbqSY2U7 --HG-- extra : rebase_source : 788796674e3eabed0c178ca327bc5e7628e03382
8 lines
256 B
C
8 lines
256 B
C
#define VERSION_MAJOR 1
|
|
#define VERSION_MINOR 6
|
|
#define VERSION_PATCH 1
|
|
#define VERSION_EXTRA ""
|
|
#define VERSION_PACKED ((VERSION_MAJOR<<16)|(VERSION_MINOR<<8)|(VERSION_PATCH))
|
|
#define VERSION_STRING_NOSP "v1.6.1"
|
|
#define VERSION_STRING " v1.6.1"
|