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