mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c73aca2ef0
- add -O0 for compiling sql/sql_yacc.cc. Otherwise gcc eats a lot of memory and cpu time. It seems to be a gcc compiler bug in conjunction with -O.
16 lines
564 B
Plaintext
16 lines
564 B
Plaintext
--- Makefile.in.orig Sat Jan 1 17:59:38 2000
|
|
+++ Makefile.in Mon Jan 3 17:19:23 2000
|
|
@@ -144,7 +144,11 @@
|
|
# These are built from source in the Docs directory
|
|
EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS
|
|
|
|
-SUBDIRS = include @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts tests man @bench_dirs@ support-files
|
|
+.if defined(CLIENT_ONLY)
|
|
+SUBDIRS = include @readline_dir@ client tests man
|
|
+.else
|
|
+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files
|
|
+.endif
|
|
|
|
|
|
# Relink after clean
|