VirtualBox

source: vbox/trunk/src/libs/libxml2-2.12.6/vms/build_libxml.com@ 105132

最後變更 在這個檔案從105132是 104106,由 vboxsync 提交於 12 月 前

libxml2-2.9.14: Applied and adjusted our libxml2 changes to 2.9.14. bugref:10640

  • 屬性 svn:executable 設為 *
檔案大小: 8.4 KB
 
1$! BUILD_LIBXML.COM
2$!
3$! Build the LIBXML library
4$!
5$! Arguments:
6$!
7$! "DEBUG" - build everything in debug
8$!
9$! This procedure creates an object library XML_LIBDIR:LIBXML.OLB directory.
10$! After the library is built, you can link LIBXML routines into
11$! your code with the command
12$!
13$! $ LINK your_modules,XML_LIBDIR:LIBXML.OLB/LIBRARY
14$!
15$! Change History
16$! --------------
17$! Command file author : John A Fotheringham ([email protected])
18$! Update history : 19 March 2008 Tycho Hilhorst
19$! - added module schematron.c (prevent xmllint errors)
20$! - added /DEF and /INCLUDE options to cc_opts to tell
21$! config.h is available, and where to find it
22$! : 13 October 2003 Craig Berry ([email protected])
23$! more new module additions
24$! : 25 April 2003 Craig Berry ([email protected])
25$! added xmlreader.c and relaxng.c to source list
26$! : 28 September 2002 Craig Berry ([email protected])
27$! updated to work with current sources
28$! miscellaneous enhancements to build process
29$!
30$!- configuration -------------------------------------------------------------
31$!
32$!- compile command. If p1="nowarn" suppress the expected warning types
33$!
34$ cc_opts = "/nowarn/DEF=HAVE_CONFIG_H/NAMES=(as_is,SHORTENED)/FLOAT=IEEE/IEEE_MODE=DENORM_RESULTS/INCLUDE=xml_srcdir"
35$!
36$ if p1.eqs."DEBUG" .or. p2.eqs."DEBUG"
37$ then
38$ debug = "Y"
39$ cc_command = "CC''cc_opts'/DEBUG/NOOPTIMIZE/LIST/SHOW=ALL"
40$ else
41$ debug = "N"
42$ cc_command = "CC''cc_opts'"
43$ endif
44$!
45$!- list of sources to be built into the LIBXML library. Compare this list
46$! to the definition of "libxml2_la_SOURCES" in the file MAKEFILE.IN.
47$! Currently this definition includes the list WITH_TRIO_SOURCES_TRUE
48$!
49$ sources = "parser.c SAX.c entities.c encoding.c error.c parserInternals.c"
50$ sources = sources + " tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c"
51$ sources = sources + " valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c"
52$ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c"
53$ sources = sources + " catalog.c globals.c threads.c c14n.c xmlstring.c"
54$ sources = sources + " xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c"
55$ sources = sources + " triostr.c trio.c xmlreader.c relaxng.c dict.c SAX2.c"
56$ sources = sources + " xmlwriter.c legacy.c chvalid.c pattern.c xmlsave.c"
57$ sources = sources + " schematron.c xmlmodule.c buf.c"
58$!
59$!- list of main modules to compile and link. Compare this list to the
60$! definition of bin_PROGRAMS in MAKEFILE.IN
61$!
62$ bin_progs = "xmllint xmlcatalog"
63$!
64$!- list of test modules to compile and link. Compare this list to the
65$! definition of check_PROGRAMS in MAKEFILE.
66$!
67$ check_PROGRAMS = "testThreads testAutomata"
68$!
69$!- set up build logicals -----------------------------------------------------\
70$!
71$!
72$!- start from where the procedure is in case it's submitted in batch ----------\
73$!
74$ whoami = f$parse(f$environment("PROCEDURE"),,,,"NO_CONCEAL")
75$ procdir = f$parse(whoami,,,"DEVICE") + f$parse(whoami,,,"DIRECTORY")
76$ set default 'procdir'
77$!
78$ if f$trnlnm("XML_LIBDIR").eqs.""
79$ then
80$ if f$search("[-]lib.dir") .eqs. ""
81$ then
82$ create/directory/log [-.lib]
83$ endif
84$ xml_libdir = f$parse("[-.lib]",,,"DEVICE") + f$parse("[-.lib]",,,"DIRECTORY")
85$ define/process XML_LIBDIR 'xml_libdir'
86$ write sys$output "Defining XML_LIBDIR as """ + f$trnlnm("XML_LIBDIR") + """
87$ endif
88$!
89$ if f$trnlnm("XML_SRCDIR").eqs.""
90$ then
91$ globfile = f$search("[-...]globals.c")
92$ if globfile.eqs.""
93$ then
94$ write sys$output "Can't locate globals.c. You need to manually define a XML_SRCDIR logical"
95$ exit
96$ else
97$ srcdir = f$parse(globfile,,,"DEVICE") + f$parse(globfile,,,"DIRECTORY")
98$ define/process XML_SRCDIR "''srcdir'"
99$ write sys$output "Defining XML_SRCDIR as ""''srcdir'"""
100$ endif
101$ endif
102$!
103$ copy/log config.vms xml_srcdir:config.h
104$! copy/log xmlversion.h [-.include.libxml]
105$!
106$ if f$trnlnm("libxml").eqs.""
107$ then
108$ globfile = f$search("[-...]globals.h")
109$ if globfile.eqs.""
110$ then
111$ write sys$output "Can't locate globals.h. You need to manually define a LIBXML logical"
112$ exit
113$ else
114$ includedir = f$parse(globfile,,,"DEVICE") + f$parse(globfile,,,"DIRECTORY")
115$ define/process libxml "''includedir'"
116$ write sys$output "Defining libxml as ""''includedir'"""
117$ endif
118$ endif
119$!
120$!- set up error handling (such as it is) -------------------------------------
121$!
122$ exit_status = 1
123$ saved_default = f$environment("default")
124$ on error then goto ERROR_OUT
125$ on control_y then goto ERROR_OUT
126$!
127$!- move to the source directory and create any necessary subdirs and the
128$! object library
129$!
130$ set default xml_srcdir
131$ if f$search("DEBUG.DIR").eqs."" then create/dir [.DEBUG]
132$ if f$search("XML_LIBDIR:LIBXML.OLB").eqs.""
133$ then
134$ write sys$output "Creating new object library XML_LIBDIR:LIBXML.OLB"
135$ library/create XML_LIBDIR:LIBXML.OLB
136$ endif
137$!
138$ goto start_here
139$ start_here: ! move this line to debug/rerun parts of this command file
140$!
141$!- compile modules into the library ------------------------------------------
142$!
143$ lib_command = "LIBRARY/REPLACE/LOG XML_LIBDIR:LIBXML.OLB"
144$ link_command = ""
145$!
146$ write sys$output ""
147$ write sys$output "Building modules into the LIBXML object library"
148$ write sys$output ""
149$!
150$ s_no = 0
151$ sources = f$edit(sources,"COMPRESS")
152$!
153$ source_loop:
154$!
155$ next_source = f$element (S_no," ",sources)
156$ if next_source.nes."" .and. next_source.nes." "
157$ then
158$!
159$ on error then goto ERROR_OUT
160$ on control_y then goto ERROR_OUT
161$ call build 'next_source'
162$ s_no = s_no + 1
163$ goto source_loop
164$!
165$ endif
166$!
167$!- now build self-test programs ----------------------------------------------
168$!
169$! these programs are built as ordinary modules into XML_LIBDIR:LIBXML.OLB. Here they
170$! are built a second time with /DEFINE=(STANDALONE) in which case a main()
171$! is also compiled into the module
172$
173$ lib_command = ""
174$ link_command = "LINK"
175$!
176$ library/compress XML_LIBDIR:LIBXML.OLB
177$ purge XML_LIBDIR:LIBXML.OLB
178$!
179$ write sys$output ""
180$ write sys$output "Building STANDALONE self-test programs"
181$ write sys$output ""
182$!
183$ call build NANOFTP.C /DEFINE=(STANDALONE)
184$ call build NANOHTTP.C /DEFINE=(STANDALONE)
185$ call build TRIONAN.C /DEFINE=(STANDALONE)
186$!
187$!- now build main and test programs ------------------------------------------
188$!
189$!
190$ lib_command = ""
191$ link_command = "LINK"
192$!
193$ write sys$output ""
194$ write sys$output "Building main programs and test programs"
195$ write sys$output ""
196$!
197$ p_no = 0
198$ all_progs = bin_progs + " " + check_PROGRAMS
199$ all_progs = f$edit(all_progs,"COMPRESS")
200$!
201$ prog_loop:
202$!
203$ next_prog = f$element (p_no," ",all_progs)
204$ if next_prog.nes."" .and. next_prog.nes." "
205$ then
206$!
207$ on error then goto ERROR_OUT
208$ on control_y then goto ERROR_OUT
209$ call build 'next_prog'.c
210$ p_no = p_no + 1
211$ goto prog_loop
212$!
213$ endif
214$!
215$!- Th-th-th-th-th-that's all folks! ------------------------------------------
216$!
217$ goto exit_here ! move this line to avoid parts of this command file
218$ exit_here:
219$!
220$ exit
221$ goto exit_out
222$!
223$!
224$EXIT_OUT:
225$!
226$ purge/nolog [.debug]
227$ set default 'saved_default
228$ exit 'exit_status
229$!
230$
231$ERROR_OUT:
232$ exit_status = $status
233$ write sys$output "''f$message(exit_status)'"
234$ goto EXIT_OUT
235$!
236
237$!- the BUILD subroutine. Compile then insert into library or link as required
238$!
239$BUILD: subroutine
240$ on warning then goto EXIT_BUILD
241$ source_file = p1
242$ name = f$parse(source_file,,,"NAME")
243$ object_file = f$parse("[.debug].OBJ",name,,,"SYNTAX_ONLY")
244$!
245$!- compile
246$!
247$ write sys$output "''cc_command'''p2'/object=''object_file' ''source_file'"
248$ cc_command'p2' /object='object_file 'source_file'
249$!
250$!- insert into library if command defined
251$!
252$ if lib_command.nes."" then lib_command 'object_file'
253$!
254$!- link module if command defined
255$ if link_command.nes.""
256$ then
257$ opts = ""
258$ if debug then opts = "/DEBUG"
259$ write sys$output "''link_command'''opts' ''object_file',XML_LIBDIR:libxml.olb/library"
260$ if f$search( "sys$library:iconv.olb" ) .eqs. ""
261$ then
262$ link_command'opts' 'object_file',-
263 XML_LIBDIR:libxml.olb/library
264$ else
265$ link_command'opts' 'object_file',-
266 XML_LIBDIR:libxml.olb/library,sys$library:iconv/lib
267$ endif
268$ endif
269$!
270$EXIT_BUILD:
271$ exit $status
272$!
273$endsubroutine
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette