blob: 3a6fcc01a31e55b011dbe53b1650535337393716 [file] [log] [blame]
Daniel Veillardacf7ff02001-10-29 20:21:47 +00001$! BUILD_LIBXML.COM
2$!
Daniel Veillardd33cfbf2001-11-13 15:24:36 +00003$! Build the LIBXML library
Daniel Veillardacf7ff02001-10-29 20:21:47 +00004$!
Daniel Veillardd33cfbf2001-11-13 15:24:36 +00005$! Arguments:
6$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +00007$! "DEBUG" - build everything in debug
Daniel Veillardd33cfbf2001-11-13 15:24:36 +00008$!
Daniel Veillard24d87d92008-03-19 15:43:00 +00009$! This procedure creates an object library XML_LIBDIR:LIBXML.OLB directory.
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000010$! After the library is built, you can link LIBXML routines into
Daniel Veillard24d87d92008-03-19 15:43:00 +000011$! your code with the command
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000012$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +000013$! $ LINK your_modules,XML_LIBDIR:LIBXML.OLB/LIBRARY
Daniel Veillard24d87d92008-03-19 15:43:00 +000014$!
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000015$! Change History
16$! --------------
17$! Command file author : John A Fotheringham (jaf@jafsoft.com)
Daniel Veillard24d87d92008-03-19 15:43:00 +000018$! 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 (craigberry@mac.com)
Daniel Veillard9339b742003-10-15 08:18:00 +000023$! more new module additions
24$! : 25 April 2003 Craig Berry (craigberry@mac.com)
Daniel Veillard1c960272003-04-25 23:12:22 +000025$! added xmlreader.c and relaxng.c to source list
26$! : 28 September 2002 Craig Berry (craigberry@mac.com)
Daniel Veillarde645e8c2002-10-22 17:35:37 +000027$! updated to work with current sources
28$! miscellaneous enhancements to build process
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000029$!
Daniel Veillardacf7ff02001-10-29 20:21:47 +000030$!- configuration -------------------------------------------------------------
31$!
32$!- compile command. If p1="nowarn" suppress the expected warning types
33$!
Jacob (Jouk) Jansen4d041a22013-12-17 15:32:57 +080034$ cc_opts = "/nowarn/DEF=HAVE_CONFIG_H/NAMES=(as_is,SHORTENED)/FLOAT=IEEE/IEEE_MODE=DENORM_RESULTS/INCLUDE=xml_srcdir"
Daniel Veillarde645e8c2002-10-22 17:35:37 +000035$!
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000036$ if p1.eqs."DEBUG" .or. p2.eqs."DEBUG"
37$ then
38$ debug = "Y"
Daniel Veillarde645e8c2002-10-22 17:35:37 +000039$ cc_command = "CC''cc_opts'/DEBUG/NOOPTIMIZE/LIST/SHOW=ALL"
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000040$ else
41$ debug = "N"
Daniel Veillarde645e8c2002-10-22 17:35:37 +000042$ cc_command = "CC''cc_opts'"
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000043$ endif
Daniel Veillardacf7ff02001-10-29 20:21:47 +000044$!
45$!- list of sources to be built into the LIBXML library. Compare this list
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000046$! to the definition of "libxml2_la_SOURCES" in the file MAKEFILE.IN.
47$! Currently this definition includes the list WITH_TRIO_SOURCES_TRUE
Daniel Veillardacf7ff02001-10-29 20:21:47 +000048$!
Jacob (Jouk) Jansen4d041a22013-12-17 15:32:57 +080049$ 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"
Daniel Veillard4edd3ed2004-09-20 20:03:01 +000051$ 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"
Daniel Veillard9339b742003-10-15 08:18:00 +000055$ sources = sources + " triostr.c trio.c xmlreader.c relaxng.c dict.c SAX2.c"
Daniel Veillard4edd3ed2004-09-20 20:03:01 +000056$ sources = sources + " xmlwriter.c legacy.c chvalid.c pattern.c xmlsave.c"
Jacob (Jouk) Jansen4d041a22013-12-17 15:32:57 +080057$ sources = sources + " schematron.c xmlmodule.c buf.c"
Daniel Veillardacf7ff02001-10-29 20:21:47 +000058$!
59$!- list of main modules to compile and link. Compare this list to the
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000060$! definition of bin_PROGRAMS in MAKEFILE.IN
Daniel Veillardacf7ff02001-10-29 20:21:47 +000061$!
62$ bin_progs = "xmllint xmlcatalog"
63$!
64$!- list of test modules to compile and link. Compare this list to the
65$! definition of noinst_PROGRAMS in MAKEFILE.
66$!
Daniel Veillard9339b742003-10-15 08:18:00 +000067$ noinst_PROGRAMS = "testSchemas testRelax testSAX testHTML testXPath testURI " -
68 + "testThreads testC14N testAutomata testRegexp testReader"
Daniel Veillardacf7ff02001-10-29 20:21:47 +000069$!
70$!- set up build logicals -----------------------------------------------------\
71$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +000072$!
73$!- start from where the procedure is in case it's submitted in batch ----------\
74$!
75$ whoami = f$parse(f$environment("PROCEDURE"),,,,"NO_CONCEAL")
76$ procdir = f$parse(whoami,,,"DEVICE") + f$parse(whoami,,,"DIRECTORY")
77$ set default 'procdir'
78$!
79$ if f$trnlnm("XML_LIBDIR").eqs.""
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000080$ then
Daniel Veillarde645e8c2002-10-22 17:35:37 +000081$ if f$search("[-]lib.dir") .eqs. ""
82$ then
83$ create/directory/log [-.lib]
84$ endif
85$ xml_libdir = f$parse("[-.lib]",,,"DEVICE") + f$parse("[-.lib]",,,"DIRECTORY")
86$ define/process XML_LIBDIR 'xml_libdir'
87$ write sys$output "Defining XML_LIBDIR as """ + f$trnlnm("XML_LIBDIR") + """
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000088$ endif
89$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +000090$ if f$trnlnm("XML_SRCDIR").eqs.""
Daniel Veillardacf7ff02001-10-29 20:21:47 +000091$ then
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000092$ globfile = f$search("[-...]globals.c")
Daniel Veillardacf7ff02001-10-29 20:21:47 +000093$ if globfile.eqs.""
94$ then
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000095$ write sys$output "Can't locate globals.c. You need to manually define a XML_SRCDIR logical"
96$ exit
Daniel Veillardacf7ff02001-10-29 20:21:47 +000097$ else
Daniel Veillarde645e8c2002-10-22 17:35:37 +000098$ srcdir = f$parse(globfile,,,"DEVICE") + f$parse(globfile,,,"DIRECTORY")
99$ define/process XML_SRCDIR "''srcdir'"
100$ write sys$output "Defining XML_SRCDIR as ""''srcdir'"""
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000101$ endif
102$ endif
103$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000104$ copy/log config.vms xml_srcdir:config.h
Jacob (Jouk) Jansen4d041a22013-12-17 15:32:57 +0800105$! copy/log xmlversion.h [-.include.libxml]
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000106$!
Daniel Veillard24d87d92008-03-19 15:43:00 +0000107$ if f$trnlnm("libxml").eqs.""
108$ then
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000109$ globfile = f$search("[-...]globals.h")
110$ if globfile.eqs.""
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000111$ then
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000112$ write sys$output "Can't locate globals.h. You need to manually define a LIBXML logical"
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000113$ exit
114$ else
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000115$ includedir = f$parse(globfile,,,"DEVICE") + f$parse(globfile,,,"DIRECTORY")
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000116$ define/process libxml "''includedir'"
117$ write sys$output "Defining libxml as ""''includedir'"""
118$ endif
119$ endif
120$!
121$!- set up error handling (such as it is) -------------------------------------
122$!
123$ exit_status = 1
124$ saved_default = f$environment("default")
Daniel Veillard24d87d92008-03-19 15:43:00 +0000125$ on error then goto ERROR_OUT
126$ on control_y then goto ERROR_OUT
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000127$!
Daniel Veillard24d87d92008-03-19 15:43:00 +0000128$!- move to the source directory and create any necessary subdirs and the
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000129$! object library
130$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000131$ set default xml_srcdir
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000132$ if f$search("DEBUG.DIR").eqs."" then create/dir [.DEBUG]
Daniel Veillard24d87d92008-03-19 15:43:00 +0000133$ if f$search("XML_LIBDIR:LIBXML.OLB").eqs.""
134$ then
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000135$ write sys$output "Creating new object library XML_LIBDIR:LIBXML.OLB"
136$ library/create XML_LIBDIR:LIBXML.OLB
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000137$ endif
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000138$!
139$ goto start_here
140$ start_here: ! move this line to debug/rerun parts of this command file
141$!
142$!- compile modules into the library ------------------------------------------
143$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000144$ lib_command = "LIBRARY/REPLACE/LOG XML_LIBDIR:LIBXML.OLB"
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000145$ link_command = ""
146$!
147$ write sys$output ""
148$ write sys$output "Building modules into the LIBXML object library"
149$ write sys$output ""
150$!
151$ s_no = 0
152$ sources = f$edit(sources,"COMPRESS")
153$!
154$ source_loop:
155$!
156$ next_source = f$element (S_no," ",sources)
157$ if next_source.nes."" .and. next_source.nes." "
158$ then
159$!
Daniel Veillard24d87d92008-03-19 15:43:00 +0000160$ on error then goto ERROR_OUT
161$ on control_y then goto ERROR_OUT
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000162$ call build 'next_source'
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000163$ s_no = s_no + 1
164$ goto source_loop
165$!
166$ endif
167$!
168$!- now build self-test programs ----------------------------------------------
169$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000170$! these programs are built as ordinary modules into XML_LIBDIR:LIBXML.OLB. Here they
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000171$! are built a second time with /DEFINE=(STANDALONE) in which case a main()
172$! is also compiled into the module
Daniel Veillard24d87d92008-03-19 15:43:00 +0000173$
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000174$ lib_command = ""
175$ link_command = "LINK"
176$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000177$ library/compress XML_LIBDIR:LIBXML.OLB
178$ purge XML_LIBDIR:LIBXML.OLB
179$!
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000180$ write sys$output ""
181$ write sys$output "Building STANDALONE self-test programs"
182$ write sys$output ""
183$!
184$ call build NANOFTP.C /DEFINE=(STANDALONE)
185$ call build NANOHTTP.C /DEFINE=(STANDALONE)
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000186$ call build TRIONAN.C /DEFINE=(STANDALONE)
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000187$!
188$!- now build main and test programs ------------------------------------------
189$!
190$!
191$ lib_command = ""
192$ link_command = "LINK"
193$!
194$ write sys$output ""
195$ write sys$output "Building main programs and test programs"
196$ write sys$output ""
197$!
198$ p_no = 0
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000199$ all_progs = bin_progs + " " + noinst_PROGRAMS
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000200$ all_progs = f$edit(all_progs,"COMPRESS")
201$!
202$ prog_loop:
203$!
204$ next_prog = f$element (p_no," ",all_progs)
205$ if next_prog.nes."" .and. next_prog.nes." "
206$ then
207$!
Daniel Veillard24d87d92008-03-19 15:43:00 +0000208$ on error then goto ERROR_OUT
209$ on control_y then goto ERROR_OUT
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000210$ call build 'next_prog'.c
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000211$ p_no = p_no + 1
212$ goto prog_loop
213$!
214$ endif
215$!
216$!- Th-th-th-th-th-that's all folks! ------------------------------------------
217$!
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000218$ goto exit_here ! move this line to avoid parts of this command file
Daniel Veillard24d87d92008-03-19 15:43:00 +0000219$ exit_here:
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000220$!
Daniel Veillard24d87d92008-03-19 15:43:00 +0000221$ exit
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000222$ goto exit_out
223$!
224$!
225$EXIT_OUT:
226$!
227$ purge/nolog [.debug]
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000228$ set default 'saved_default
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000229$ exit 'exit_status
230$!
231$
232$ERROR_OUT:
233$ exit_status = $status
234$ write sys$output "''f$message(exit_status)'"
235$ goto EXIT_OUT
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
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000242$ name = f$parse(source_file,,,"NAME")
243$ object_file = f$parse("[.debug].OBJ",name,,,"SYNTAX_ONLY")
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000244$!
245$!- compile
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000246$!
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000247$ write sys$output "''cc_command'''p2'/object=''object_file' ''source_file'"
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000248$ cc_command'p2' /object='object_file 'source_file'
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000249$!
250$!- insert into library if command defined
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000251$!
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000252$ if lib_command.nes."" then lib_command 'object_file'
253$!
254$!- link module if command defined
Daniel Veillard24d87d92008-03-19 15:43:00 +0000255$ if link_command.nes.""
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000256$ then
Daniel Veillardd33cfbf2001-11-13 15:24:36 +0000257$ opts = ""
258$ if debug then opts = "/DEBUG"
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000259$ write sys$output "''link_command'''opts' ''object_file',XML_LIBDIR:libxml.olb/library"
Jacob (Jouk) Jansen4d041a22013-12-17 15:32:57 +0800260$ if f$search( "sys$library:iconv.olb" ) .eqs. ""
261$ then
262$ link_command'opts' 'object_file',-
Daniel Veillarde645e8c2002-10-22 17:35:37 +0000263 XML_LIBDIR:libxml.olb/library
Jacob (Jouk) Jansen4d041a22013-12-17 15:32:57 +0800264$ else
265$ link_command'opts' 'object_file',-
266 XML_LIBDIR:libxml.olb/library,sys$library:iconv/lib
267$ endif
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000268$ endif
269$!
270$EXIT_BUILD:
271$ exit $status
272$!
273$endsubroutine