1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Change default to not use --enable-final because this option requires

large amounts of memory in order to compile KDE in any reasonable time.
For machines with such required amounts of memory, it can cut build times
by more than half.  I am not sure why I changed the default on this
option before, since it may lead some people to believe the build hanged.
This commit is contained in:
Will Andrews 2002-01-21 18:12:09 +00:00
parent 746c474335
commit 8b2ed97054
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53468
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ CONFIGURE_ARGS+=--enable-objprelink
.endif
.if !defined(_NO_KDE_FINAL)
.if defined(PARALLEL_PACKAGE_BUILD) || !defined(NO_KDE_FINAL)
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.endif

View File

@ -16,7 +16,7 @@ CONFIGURE_ARGS+=--enable-objprelink
.endif
.if !defined(_NO_KDE_FINAL)
.if defined(PARALLEL_PACKAGE_BUILD) || !defined(NO_KDE_FINAL)
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.endif

View File

@ -16,7 +16,7 @@ CONFIGURE_ARGS+=--enable-objprelink
.endif
.if !defined(_NO_KDE_FINAL)
.if defined(PARALLEL_PACKAGE_BUILD) || !defined(NO_KDE_FINAL)
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.endif