diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-09 08:52:27 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-09 08:52:27 +0100 |
commit | 8b5f57a2c6b99944d2de885a1f7a303bdee0af48 (patch) | |
tree | 7404edf73db6c0eed176bbe6ed286295b3ac284a /tools/syslogd.c | |
parent | 7d4c4340510f1d1207da58812649a06daaff8e6f (diff) | |
download | rsyslog-8b5f57a2c6b99944d2de885a1f7a303bdee0af48.tar.gz rsyslog-8b5f57a2c6b99944d2de885a1f7a303bdee0af48.tar.bz2 rsyslog-8b5f57a2c6b99944d2de885a1f7a303bdee0af48.zip |
enabled to build without libuuid, at loss of uuid functionality
this enables smoother builds on older systems that do not support
libuuid. Loss of functionality should usually not matter too much as
uuid support has only recently been added and is very seldom used.
Diffstat (limited to 'tools/syslogd.c')
-rw-r--r-- | tools/syslogd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index 05cbfc13..a3cbc799 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -1419,6 +1419,11 @@ static void printVersion(void) #else printf("\tRuntime Instrumentation (slow code):\tNo\n"); #endif +#ifdef USE_LIBUUID + printf("\tuuid support:\t\t\t\tYes\n"); +#else + printf("\tuuid support:\t\t\t\tNo\n"); +#endif printf("\nSee http://www.rsyslog.com for more information.\n"); } |