blob: 60fea33aab3b13385732136f1093158a0503323a (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
/*
* This file has been modified for the cdrkit suite.
*
* The behaviour and appearence of the program code below can differ to a major
* extent from the version distributed by the original author(s).
*
* For details, see Changelog file distributed with the cdrkit package. If you
* received this file from another source then ask the distributing person for
* a log of modifications.
*
*/
/* @(#)defaults.h 1.19 06/01/30 joerg */
/*
* Header file defaults.h - assorted default values for character strings in
* the volume descriptor.
*
* Copyright (c) 1999-2004 J. Schilling
*/
#define PREPARER_DEFAULT NULL
#define PUBLISHER_DEFAULT NULL
/*
* Define me when it's needed again
#ifndef APPID_DEFAULT
#ifdef APPLE_HYB
#define APPID_DEFAULT "MKISOFS ISO 9660/HFS FILESYSTEM BUILDER (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING"
#else
#define APPID_DEFAULT "MKISOFS ISO 9660 FILESYSTEM BUILDER (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING"
#endif / * APPLE_HYB * /
#endif */
#define COPYRIGHT_DEFAULT NULL
#define BIBLIO_DEFAULT NULL
#define ABSTRACT_DEFAULT NULL
#define VOLSET_ID_DEFAULT NULL
#define VOLUME_ID_DEFAULT "CDROM"
#define BOOT_CATALOG_DEFAULT "boot.catalog"
#define BOOT_IMAGE_DEFAULT NULL
#define SILO_BOOT_IMAGE_DEFAULT "boot/second.b"
#define SILO_BOOTBLOCK_DEFAULT "boot/cd.b"
#define SILO_CONF_FILE_DEFAULT "/etc/silo.conf"
#ifdef APPLE_HYB
#define APPLE_TYPE_DEFAULT "TEXT"
#define APPLE_CREATOR_DEFAULT "unix"
#endif /* APPLE_HYB */
#ifdef __QNX__
#define SYSTEM_ID_DEFAULT "QNX"
#endif
#ifdef __osf__
#define SYSTEM_ID_DEFAULT "OSF"
#endif
#ifdef __sun
#ifdef __SVR4
#define SYSTEM_ID_DEFAULT "Solaris"
#else
#define SYSTEM_ID_DEFAULT "SunOS"
#endif
#endif
#ifdef __hpux
#define SYSTEM_ID_DEFAULT "HP-UX"
#endif
#ifdef __sgi
#define SYSTEM_ID_DEFAULT "SGI"
#endif
#if defined(_IBMR2) || defined(_AIX)
#define SYSTEM_ID_DEFAULT "AIX"
#endif
#if defined(_WIN) || defined(__CYGWIN32__) || defined(__CYGWIN__)
#define SYSTEM_ID_DEFAULT "Win32"
#endif /* _WIN */
#ifdef __EMX__
#define SYSTEM_ID_DEFAULT "OS/2"
#endif
#ifdef __FreeBSD__
#define SYSTEM_ID_DEFAULT "FreeBSD"
#endif
#ifdef __DragonFly__
#define SYSTEM_ID_DEFAULT "DragonFly"
#endif
#ifdef __NetBSD__
#define SYSTEM_ID_DEFAULT "NetBSD"
#endif
#ifdef __OpenBSD__
#define SYSTEM_ID_DEFAULT "OpenBSD"
#endif
#ifdef __bsdi__
#define SYSTEM_ID_DEFAULT "BSD/OS"
#endif
#ifdef __NeXT__
#define SYSTEM_ID_DEFAULT "NeXT"
#endif
#if defined(__NeXT__) && defined(__TARGET_OSNAME) && __TARGET_OSNAME == rhapsody
#undef SYSTEM_ID_DEFAULT
#define SYSTEM_ID_DEFAULT "Rhapsody"
#endif
#if defined(__APPLE__) && defined(__MACH__)
#undef SYSTEM_ID_DEFAULT
#define SYSTEM_ID_DEFAULT "Mac OS X"
#endif
#ifdef __BEOS__
#define SYSTEM_ID_DEFAULT "BeOS"
#endif
#ifdef __OS2
#define SYSTEM_ID_DEFAULT "OS/2"
#endif
#ifdef VMS
#define SYSTEM_ID_DEFAULT "VMS"
#endif
#ifdef OPENSERVER
#define SYSTEM_ID_DEFAULT "SCO-OPENSERVER"
#endif
#ifdef UNIXWARE
#define SYSTEM_ID_DEFAULT "SCO-UNIXWARE"
#endif
#ifdef linux
#define SYSTEM_ID_DEFAULT "LINUX"
#endif
#ifdef __DJGPP__
#define SYSTEM_ID_DEFAULT "DOS"
#endif
#ifndef SYSTEM_ID_DEFAULT
#define SYSTEM_ID_DEFAULT "UNIX"
#endif
|