diff options
author | maho <maho@FreeBSD.org> | 2008-04-02 08:48:06 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2008-04-02 08:48:06 +0800 |
commit | 738516848fdafe4cdffa3fd21b40955db98ead7c (patch) | |
tree | 5db47478c1d131b1747aabdab939b2e9799baa8f /editors/openoffice-3-devel | |
parent | e88228f2c7ff298008d79e8f173ac450cef2c8c5 (diff) | |
download | freebsd-ports-gnome-738516848fdafe4cdffa3fd21b40955db98ead7c.tar.gz freebsd-ports-gnome-738516848fdafe4cdffa3fd21b40955db98ead7c.tar.zst freebsd-ports-gnome-738516848fdafe4cdffa3fd21b40955db98ead7c.zip |
1. Adding --with-system-zlib. Base crashes because of broken zlib integration.
Bump portrevision for openoffice.org-2 port, accordingly.
2. WITH_DEBUG now implies --enable-debug --enable-symbols=TRUE --enable-dbgutil
http://www.freebsd.org/cgi/query-pr.cgi?pr=107167
http://www.openoffice.org/issues/show_bug.cgi?id=85124
http://thread.gmane.org/gmane.os.freebsd.devel.openoffice/1700/focus=1707
3. Remove CODELINE. Not used anymore.
Thanks for investigations and suggestions:
Marcin Cieslak <saper@system.pl>.
PR: 107167
Submitted by: User1001 [1]
Diffstat (limited to 'editors/openoffice-3-devel')
-rw-r--r-- | editors/openoffice-3-devel/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice-3-devel/files/Makefile.knobs | 12 |
2 files changed, 4 insertions, 10 deletions
diff --git a/editors/openoffice-3-devel/Makefile b/editors/openoffice-3-devel/Makefile index 540728bcd99f..a158676e2441 100644 --- a/editors/openoffice-3-devel/Makefile +++ b/editors/openoffice-3-devel/Makefile @@ -145,7 +145,7 @@ MAXMODULES?= 1 CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp \ --with-gnu-patch=${LOCALBASE}/bin/gpatch \ --enable-crashdump=yes \ - --enable-symbols=SMALL + --with-system-zlib .if ${ARCH} == amd64 WITHOUT_MOZILLA= yes LIB_DEPENDS+= boost_regex:${PORTSDIR}/devel/boost diff --git a/editors/openoffice-3-devel/files/Makefile.knobs b/editors/openoffice-3-devel/files/Makefile.knobs index 124ee636dbe4..8889aa81d382 100644 --- a/editors/openoffice-3-devel/files/Makefile.knobs +++ b/editors/openoffice-3-devel/files/Makefile.knobs @@ -49,11 +49,7 @@ CONFIGURE_ARGS+= --with-lang=${LOCALIZED_LANG} .endif .if defined(WITH_DEBUG) -.if ${WITH_DEBUG} == 2 -CONFIGURE_ARGS+= --enable-debug -.else -CONFIGURE_ARGS+= --enable-symbols -.endif +CONFIGURE_ARGS+= --enable-debug --enable-symbols=TRUE --enable-dbgutil .endif pre-fetch: @@ -75,10 +71,8 @@ pre-fetch: @${ECHO} "OPTIONS:" .if !defined(WITH_DEBUG) @${ECHO} - @${ECHO} "You can compile OOo with debug symbols with WITH_DEBUG=1" - @${ECHO} - @${ECHO} "If you set WITH_DEBUG=2, you add internal" - @${ECHO} "OOo debug support." + @${ECHO} "You can compile OOo with debug symbols/supports with" + @${ECHO} "make -DWITH_DEBUG" .endif .if !defined(WITHOUT_MOZILLA) @${ECHO} |