libports: enable curl on arm

This commit is contained in:
Josef Söntgen 2014-05-23 12:12:21 +02:00 committed by Norman Feske
parent ea79c0e2e9
commit 0a0f0031a4
6 changed files with 16 additions and 4 deletions

View File

@ -1,9 +1,9 @@
INC_DIR += $(call select_from_ports,curl)/include
ifeq ($(filter-out $(SPECS),x86_32),)
TARGET_CPUARCH=x86_32
else ifeq ($(filter-out $(SPECS),x86_64),)
TARGET_CPUARCH=x86_64
ifeq ($(filter-out $(SPECS),32bit),)
TARGET_CPUARCH=32bit
else ifeq ($(filter-out $(SPECS),64bit),)
TARGET_CPUARCH=64bit
endif
# include architecture specific curlbuild.h

View File

@ -0,0 +1,6 @@
INC_DIR += $(call select_from_ports,curl)/include
INC_DIR += $(REP_DIR)/src/lib/curl/32bit
INC_DIR += $(REP_DIR)/src/lib/curl/32bit/curl
include $(REP_DIR)/lib/mk/curl.inc

View File

@ -0,0 +1,6 @@
INC_DIR += $(call select_from_ports,curl)/include
INC_DIR += $(REP_DIR)/src/lib/curl/64bit
INC_DIR += $(REP_DIR)/src/lib/curl/64bit/curl
include $(REP_DIR)/lib/mk/curl.inc