mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
💐 Sync 2026-05-23 00:17:22
This commit is contained in:
parent
37e054624e
commit
51d7860e60
@ -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 <shevlakov@132lan.ru>
|
||||
PKG_LICENSE:=GPLv2
|
||||
|
||||
13
teleproxy/patches/0007-i386-sse-support.patch
Normal file
13
teleproxy/patches/0007-i386-sse-support.patch
Normal file
@ -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
|
||||
Loading…
Reference in New Issue
Block a user