diff options
author | Lennart Poettering <lennart@poettering.net> | 2003-09-04 22:06:56 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2003-09-04 22:06:56 +0000 |
commit | 478d7ec1929c99450cfbfa05e02330658a8668bc (patch) | |
tree | 23c2fcc272aea884d9b40256782ca2fe9cb561ba /src/syrep.c | |
parent | b1a26b18ee147278397a2dbcc1f5741b55982c70 (diff) |
autoconf
git-svn-id: file:///home/lennart/svn/public/syrep/trunk@30 07ea20a6-d2c5-0310-9e02-9ef735347d72
Diffstat (limited to 'src/syrep.c')
-rw-r--r-- | src/syrep.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/syrep.c b/src/syrep.c index 446c2c9..724f08a 100644 --- a/src/syrep.c +++ b/src/syrep.c @@ -18,7 +18,7 @@ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***/ -#include <stdint.h> +#include <inttypes.h> #include <limits.h> #include <assert.h> #include <malloc.h> @@ -53,6 +53,12 @@ #include "makepatch.h" #include "cleanup.h" +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "svn-revision.h" + volatile int interrupted = 0; struct gengetopt_args_info args; @@ -533,7 +539,8 @@ static int version(const char *argv0) { "%s "PACKAGE_VERSION"\n" "Compiled with %i Bit off_t.\n" "Compiled with zlib %s, linked to zlib %s.\n" - "Compiled with libdb %i.%i.%i, linked to libdb %i.%i.%i\n", + "Compiled with libdb %i.%i.%i, linked to libdb %i.%i.%i\n" + "SVN Revision "SVN_REVISION"\n", argv0, sizeof(off_t)*8, ZLIB_VERSION, zlibVersion(), |