Skip to content

Commit

Permalink
Fixed bug 2501 - SDL_image 2 not building JPEG support for Android x86
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 18, 2014
1 parent 4a5d149 commit 7cb931d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Android.mk
Expand Up @@ -79,13 +79,19 @@ ifeq ($(SUPPORT_JPG),true)
$(JPG_LIBRARY_PATH)/jfdctfst.c \
$(JPG_LIBRARY_PATH)/jfdctint.c \
$(JPG_LIBRARY_PATH)/jidctflt.c \
$(JPG_LIBRARY_PATH)/jidctfst.S \
$(JPG_LIBRARY_PATH)/jidctint.c \
$(JPG_LIBRARY_PATH)/jquant1.c \
$(JPG_LIBRARY_PATH)/jquant2.c \
$(JPG_LIBRARY_PATH)/jutils.c \
$(JPG_LIBRARY_PATH)/jmemmgr.c \
$(JPG_LIBRARY_PATH)/jmem-android.c

# assembler support is available for arm
ifeq ($(TARGET_ARCH),arm)
LOCAL_SRC_FILES += $(JPG_LIBRARY_PATH)/jidctfst.S
else
LOCAL_SRC_FILES += $(JPG_LIBRARY_PATH)/jidctfst.c
endif
endif

ifeq ($(SUPPORT_PNG),true)
Expand Down

0 comments on commit 7cb931d

Please sign in to comment.