1 /***************************************************************************
2  * LPRng - An Extended Print Spooler System
3  *
4  * Copyright 1988-2003, Patrick Powell, San Diego, CA
5  *     papowell@lprng.com
6  * See LICENSE for conditions of use.
7  *
8  ***************************************************************************/
9 
10 #include "lp.h"
11 /**** ENDINCLUDE ****/
12 
13 const char *Copyright[] = {
14  PACKAGE_NAME "-" PACKAGE_VERSION
15 #if defined(KERBEROS)
16  ", Kerberos5"
17 #endif
18 ", Copyright 1988-2003 Patrick Powell, <papowell@lprng.com>",
19 
20 "",
21 "locking uses: "
22 #ifdef HAVE_FCNTL
23 		"fcntl (preferred)"
24 #else
25 #ifdef HAVE_LOCKF
26             "lockf"
27 #else
28             "flock (does NOT work over NFS)"
29 #endif
30 #endif
31 ,
32 "stty uses: "
33 #if USE_STTY == SGTTYB
34             "sgttyb"
35 #endif
36 #if USE_STTY == TERMIO
37             "termio"
38 #endif
39 #if USE_STTY == TERMIOS
40             "termios"
41 #endif
42 ,
43 #ifdef SSL_ENABLE
44 "with SSL"
45 #else
46 "without SSL"
47 #endif
48 ,
49 "",
50 #include "license.h"
51 #include "copyright.h"
52 0 };
53