- enable cairo support - enable portaudio/sendfile - audio not working yet, revisit later - adjust include and lib search order again. put /usr/local before /usr/X11R6 so we link to ports expat and not the one that comes with X11R6 - add -pthread to PTHREAD_CFLAGS in odk subproject - integrate audacity portaudio patches and link to ossaudio - strip Linux shlib major version numbers from dlopen()'ed lib names - link stlport with stdc++ to resolve some undefined symbols - remove getpwuid_r workaround in sal/osl/unx/security.c since a suitable one already exits in sal/osl/unx/system.c
22 lines
882 B
Plaintext
22 lines
882 B
Plaintext
$OpenBSD: patch-stlport_makefile_mk,v 1.1 2006/10/27 16:02:02 kurt Exp $
|
|
--- stlport/makefile.mk.orig.port Thu Oct 26 14:53:02 2006
|
|
+++ stlport/makefile.mk Thu Oct 26 14:58:56 2006
|
|
@@ -111,7 +111,7 @@ PATCH_FILE_NAME=STLport-4.5-0119.patch
|
|
TAR_EXCLUDES=*/SC5/*
|
|
.ENDIF # "$(USE_SHELL)"=="4nt"
|
|
|
|
-ADDITIONAL_FILES=src$/gcc-3.0.mak src$/gcc-3.0-macosx.mak src$/gcc-3.0-freebsd.mak src$/sunpro8.mak src$/sunpro11.mak
|
|
+ADDITIONAL_FILES=src$/gcc-3.0.mak src$/gcc-3.0-macosx.mak src$/gcc-3.0-freebsd.mak src$/gcc-3.0-openbsd.mak src$/sunpro8.mak src$/sunpro11.mak
|
|
|
|
|
|
CONFIGURE_ACTION=none
|
|
@@ -133,6 +133,8 @@ BUILD_FLAGS=-f vc7.mak
|
|
# FreeBSD needs a special makefile
|
|
.IF "$(OS)"=="FREEBSD"
|
|
BUILD_FLAGS=-f gcc-3.0-freebsd.mak
|
|
+ .ELIF "$(OS)"=="OPENBSD"
|
|
+ BUILD_FLAGS=-f gcc-3.0-openbsd.mak
|
|
.ELIF "$(OS)"=="MACOSX"
|
|
BUILD_FLAGS=-f gcc-3.0-macosx.mak
|
|
.ELSE
|