diff --git a/liblog/logd_write.c b/liblog/logd_write.c index d5d81383b..e40d2cead 100644 --- a/liblog/logd_write.c +++ b/liblog/logd_write.c @@ -144,6 +144,7 @@ int __android_log_write(int prio, const char *tag, const char *msg) if (!strcmp(tag, "HTC_RIL") || !strcmp(tag, "RILJ") || !strcmp(tag, "RILC") || + !strcmp(tag, "RILD") || !strcmp(tag, "RIL") || !strcmp(tag, "AT") || !strcmp(tag, "GSM") || diff --git a/libpixelflinger/Android.mk b/libpixelflinger/Android.mk index cc381ff0d..63a5c84d6 100644 --- a/libpixelflinger/Android.mk +++ b/libpixelflinger/Android.mk @@ -48,7 +48,9 @@ ifeq ($(TARGET_ARCH),arm) PIXELFLINGER_CFLAGS += -fstrict-aliasing -fomit-frame-pointer endif -LOCAL_SHARED_LIBRARIES := libcutils +LOCAL_SHARED_LIBRARIES := \ + libhardware_legacy \ + libcutils ifneq ($(TARGET_ARCH),arm) # Required to define logging functions on the simulator. diff --git a/libpixelflinger/codeflinger/ARMAssembler.cpp b/libpixelflinger/codeflinger/ARMAssembler.cpp index c5edadf82..ff7b0b3e0 100644 --- a/libpixelflinger/codeflinger/ARMAssembler.cpp +++ b/libpixelflinger/codeflinger/ARMAssembler.cpp @@ -23,7 +23,7 @@ #include #if defined(WITH_LIB_HARDWARE) -#include +#include #endif #include