From ca9d7ca1406d5a7279532b5319ab973a4a07ffd3 Mon Sep 17 00:00:00 2001 From: "fergus.henderson" Date: Tue, 25 Oct 2011 00:42:04 +0000 Subject: Update the NEWS and ChangeLog files, and set the version number to 3.2rc1, in preparation for releasing distcc version 3.2. Reviewed by Craig Silverstein. git-svn-id: http://distcc.googlecode.com/svn/trunk@746 01de4be4-8c4a-0410-9132-4925637da917 --- ChangeLog | 740 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- NEWS | 39 ++++ configure.ac | 2 +- 3 files changed, 776 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6422299..0c539ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,740 @@ -2009-09-11 Akim Demaille +2011-10-24 23:26 Fergus Henderson - * src/hosts.c (strndup): Use the standard signature (without - static), so that we don't conflict with GCC's builtin signature. - Now that it is not static, declare it, to avoid warnings. + * doc/web/man/distcc_1.html, doc/web/man/distccd_1.html, + doc/web/man/distccmon_text_1.html, doc/web/man/include_server_1.html, + doc/web/man/pump_1.html, man/distcc.1, man/include_server.1: + + Regenerate the checked-in HTML for the man pages. + + The HTML files were generated automatically using + + sudo apt-get install troffcvt + make man-html + + But I have also changed the man source files to ensure that + the generated output still looks nice. The changes were + mainly replacing blank lines with ".PP", but there were a + few other tweaks needed too. + + Tested by viewing the output on both Chrome and Safari, + and using "man" and (equivalently) "nroff -man" and + examining the changes. + + Reviewed by Craig Silverstein. + +2011-10-24 00:57 Fergus Henderson + + * man/distccd.1: + + Apply a suggestion from Craig Silverstein: update the documentation + for the --whitelist option to make it clear that distcc will accept + connections *only* from users on the list. + +2011-10-21 01:26 Fergus Henderson + + * popt/popthelp.c, src/dotd.c: + + Fix a couple of compiler warnings. + + Reviewed by Craig Silverstein. + +2011-06-28 20:13 Fergus Henderson + + * test/testdistcc.py: + + Apply patch from Ihor Kaharlichenko to fix issue 81 + : + SyntaxError_Case was failing with recent versions of gcc, + due to the error message format having changed to now + include the column number. + + Also remove an old "XXX" comment that no longer applies. + +2011-04-06 14:49 Fergus Henderson + + * test/testdistcc.py: + + Fix a syntax error in my last change. + +2011-04-06 14:36 Fergus Henderson + + * Makefile.in: + + Update Makefile.in for compatibility with autoconf >= 2.60. + This avoids the following warning + config.status: WARNING: 'Makefile.in' seems to ignore the + --datarootdir setting + and ensures that our configure script supports that --datarootdir + flag. + + Reviewed by Craig Silverstein. + +2011-04-06 14:35 Fergus Henderson + + * src/clinet.c, src/dotd.c, src/emaillog.c, src/hosts.c, src/mon.c, + src/netutil.c, src/serve.c, src/snprintf.c, src/snprintf.h, + src/srvnet.c, src/srvrpc.c, src/stats.c, src/trace.c, src/util.c: + + Fix warnings about unused return values. This includes some code + changes + to do a better job of error checking. + +2011-04-06 14:11 Fergus Henderson + + * test/testdistcc.py: + + Fix some issues that caused the gdb-related tests to fail: + + 1. Recent gcc versions want us to use -Wl,--build-id + rather than --build-id. + + 2. We had missed one of the places where we need to be passing + that flag in. + + 3. With recent gcc/gdb versions, "break main; run" + will sometimes stop at the first statement inside of main + rather than on the function declaration. + So "break main; run; step" may end up inside the code to + puts() rather than in the code for main(). + My fix was to use "break main; run; next" instead. + It is inderminate (varies based on whether you use "-O", for example) + whether we end up at the call to puts() or after the call to puts(), + but either way the call to puts() should be in the gdb output log. + + Reviewed by Craig Silverstein. + +2011-04-06 14:09 Fergus Henderson + + * configure.ac: + + Support Python 2.6. + + Reviewed by Craig Silverstein. + +2011-04-05 18:57 Fergus Henderson + + * src/hosts.c: + + Fix indentation (layout changes only, no code changes). + +2010-11-16 19:05 Fergus Henderson + + * test/testdistcc.py: + + Fix for + "Gdb tests fail in pumped mode on Ubuntu 9.10 amd64": + pass --build-id to gcc versions that support it. + (See + for a description of the --build-id switch.) + + Reviewed by Craig Silverstein. + +2010-11-16 18:51 Fergus Henderson + + * man/include_server.1: + + Fix error in manual: to disable fallback, set DISTCC_FALLBACK to 0 not + 1. + Resolves . + +2010-10-08 19:33 Fergus Henderson + + * src/access.c: + + Apply patch from Ian Kumlien , + to fix . + This patch fixes a compile error on Gentoo Linux due to "s6_addr" + being #defined by a system header file and thus not available for + use as a local variable name. + +2010-10-08 18:29 Fergus Henderson + + * src/clirpc.c, src/compile.c, src/remote.c, src/state.c, src/state.h, + src/where.c: + + Apply patch from Jeremy Murphy , + tested and reviewed by cheepero@gmail.com, to address + + "distcc-mon-gnome displays multiple rows for same host/slot". + +2010-09-10 22:09 Fergus Henderson + + * test/testdistcc.py: + + Fix failures of the Gdb_* test cases: + + 1. These tests were failing if you have anything in your ~/.gdbinit + file that causes gdb to issue an error message. The fix here is + to create an empty .gdbinit in the test directory; gdb will + read that one in preference to the one in $HOME. + + 2. These tests were failing due to a new spurious warning from gdb. + + 3. There were a bug in the code for the Gdb_Case test which previously + caused part of the test to be executed only in pump mode. When + invoking gcc to check whether preprocessing preserves the pwd info, + the command line had not been updated to reflect the fact that this + command is run in a subdirectory; as a consequence, + gcc_preprocessing_preserves_pwd was always set to false. + + Reviewed by Craig Silverstein. + +2010-08-19 22:51 Fergus Henderson + + * src/access.c: + + Some minor stylistic improvements: + use array indexing rather than pointer arithmetic; + simplify for loops; + change a parameter name to match comment describing it; + eliminate trailing whitespace. + + Reviewed by Bob Ham + +2010-08-19 20:07 Fergus Henderson + + * src/daemon.c, src/daemon.h, src/serve.c: + + Change directory back to the original server working directory after + each + distcc-pump compilation. This fixes a bug where distcc-pump was + changing + to a directory and then deleting that directory and not changing back + to the original directory. That caused problems when you used a server + first in distcc-pump mode and then in distcc mode, and the compiler + invoked a shell script. The compilation would succeed, but the shell + would + report a confusing warning ("shell-init: error retrieving current + directory: + getcwd: cannot access parent directories: No such file or directory"). + +2010-08-19 19:23 Fergus Henderson + + * include_server/compiler_defaults.py, include_server/parse_command.py, + include_server/parse_command_test.py: + + Apply --sysroot patch from Simon Baldwin : + + 2010-08-18 Simon Baldwin + + * include_server/compiler_defaults.py (_SystemSearchdirsGCC): + Add a 'sysroot' parameter. Add --sysroot, if needed, to the gcc + invocation that identifies search directories and default paths. + Add debugging output. + (SetSystemDirsDefaults): Add 'sysroot' parameter. Add another + dictionary level to system_dirs_default for sysroot values. + Add debugging output. + * include_server/parse_command.py (ParseCommandArgs): Identify + and handle arguments of the form '--opt=value'. Pass any + --sysroot value to compiler_defaults.SetSystemDirsDefaults, use + it in compiler_defaults.system_dirs_default lookups. + (CPP_OPTIONS_APPEARING_AS_ASSIGNMENTS): New. + * include_server/parse_command_test.py (Mock_SetSystemDirsDefaults): + Add sysroot parameter, verify it on function calls. + (ParseCommandUnitTest): Add --sysroot to mock gcc invocations. + +2010-06-29 15:51 Fergus Henderson + + * src/fix_debug_info.c: + + Trivial fix for slight mistake in distccd debug message. + + Reviewed by Craig Silverstein. + +2010-05-04 20:09 Fergus Henderson + + * src/serve.c, src/stats.c, src/stats.h, src/util.c, src/util.h: + + Apply patch from Ryan Burns : + add 1, 3, 5 minute averages of the number of children + used on a server to the statistics collected by the + stats server. + +2010-05-04 19:52 Fergus Henderson + + * man/distcc.1, src/compile.c: + + Apply patch from Ryan Burns : + add an environment variable DISTCC_SKIP_LOCAL_RETRY for skipping + the local retry in case of a remote compilation failure. + +2010-03-02 08:24 Fergus Henderson + + * test/testdistcc.py: + + Apply slightly cleaned up version of patch from perezdiez@gmail.com + to fix failure of PreprocessAsm_Case on ARM. + +2010-03-02 08:13 Fergus Henderson + + * src/emaillog.c: + + Apply patch from Akim Demaille : + + * src/emaillog.c (dcc_maybe_send_email): Pacify GCC's warnings + about format strings by getting rid of a useless temporary + string. + +2010-03-02 08:10 Fergus Henderson + + * ChangeLog, src/hosts.c: + + Apply patch from Akim Demaille : + + * src/hosts.c (strndup): Use the standard signature (without + static), so that we don't conflict with GCC's builtin signature. + Now that it is not static, declare it, to avoid warnings. + +2010-02-18 23:40 Fergus Henderson + + * test/testdistcc.py: + + Apply patch from madkinder: use #include rather than #import in C++ + test case. + This fixes a test case failure with gcc 4.4.1, which warns about use + of #import. + + (The use of #import was an accidental cut-and-paste error resulting + from copying + the C++ test case from the Objective-C/C++ test case.) + +2010-02-18 23:33 Fergus Henderson + + * test/testdistcc.py: + + Change the PreprocessAsm_Case so that it reports NOTRUN + rather than PASS for systems where it is not run. + +2010-02-10 03:31 Lei Zhang + + * man/distcc.1, src/daemon.c, src/distcc.h, src/io.c, src/pump.c, + src/sendfile.c: + + Add support for $DISTCC_IO_TIMEOUT. + + Reviewed by Fergus Henderson. + +2009-12-30 04:25 Fergus Henderson + + * packaging/RedHat/init.d/distcc: + + Apply patch from Tal : + + In packaging/RedHat/init.d/distcc the executable is once refereed to + using the variable EXEC, and once as with the explicit expected name. + Change it to always use the EXEC variable. + +2009-12-01 04:46 Fergus Henderson + + * Makefile.in: + + Apply patch from : + + This is a simple patch that adds the standard TAGS target for Emacs + users. + +2009-08-03 23:33 Lei Zhang + + * man/distcc.1, man/pump.1, pump.in, src/compile.c: + + Make max_discrepancies_before_demotion configurable via + DISTCC_MAX_DISCREPANCY environment variable. + +2009-07-24 17:30 Fergus Henderson + + * test/testdistcc.py: + + Pass "-c" to gcc for the Dotd_Case tests. + + This fixes a problem where this test was failing on some systems + due to link errors when compiling C++ source files with "gcc foo.cpp". + To link C++ code, you now need to use "g++ foo.cpp" or "gcc foo.cpp + -lstdc++", + even if the C++ code in question doesn't use any C++ library features. + Rather than changing the code to use "g++" or "-lstdc++", I though it + was + better to avoid the link step entirely, since it is not needed for the + things + this test is testing, and removing it will speed up the test. + + Reviewed by Craig Silverstein. + +2009-07-24 16:59 Fergus Henderson + + * man/distccd.1, src/auth.h, src/auth_common.c, src/auth_distcc.c, + src/auth_distccd.c, src/daemon.c, src/dopt.c, src/dopt.h, + src/dparent.c, src/dsignal.c: + + Apply patch from Ian.Baker@cern.ch: + + Optional Black/Whitelist Functionality. + + This patch is used to implement optional server-side access control + through a specified black or whitelist file. This option is specified + through a command line option. + + Revised by me (Fergus Henderson): + fixed spelling error, added a comment. + +2009-07-24 16:31 Fergus Henderson + + * Makefile.in, configure.ac, src/h_getline.c[ADD], src/util.c, + src/util.h, test/testdistcc.py: + + Define a GNU-compatible getline() implementation, + in case we don't have getline() available. + + Reviewed by Craig Silverstein. + +2009-07-24 01:32 Fergus Henderson + + * src/h_parsemask.c: + + Fix compile errors for "make check" caused by distcc-v6-acl-2.patch. + +2009-07-23 02:16 Fergus Henderson + + * Makefile.in, configure.ac, man/distcc.1, man/distccd.1, + src/auth.h[ADD], src/auth_common.c[ADD], src/auth_distcc.c[ADD], + src/auth_distccd.c[ADD], src/clirpc.c, src/daemon.c, src/distcc.c, + src/dopt.c, src/dopt.h, src/dparent.c, src/dsignal.c, src/exitcode.h, + src/help.c, src/hosts.c, src/hosts.h, src/lock.c, src/remote.c, + src/serve.c: + + Apply patch from Ian.Baker@cern.ch: + + Optional GSS-API Functionality. + + This patch implements mutual authentication, out of sequence and + replay detection using the GSS-API. The changes implemented are + optional and are turned off by default. + + This option is specified to the client through an environment variable + as is the name of the server principal to authenticate. Currently + the server principal can be left unspecified and a default based on + the host keytab will be used. + + This option is specified to the daemon through a command line option, + with the name of the principal whose credentials the daemon should + use specified as an environment variable. A simple handshake is + exchanged between the client and server in order to prevent + unecessary delays and protocol derailments when mixing authenticating + and non-authenticating clients and servers. + + Revised based on review comments. + GSS-API authentication is now implemented as a per host option. + + Revised further by me (Fergus Henderson) to fix a spelling error + and to rename the per host option from ",gssapi" to ",auth". + +2009-07-23 02:15 Fergus Henderson + + * doc/protocol-gssapi.txt[ADD]: + + Apply patch from Ian.Baker@cern.ch: + + Protocol Documentation for GSSAPI extension. + +2009-07-22 21:39 Fergus Henderson + + * Makefile.in: + + Add Makefile target "man-html" for rebuilding the (checked-in) HTML + versions of the man pages. This allows you to view the changes with + "svn diff" before running "make upload-man" which commits them. + + Reviewed by Craig Silverstein. + +2009-07-22 17:29 Fergus Henderson + + * src/access.c, src/access.h, src/srvnet.c, src/zeroconf-reg.c: + + Apply distcc-v6-acl-2.patch from Bob Ham : + - Implements IPv6 support for access control. + - Restrict zeroconf advertisements to IPv4 if + RFC2553 support isn't enabled. + - Modifies the non-RFC2553 code to use inet_aton() + instead of the RFC2553-specific inet_pton(). + +2009-07-22 17:22 Fergus Henderson + + * man/include_server.1: + + Improve some slightly misleading documentation. + +2009-06-30 21:37 Fergus Henderson + + * gnome/distccmon-gnome.desktop: + + Swedish translation, from Nille . + +2009-04-18 00:03 Fergus Henderson + + * Makefile.in: + + Apply patch from Assar : + + If any of the files in the source directory are not writable, running + "make dist" will prompt you if you want to remove those files in the + temporary distribution directory (distcc-3.1). + + The following tiny patch fixes that. + +2009-04-14 03:10 benizi + + * src/zeroconf.c: + + Remove duplicate hosts from the zeroconf list. + + Fixes issue 43 . + As mentioned in issue 34 + , + hosts with both IPv4 and IPv6 addresses showed up twice if avahi is + IPv6-enabled. So, filter out duplicates using the service name. + +2009-04-10 20:26 Fergus Henderson + + * src/exec.c: + + (1) Layout/whitespace changes; the layout of this file + seems to have gotten mixed up when we changed from + using tabs to using spaces. + + (2) Fix spacing in a log message. + + Reviewers: Craig Silverstein + +2009-04-10 19:26 Fergus Henderson + + * test/testdistcc.py: + + Fix a distcc test that was failing on modern kernels: + ignore a spurious warning from gdb. + + According to Paul Pluzhnikov, the warning is gone from current GDB, + fixed by the following patch: + + 2008-04-21 Pedro Alves + + * symfile.c (syms_from_objfile): Don't warn if lowest loadable + section is not a code section. + + But since there are going to be some versions of gdb in the wild that + don't have that patch, we still need to work around it in the distcc + tests. + + Reviewed by Craig Silverstein. + +2009-04-10 17:37 Fergus Henderson + + * test/testdistcc.py: + + A fix for distcc issue 44 "Failed tests on make check (gentoo + gcc-4.3.3)" + . + We were using an invalid signature for main(), and newer versions of + gcc + are stricter about checking this. + + Reviewed by Craig Silverstein. + +2009-03-06 13:55 IanRichardBaker + + * src/include_server_if.c: + + Fixed a portability issue that causes compilation to fail on 64 bit + boxes. + +2009-02-17 23:10 Fergus Henderson + + * src/dotd.c, src/emaillog.c, src/include_server_if.c, src/lsdistcc.c, + src/rslave.c, src/stringmap.c, src/timeval.c: + + Ensure that all ".c" files start with "#include ". + + This will hopefully fix issue 39 + . + Some header files were using #if statements that depended on macros + defined in config.h + without #including config.h first. The result was a compilation error, + because + "#if !HAVE_DECL_SNPRINTF" was evaluating to true because config.h + hadn't been included, + causing us to declare snprintf() when we shouldn't, leading to a + conflict with the + declaration in the standard header files. + + (The alternative solution would have been to add "#include " + to every header file that uses '#if'. I decided not to do that, just + for consistency with the existing code.) + +2009-02-17 23:10 Fergus Henderson + + * packaging/rpm.sh: + + Fix a non-portability in rpm.sh: + use "trap ... HUP" rather than "trap ... SIGHUP". + + The Posix.1 standard + + says: + The condition can be EXIT, 0 (equivalent to EXIT), or a signal + specified + using a symbolic name, without the SIG prefix, as listed in the tables + of signal names in the header [...]; for example, HUP, INT, + QUIT, TERM. Implementations may permit names with the SIG prefix or + ignore case in signal names as an extension. + + Previously, the code was relying on this optional extension. + +2009-01-30 17:27 Fergus Henderson + + * include_server/macro_eval.py, include_server/parse_file.py, + test/testdistcc.py: + + Fix issue 35 . + This was a bug where the include server was crashing in certain cases + (when the argument to a macro ended in a backslash) due to an escaping + problem in the use of Python's re.sub() function. The fix was to + replace all occurrences of backslash in the replacement string + with double-backslash, which re.sub() will then translate back to + a single backslash. (I also changed the code to not bother using + re.compile() since we only use the regexp once.) + + Also, fix a bug where we were not allowing backslashes in filenames. + + I added regression tests for both of these bugs + (and I verified that they were true regression tests). + + Reviewed by Craig Silverstein. + +2009-01-26 23:50 Fergus Henderson + + * pump.in: + + Handle failure of "mktemp" more gracefully in the pump script. + It was printing an error message, but then it would continue + on even if mktemp had failed (it called "exit 1", but only + in a subshell). It would then go on and try to start the + include server, which would end up hanging. + The fix is to make sure that we call "exit 1" from the main + shell whenever MakeTmpFile fails. + + Reviewed by Craig Silverstein. + +2009-01-22 05:33 adshea + + * man/distcc.1, src/hosts.c, src/zeroconf.c: + + IPv6 patch for Zeroconf and and IPv6 literals in hosts file. + * Still needs configure flag masking for IPv6 literals + * Needs some fix for zeroconf hosts that have both and IPv6 and IPv4 + address + +2009-01-20 22:22 Fergus Henderson + + * doc/web/index.html, doc/web/man/index.html[ADD]: + + - Add pointer to the INSTALL file to the main page. + - Create an index.html in doc/web/man to make the + presentation of that page prettier. + Previously it was a rather ugly directory listing + of file names like "distcc_1.html", "distccd_1.html", etc. + - Add links to the INSTALL file and README* files + from that doc/web/man/index.html page. + + Reviewed by Craig Silverstein. + +2009-01-09 17:46 Fergus Henderson + + * doc/web/index.html: + + Fix broken link to distccWebView. + +2009-01-09 08:54 akim.demaille + + * src/distcc.c: + + "distcc --scan-includes" dumps core. + + * src/distcc.c (main): Don't dump --help on the user on command + line error, rather, return the `Try --help' message on stderr. + Check that --scan-includes is given arguments. + +2009-01-05 22:48 Fergus Henderson + + * src/distcc.c: + + Document the --scan-includes option in the output of "distcc --help". + +2009-01-05 20:29 Fergus Henderson + + * Makefile.in, pump.in: + + Avoid using "echo -n", because it's not portable. + +2009-01-05 20:18 Fergus Henderson + + * test/testdistcc.py: + + Portability fix: the CPlusPlus_SystemIncludeDirectories_Case + was assuming that /usr/include/sys/types.h exists, but was + not checking this assumption. + +2008-12-22 22:21 Fergus Henderson + + * include_server/compiler_defaults.py: + + Fix a bug where the SystemIncludeDirectories_Case test + was failing on systems where /tmp was a symlink. + This failure indicated a real bug: on such systems, + distcc was not correctly handling -I where + is a subdirectory of a system include directory, + e.g. -I/usr/include/foo. + + The code was calling _RealPrefix(client_root + system_dir) + but was implicitly assuming that the answer would always + start with client_root. That is, it was implicitly assuming + that client_root did not contain any symlinks. + + I changed the code to use + _RealPrefixWithinClientRoot(client_root, system_dir) + so that it would find the appropriate prefix of system_dir + rather than looking at the prefixes of client_root. + +2008-12-22 21:56 Fergus Henderson + + * include_server/compiler_defaults.py: + + When computing the compiler's default search path by parsing the + output + from "gcc -v", ignore Apple-modified MacOS gcc's "framework" + directories. + +2008-12-10 20:22 Fergus Henderson + + * INSTALL: + + Clarify installation instructions; in particular, if you have python + installed, you need to also have Python.h installed before building + distcc. + + Reviewer: Craig Silverstein + +2008-12-03 00:54 Fergus Henderson + + * include_server/setup.py: + + Avoid a spurious message 'setup.py: PYTHON_CFLAGS must be defined.' + The top-level Makefile sets CFLAGS="$(CFLAGS) $(PYTHON_CFLAGS)" + before invoking setup.py, so there's no need for it to set + PYTHON_CFLAGS. + +2008-12-02 21:49 Fergus Henderson + + * ChangeLog: + + Update ChangeLog with some more changes for distcc 3.1. 2008-12-02 21:44 Fergus Henderson diff --git a/NEWS b/NEWS index a3a71e7..cf9b198 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,42 @@ +distcc-3.2 "Back in black" 2011-10-11 + + FEATURES: + + * IPv6 support (adshea, Benjamin R. Haskell, Bob Ham). + + * Optional support for GSS-API authentication (Ian Baker at CERN) + + * Added an environment variable DISTCC_SKIP_LOCAL_RETRY for skipping + the local retry in case of a remote compilation failure (Ryan Burns). + + * Some constants that were previously hard-coded in the + sources are now configurable via environment variables: + DISTCC_MAX_DISCREPANCY, DISTCC_IO_TIMEOUT (Lei Zhang). + + BUG FIXES: + + * Fixed the following 20 issues : + + 30: 3.0 on OSX: ValueError: Expected absolute path, but got '(framework'. + 33: distcc --scan-includes dumps core + 34: Zeroconf fails if avahi supports IPv6 + 35: Include server internal error: ': ('bogus escape (end of line)',)' + 36: distcc-mon-gnome displays multiple rows for same host/slot + 39: build with gcc 4.1 snprintf.h error "expected declaration specifiers" + 42: distcc --show-hosts fails when using Avahi with IPv6 support and +zeroconf for distcc. + 43: Remove duplicate hosts from zeroconf list + 44: Failed tests on make check (gentoo gcc-4.3.3) + 46: Add TAGS target to Makefile.in + 49: make check fails on PreprocessAsm_Case + 57: Fix warnings + 58: PUMP mode can`t PARSE the HOSTS + 60: CPlusPlus test case fails with GCC 4.4.1 + 61: Gdb tests fail in pumped mode on Ubuntu 9.10 amd64 + 66: pump mode fails to compile certain KDE-4 packages, finds/looks for incorrect headers + 70: variable overlapping causing errors.. + 75: include_server documentation, distcc_fallback flag incorrect + 81: distcc 3.1 will not compile correctly with current version of gcc + distcc-3.1 "Humming along" 2008-11-21 FEATURES: diff --git a/configure.ac b/configure.ac index e07a001..3218801 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ dnl Process this file with autoconf to produce a configure script # As of 0.6cvs, distcc no longer uses automake, only autoconf. AC_PREREQ(2.53) -AC_INIT(distcc, 3.1, distcc@lists.samba.org) +AC_INIT(distcc, 3.2rc1, distcc@lists.samba.org) AC_CONFIG_HEADERS(src/config.h) AC_CANONICAL_HOST -- cgit v1.2.1