[net] Telephony: Yate: Added -DBIGENDIAN to TARGET_CFLAGS when the target is big endian. This fixes things like MD5 code in Yate for big endian targets. Closes #9049. Thanks to Dmitry Kurochkin for pointing this out.

git-svn-id: svn://svn.openwrt.org/openwrt/packages@26178 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cshore 2011-03-15 12:16:52 +00:00
parent 2959289211
commit 460fc3fd9d

View File

@ -42,7 +42,7 @@ define Package/$(PKG_NAME)/Default/description
SIP, H.323, IAX, PSTN, and more. SIP, H.323, IAX, PSTN, and more.
endef endef
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include $(if $(findstring ${ac_cv_c_bigendian},yes),-DBIGENDIAN,)
CONFIGURE_ARGS+= \ CONFIGURE_ARGS+= \
--without-libqt4 \ --without-libqt4 \