diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-18 09:30:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:59 -0500 |
commit | 8451b2658ca0f44f2683bf8045a9232a4a8c9660 (patch) | |
tree | 863b1abfeac4cded0a19830ddea81f053acc001f /source4/lib | |
parent | e62bce854fc571135ef5a484209f78ae4470831a (diff) | |
download | samba-8451b2658ca0f44f2683bf8045a9232a4a8c9660.tar.gz samba-8451b2658ca0f44f2683bf8045a9232a4a8c9660.tar.bz2 samba-8451b2658ca0f44f2683bf8045a9232a4a8c9660.zip |
r4817: ccache was being made ineffective on all the build farm machines
because the version number was being auto-updated and included in all
C files. With this change it is only included where needed.
(This used to be commit 520cff73c6dc62ba1050cf7ca5145d50b5f2bb4e)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/cmdline/popt_common.c | 1 | ||||
-rw-r--r-- | source4/lib/fault.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/cmdline/popt_common.c b/source4/lib/cmdline/popt_common.c index c7bd35cbab..e440611ee4 100644 --- a/source4/lib/cmdline/popt_common.c +++ b/source4/lib/cmdline/popt_common.c @@ -21,6 +21,7 @@ */ #include "includes.h" +#include "version.h" #include "dynconfig.h" #include "system/passwd.h" #include "lib/cmdline/popt_common.h" diff --git a/source4/lib/fault.c b/source4/lib/fault.c index ac2d4109fd..d90281f950 100644 --- a/source4/lib/fault.c +++ b/source4/lib/fault.c @@ -19,6 +19,7 @@ */ #include "includes.h" +#include "version.h" #include "system/wait.h" static void (*cont_fn)(void *); |