diff options
author | Jiyong Park <jiyong@google.com> | 2017-08-10 13:48:35 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2017-08-11 23:08:29 +0900 |
commit | 633397eeef296584d3242d8a72790dcf11bb36fd (patch) | |
tree | 7233a8dc40446078be96d8a082788c98c5f1d6ef /dist/sqlite3.c | |
parent | b4076dfd66f114263a1f70cf3ba73c2d55ccb3b0 (diff) |
ICU is disabled by Android.bp
By using vendor.cflags, SQLITE_ENABLE_ICU is on/off from Android.bp. No
need to def/undef it inside the source code.
Bug: 64514237
Test: BOARD_VNDK_VERSION=current m -j libsqlite libsqlite.vendor
Change-Id: If9771fa020e528445275281017e424a5bbc2ae99
Diffstat (limited to 'dist/sqlite3.c')
-rw-r--r-- | dist/sqlite3.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/dist/sqlite3.c b/dist/sqlite3.c index 3eaac07..59bba65 100644 --- a/dist/sqlite3.c +++ b/dist/sqlite3.c @@ -84,15 +84,6 @@ #endif /* -** When sqlite is built for the VNDK, ICU is disabled because -** libicuuc.so and libicui18n.so aren't available then. -** TODO(b/64514237): move this to Android.bp -*/ -#ifdef __ANDROID_VNDK__ -#undef SQLITE_ENABLE_ICU -#endif - -/* ** Include the header file used to customize the compiler options for MSVC. ** This should be done first so that it can successfully prevent spurious ** compiler warnings due to subsequent content in this file and other files |