c7aee7ccf1
most notably fixes an overflow in the management interface (which is not enabled by default)
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
$OpenBSD: patch-codecs_gsm_Makefile,v 1.3 2005/08/15 17:36:07 jolan Exp $
|
|
--- codecs/gsm/Makefile.orig Tue Jun 21 09:27:28 2005
|
|
+++ codecs/gsm/Makefile Sun Aug 14 21:11:29 2005
|
|
@@ -37,6 +37,7 @@ WAV49 = -DWAV49
|
|
######### ppro's, etc, as well as the AMD K6 and K7. The compile will
|
|
######### probably require gcc.
|
|
|
|
+ifneq (${OSARCH},OpenBSD)
|
|
ifneq (${OSARCH},Darwin)
|
|
ifneq (${PROC},x86_64)
|
|
ifneq (${PROC},ultrasparc)
|
|
@@ -56,14 +57,17 @@ endif
|
|
endif
|
|
endif
|
|
endif
|
|
+endif
|
|
|
|
#The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
|
|
#This works for even old (2.96) versions of gcc and provides a small boost either way.
|
|
#A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
|
|
#So we go lowest common available by gcc and go a step down, still a step up from
|
|
#the default as we now have a better instruction set to work with. - Belgarath
|
|
+ifneq (${OSARCH},OpenBSD)
|
|
ifeq (${PROC},ultrasparc)
|
|
OPTIMIZE+=-mcpu=v8 -mtune=$(PROC) -O3 -fomit-frame-pointer
|
|
+endif
|
|
endif
|
|
|
|
PG =
|