File: leafnode-version.c

package info (click to toggle)
leafnode 1.11.11-3
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 2,460 kB
  • sloc: ansic: 10,914; sh: 1,748; xml: 628; makefile: 296; perl: 84; sed: 4
file content (51 lines) | stat: -rw-r--r-- 1,199 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* (C) 2002, 2009 by Matthias Andree
 *
 * This file is under the same license as the rest of leafnode. Please see the
 * file "COPYING" that should be in the same directory as this.
 */

#include "leafnode.h"

#include <stdio.h>
#include <string.h>

int main(int argc, char **argv) {
    static char env_path[] = "PATH=/bin:/usr/bin";

    /* DO NOT CHANGE THE OUTPUT FORMAT; EXTERNAL TOOLS DEPEND ON IT!
     * (namely, leafwa does)
     */
    fputs("version: leafnode-", stdout);
    puts(version);

    /* new in 1.11.7: -v mode to print more information, such as directories */
    if (argc > 1 &&
	    (0 == strcmp(argv[1], "-v")
	     || 0 == strcmp(argv[1], "--verbose")))
    {
	fputs("current machine: ", stdout);
	fflush(stdout);
	putenv(env_path);
	if (system("uname -a"))
	    puts(" (error)");
	fputs("sysconfdir: ", stdout);
	puts(sysconfdir);
	fputs("spooldir: ", stdout);
	puts(spooldir);
	fputs("lockfile: ", stdout);
	puts(lockfile);
#ifdef HAVE_IPV6
	puts("IPv6: yes");
#else
	puts("IPv6: no");
#endif
#ifdef HAVE_GETIFADDRS
	puts("HAVE_GETIFADDRS: yes");
#else
	puts("HAVE_GETIFADDRS: no");
#endif
	fputs("pcre version: ", stdout);
	puts(pcre_version());
    }
    return 0;
}