summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Stelling <blubb@gentoo.org>2006-01-28 13:45:24 +0000
committerSimon Stelling <blubb@gentoo.org>2006-01-28 13:45:24 +0000
commit5dd01ca631bcf58aa478b33bcc867d98a2ac4114 (patch)
tree5a0be6847f8812977f5c442f5a28df3c42591314 /sys-devel/icecream/files
parentadd gnome-doc-utils dep, fixes #119878 (diff)
downloadhistorical-5dd01ca631bcf58aa478b33bcc867d98a2ac4114.tar.gz
historical-5dd01ca631bcf58aa478b33bcc867d98a2ac4114.tar.bz2
historical-5dd01ca631bcf58aa478b33bcc867d98a2ac4114.zip
no need to bzip a smallish patch
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'sys-devel/icecream/files')
-rw-r--r--sys-devel/icecream/files/icecream_disable.patch29
-rw-r--r--sys-devel/icecream/files/icecream_disable.patch.bz2bin738 -> 0 bytes
2 files changed, 29 insertions, 0 deletions
diff --git a/sys-devel/icecream/files/icecream_disable.patch b/sys-devel/icecream/files/icecream_disable.patch
new file mode 100644
index 000000000000..2c77dd56f271
--- /dev/null
+++ b/sys-devel/icecream/files/icecream_disable.patch
@@ -0,0 +1,29 @@
+diff -Naur icecream.orig/client/main.cpp icecream/client/main.cpp
+--- icecream.orig/client/main.cpp 2004-08-29 13:27:02.000000000 +0200
++++ icecream/client/main.cpp 2004-11-21 06:00:39.178542387 +0100
+@@ -70,6 +70,7 @@
+ " --help explain usage and exit\n"
+ " --version show version and exit\n"
+ "Environment Variables:\n"
++" ICECC_DISABLE if set the local compiler is used.\n"
+ " ICECC_VERSION use a specific icecc environment, see create-env\n"
+ " ICECC_REPEAT_RATE the number of jobs out of 1000 that should be\n"
+ " compiled on multiple hosts to ensure that they're\n"
+@@ -112,6 +113,7 @@
+ int main(int argc, char **argv)
+ {
+ char *env = getenv( "ICECC_DEBUG" );
++ char *icecc_disable = getenv( "ICECC_DISABLE" );
+ int debug_level = Error;
+ if ( env ) {
+ if ( !strcasecmp( env, "info" ) ) {
+@@ -156,6 +158,9 @@
+ CompileJob job;
+ bool local = analyse_argv( argv, job );
+
++ if(icecc_disable != NULL)
++ return build_local( job, 0 );
++
+ Service *serv = new Service ("127.0.0.1", 10245);
+ MsgChannel *local_daemon = serv->channel();
+ if ( ! local_daemon || !local_daemon->protocol ) {
diff --git a/sys-devel/icecream/files/icecream_disable.patch.bz2 b/sys-devel/icecream/files/icecream_disable.patch.bz2
deleted file mode 100644
index ee96241b0583..000000000000
--- a/sys-devel/icecream/files/icecream_disable.patch.bz2
+++ /dev/null
Binary files differ