b8bba3c379
* New options: --scan-includes, --disable-Werror * Document all of the exit codes in the man page. * Handle "-Wp,-MMD,...". * Report a better error message if a host specification contains ",cpp" but not ",lzo". * Fix a bug where the "m4" directory wasn't included in the source distribution tarball, which caused it to stop working if you ran autogen.sh. * Fixed a bug where the pump script was hard-coding /etc/distcc/hosts rather than using the prefix specified to configure. * Fixed build errors on Gentoo Linux and some other systems. Changes 3.0: * New "--without-avahi" option to configure. * Fixed a problem where pump mode was falling back to local compilation when compiling with -I options that refer to a subdirectory of one of the default system include directories (Nils Klarlund, Fergus Henderson). * Allow distcc to distribute commands that use "-MF<filename>" rather than "-MF <filename>", and likewise for "-MT<target>". * Fixed a build problem on ARM and Solaris systems. * Fixed a build problem on some Linux systems. * Fixed failure of "make install" on Cygwin. * Fallback to local compilation for "-march=native" or "mtune=native" * Fix for deadlock in pump mode. * New protocol, version 3, allowing for preprocessing on distcc servers ("pump" mode). * New component: an include server for incremental static analysis of include dependencies. This software is written in Python 2.4. * Support for getting hosts via avahi. * gcc debug option -d must be run locally because it produces secondary files. * Improved checking for errors on socket connection.
31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
$NetBSD: patch-ae,v 1.1 2009/01/17 13:27:48 adam Exp $
|
|
|
|
--- Makefile.in.orig 2008-12-02 22:50:31.000000000 +0100
|
|
+++ Makefile.in
|
|
@@ -447,7 +447,7 @@ check_include_server_PY = \
|
|
|
|
## NOTE: "all" must be the first (default) rule, aside from patterns.
|
|
|
|
-all: $(bin_PROGRAMS) pump include-server
|
|
+all: $(bin_PROGRAMS)
|
|
|
|
# src/config.h.in is used by config.status
|
|
Makefile: Makefile.in src/config.h.in config.status
|
|
@@ -1010,7 +1010,7 @@ showpaths:
|
|
# tricky features so mkinstalldirs and cp will do
|
|
|
|
install: showpaths install-doc install-man install-programs \
|
|
- install-include-server install-example @INSTALL_GNOME@ install-conf
|
|
+ install-example @INSTALL_GNOME@
|
|
|
|
install-programs: $(bin_PROGRAMS)
|
|
$(mkinstalldirs) "$(DESTDIR)$(bindir)"
|
|
@@ -1064,7 +1064,7 @@ install-include-server: include-server p
|
|
INCLUDE_SERVER=`grep '/include_server.py$$' "$(include_server_builddir)/install.log"` && \
|
|
sed "s,^include_server='',include_server='$$INCLUDE_SERVER'," \
|
|
pump > "$(include_server_builddir)/pump" && \
|
|
- $(INSTALL_PROGRAM) "$(include_server_builddir)/pump" "$(DESTDIR)$(bindir)"; \
|
|
+ $(INSTALL_SCRIPT) "$(include_server_builddir)/pump" "$(DESTDIR)$(bindir)"; \
|
|
fi
|
|
|
|
install-man: $(man1_MEN)
|