summaryrefslogtreecommitdiffstats
path: root/editors/openoffice.org-2-RC
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2003-08-15 22:35:55 +0000
committermaho <maho@FreeBSD.org>2003-08-15 22:35:55 +0000
commit53ee9a6816fec0266a9334884fa717ec1a07ba2b (patch)
treefe5ab5a51510004cbbfa8b4449f7a2205c36380f /editors/openoffice.org-2-RC
parent177b27bca184054bec71fd0b69fb4421faa25f79 (diff)
downloadFreeBSD-ports-53ee9a6816fec0266a9334884fa717ec1a07ba2b.zip
FreeBSD-ports-53ee9a6816fec0266a9334884fa717ec1a07ba2b.tar.gz
The makefile.mk uses a ld to link the libraries, but ld fails to link with
-pthread. The correct sollution is to use $(LINK) which points to the used gcc compiler. Unfortunately gcc doesn't understand --whole-archive and --no-whole-archive. You have to use -Wl,-whole-archive and -Wl,-no-whole-archive instead. The following patch does this for FreeBSD, but maybe this should also be done for the generic UNX case. See http://www.openoffice.org/issues/show_bug.cgi?id=18064 for details. Obtained from Volker Quetschke
Diffstat (limited to 'editors/openoffice.org-2-RC')
-rw-r--r--editors/openoffice.org-2-RC/files/patch-python-makefile.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/openoffice.org-2-RC/files/patch-python-makefile.mk b/editors/openoffice.org-2-RC/files/patch-python-makefile.mk
new file mode 100644
index 0000000..6308ab4
--- /dev/null
+++ b/editors/openoffice.org-2-RC/files/patch-python-makefile.mk
@@ -0,0 +1,11 @@
+--- ../python/makefile.mk 31 Jul 2003 12:15:14 -0000 1.5.2.2
++++ ../python/makefile.mk 8 Aug 2003 15:28:45 -0000
+@@ -187,7 +187,7 @@
+ ld -G -o $@ -u Py_Main -u Py_FrozenMain -u PyFPE_dummy $(MISC)$/build$/$(TARFILE_NAME)$/libpython$(PYMAJOR).$(PYMINOR).a -h libpython.so.$(PYMAJOR) -lm -ldl -lc -lpthread
+ .ELSE
+ .IF "$(OS)" == "FREEBSD"
+- ld -shared -o $@ --whole-archive $(MISC)$/build$/$(TARFILE_NAME)$/libpython$(PYMAJOR).$(PYMINOR).a --no-whole-archive -soname libpython.so.$(PYMAJOR) -lm -lutil ${PTHREAD_LIBS}
++ $(LINK) -shared -o $@ -Wl,-whole-archive $(MISC)$/build$/$(TARFILE_NAME)$/libpython$(PYMAJOR).$(PYMINOR).a -Wl,-no-whole-archive -soname libpython.so.$(PYMAJOR) -lm -lutil ${PTHREAD_LIBS}
+ .ELSE
+ .IF "$(OS)" == "IRIX"
+ ld -shared -o $@ -all $(MISC)$/build$/$(TARFILE_NAME)$/libpython$(PYMAJOR).$(PYMINOR).a -notall -soname libpython.so.$(PYMAJOR) -lm -ldl -lc -lpthread
OpenPOWER on IntegriCloud