diff --git a/teleproxy/Makefile b/teleproxy/Makefile index 69ca78f0..d28492f4 100644 --- a/teleproxy/Makefile +++ b/teleproxy/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=teleproxy PKG_VERSION:=4.13.0 -PKG_RELEASE:=13 +PKG_RELEASE:=14 PKG_MAINTAINER:=Kosntantine Shevlakov PKG_LICENSE:=GPLv2 diff --git a/teleproxy/patches/0007-i386-sse-support.patch b/teleproxy/patches/0007-i386-sse-support.patch new file mode 100644 index 00000000..991eb6e6 --- /dev/null +++ b/teleproxy/patches/0007-i386-sse-support.patch @@ -0,0 +1,13 @@ +Index: teleproxy/Makefile +=================================================================== +--- teleproxy.orig/Makefile ++++ teleproxy/Makefile +@@ -58,6 +58,8 @@ COMMON_LDFLAGS += $(EXTRA_LDFLAGS) + # Architecture-specific CFLAGS + ifeq ($(ARCH), x86_64) + CFLAGS := $(COMMON_CFLAGS) -mpclmul -march=core2 -mfpmath=sse -mssse3 $(BITNESS_FLAGS) ++else ifeq ($(ARCH), i386) ++CFLAGS := $(COMMON_CFLAGS) -mpclmul -march=pentium4 -mfpmath=sse -mssse3 -msse4.2 $(BITNESS_FLAGS) + else ifeq ($(ARCH), mipsel) + CFLAGS := $(COMMON_CFLAGS) $(BITNESS_FLAGS) -march=mips32r2 -Wno-builtin-declaration-mismatch + else