11
I Use This!
Activity Not Available

Commits : Listings

Analyzed over 1 year ago. based on code collected almost 5 years ago.
Mar 16, 2020 — Mar 16, 2021
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Treat ENOTSOCK errors from sendfile() the same way that we treat ENONSYS and EINVAL errors: fall back to using read() and write(). This fixes the failure of SyntaxError_Case and MissingCompiler_Case on FreeBSD. More... over 17 years ago
Remove .d test case for which gcc stumbles on Mac OS. More... over 17 years ago
This adds an #two that's technically needed to compile. Cygwin happened to notice this was missing. More... over 17 years ago
Four improvements to the test framework: More... over 17 years ago
Small wording change, suggested by [email protected] More... over 17 years ago
This test was broken before: I needed to escape [ and ] from m4. More... over 17 years ago
Previously, 'make check' was a noop because we do not require python to be installed for distcc, but the tests require python. Therefore, to run the tests you had to run 'make maintainer-check' instead (since maintainers of distcc *do* have to have python installed). More... over 17 years ago
Include-server requires python 2.4 or higher, but the test framework only requires python 2.2. Check for both, so for folks with python 2.2 or python 2.3, they can at least run the tests, even if they can't install the include-server. More... over 17 years ago
Clean up Python code. More... over 17 years ago
Make install-checks work and a lot of clean-up in regards to the 'checking' targets. More... over 17 years ago
OS X added sendfile support in 10.5, so add this case to sendfile.c. Looking at the man pages, it looks like os x sendfile is pretty much the same as BSD's, so I copied much of the code from the existing BSD case. More... over 17 years ago
These changes are enough to get code to compile, and at least some of the unittests to pass, on FreeBSD 6.0, Solaris 10 x86, and OS X Leopard. You have to use gmake instead of standard bsd make, though, because neither bsd nor solari make understand 'include */*.d' and 'CFLAGS += $(POPT_FLAGS).' These may be fixable later. More... over 17 years ago
Some older versions of tar have problems with filenames > 100 characters. To maximize compatibility, I renamed the only file we have that is close to that limitation, to be shorter. More... over 17 years ago
Neglected to commit this with the Makefile.am changes from last time, though it's needed to define UNINSTALL_GNOME. More... over 17 years ago
Add uninstall targets, to undo the effects of 'make install'. I try to be semi-smart about deleting empty directories. More... over 17 years ago
Update the TODO file to add an entry on better non-ELF support. Also get rid of the TODO for Latte, since we're not going to be using any doc-template system on Google Code. More... over 17 years ago
Fix some bugs in the googlecode-upload script, and modify the upload target in the Makefile to call it. Also added googlecode_upload.py to the dist tarball. More... over 17 years ago
Rename directory testtmp to _testtmp in line with our current practice for generated directories. More... over 17 years ago
A bunch of changes to the configuration files and installation: More... over 17 years ago
Address review comments on an earlier change: - autogen.sh now uses "#!/bin/sh -e" rather than "|| exit 1" everywhere. - autogen.sh now determines srcdir automatically from $0 - autogen.sh no longer tells you to run "./configure --srcdir=.". More... over 17 years ago
Fix-up test in regard to angle bracket includes of non-existent files in order to explicitly accommodate the rather strange difference between running gcc locally and running it remotely in pump mode. In the former case, gcc fails with an error message; in the latter it succeeds and the error has been demoted to a warning. More... over 17 years ago
The --allow option to distccd is no longer optional. Update the distccd man page to better reflect that. More... over 17 years ago
Add distcc-specific code to googlecode_upload. This allows us to upload all the package files we create in one fell swoop (they must be specified on the commandline). We figure out the summary to give to each file and the label to apply, and then upload each in turn. More... over 17 years ago
Add missing dependency on pump for target pump-check and pump-installcheck. To do so, introduce new phony intermediate target. Add TODO about the `pwd` in maintainer-installcheck target. More... over 17 years ago
Fix missing line continuation in a Makefile rule. More... over 17 years ago
Support running autogen.sh in the build directory, rather than the source directory. Now the source directory should be completely untouched, so we should be able to autogen, configure, and build even if the source directory is read-only. More... over 17 years ago
Quick fix to my previous commit: I have to make sure every Make line ends in success, when it in fact succeeds. Thus you need to use || sometimes instead of &&. More... over 17 years ago
Augment 'make distcheck' to ensure that 'make', 'make check', 'make install', etc. only write into builddir and instdir, not srcdir. In the process, fixed up a typo -- introduced when I merged all the Makefile.in's -- that affected us in the (common) case DISTDIR is the empty string. More... over 17 years ago
Add googlecode_upload.py, a script to help upload tarballs and package files to the Google Code location of distcc. This is the version as downloaded from the web, at http://support.googlecode.com/svn-history/r57/trunk/scripts/googlecode_upload.py More... over 17 years ago
Add 'make rpm' to make the rpm files for this project (much like 'make dist' makes a tar.gz file), and 'make deb' to make the deb files. 'make alldist' will make all three (well, four): .tar.gz, .tar.bz2, .rpm, and .deb. More... over 17 years ago