diff options
author | maho <maho@FreeBSD.org> | 2003-08-16 06:35:55 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2003-08-16 06:35:55 +0800 |
commit | 53ee9a6816fec0266a9334884fa717ec1a07ba2b (patch) | |
tree | fe5ab5a51510004cbbfa8b4449f7a2205c36380f /editors/openoffice.org-3-RC | |
parent | 177b27bca184054bec71fd0b69fb4421faa25f79 (diff) | |
download | freebsd-ports-gnome-53ee9a6816fec0266a9334884fa717ec1a07ba2b.tar.gz freebsd-ports-gnome-53ee9a6816fec0266a9334884fa717ec1a07ba2b.tar.zst freebsd-ports-gnome-53ee9a6816fec0266a9334884fa717ec1a07ba2b.zip |
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-3-RC')
-rw-r--r-- | editors/openoffice.org-3-RC/files/patch-python-makefile.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/openoffice.org-3-RC/files/patch-python-makefile.mk b/editors/openoffice.org-3-RC/files/patch-python-makefile.mk new file mode 100644 index 000000000000..6308ab485a6f --- /dev/null +++ b/editors/openoffice.org-3-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 |