summaryrefslogtreecommitdiff
path: root/editors/openoffice-3-devel/files/patch-stlport::makefile.mk
diff options
context:
space:
mode:
Diffstat (limited to 'editors/openoffice-3-devel/files/patch-stlport::makefile.mk')
-rw-r--r--editors/openoffice-3-devel/files/patch-stlport::makefile.mk29
1 files changed, 29 insertions, 0 deletions
diff --git a/editors/openoffice-3-devel/files/patch-stlport::makefile.mk b/editors/openoffice-3-devel/files/patch-stlport::makefile.mk
new file mode 100644
index 000000000000..b81900222e97
--- /dev/null
+++ b/editors/openoffice-3-devel/files/patch-stlport::makefile.mk
@@ -0,0 +1,29 @@
+--- ../stlport/makefile.mk.orig Tue Aug 27 19:26:10 2002
++++ ../stlport/makefile.mk Fri Oct 18 22:33:22 2002
+@@ -107,16 +107,26 @@
+
+ .IF "$(COM)"=="GCC"
+ .IF "$(COMID)"=="gcc3"
++.IF "$(OS)"=="FREEBSD"
++BUILD_FLAGS=-f gcc-3.0-freebsd.mak
++.ELSE
+ BUILD_FLAGS=-f gcc-3.0.mak
++.ENDIF
+ .ELSE # "$(COMID)"=="gcc3"
+ # MacOS X/Darwin need a special makefile
+ .IF "$(OS)"=="MACOSX"
+ BUILD_FLAGS=-f gcc-apple-macosx.mak
++.ELSE IF "$(OS)"=="FREEBSD"
++ BUILD_FLAGS=-f gcc-freebsd.mak
+ .ELSE # "$(OS)"=="MACOSX"
+ BUILD_FLAGS=-f gcc.mak
+ .ENDIF # "$(OS)"=="MACOSX"
+ .ENDIF # "$(COMID)"=="gcc3"
++.IF "$(OS)"=="FREEBSD"
++BUILD_ACTION=gmake
++.ELSE
+ BUILD_ACTION=make
++.ENDIF
+ .ENDIF
+
+ .IF "$(COM)"=="C52"