summaryrefslogtreecommitdiff
path: root/xmlwf
Commit message (Collapse)AuthorAgeFilesLines
* Updated Windows project files to import properly in Visual Studio 2010.kwaclaw2012-02-211-2/+2
|
* Fix for issue # 2895533.kwaclaw2009-11-121-0/+2
|
* Removed unnecessary linker dependencies.kwaclaw2009-01-191-4/+4
|
* Fix for issue #2517938: xmlwf should return a non-zero code for parsing errors.kwaclaw2009-01-191-1/+3
|
* Removed need for amiga_main().ssolie2007-06-032-8/+3
|
* Changed output directories so that all binaries end up in the same location.kwaclaw2007-05-031-6/+6
|
* No more search for (back)slashes in the string "STDIN".kwaclaw2007-04-301-5/+16
| | | | Optimized code with regards to use of path delimters on different platforms.
* The Watcom compiler defines __LINUX__ and not __linux__ for cross compilation.kwaclaw2006-08-052-4/+2
|
* Applied patrch #1523242 - support for Open Watcom 1.5.kwaclaw2006-08-054-7/+19
|
* Fix for bug #1513566: filemap() in readfilemap.c doesn't handle zero lengthkwaclaw2006-06-282-0/+15
| | | | files, and the same issue applies to filemap() in unixfilemap.c
* Added a comment about processFile giving problems on files larger than INT_MAX.kwaclaw2006-04-141-2/+3
|
* Casting away some integer conversion warnings that should not pose a problem.kwaclaw2006-04-141-10/+10
|
* Removed newly added include directives of configuration header files.kwaclaw2005-12-251-10/+0
| | | | They seem to be unnecessary.
* * Added integer modifier macro to support 64-bit integers in printf.kwaclaw2005-12-251-6/+10
| | | | | * Made include directives of configuration header files sync'ed with xmlparse.c.
* * Added integer modifier macro to support 64-bit integers in printf.kwaclaw2005-12-251-1/+12
| | | | * Made include directives to be in sync with xmlparse.c.
* Added integer modifier macro to support 64-bit integers in printf.kwaclaw2005-12-251-0/+10
|
* *** empty log message ***ssolie2005-12-242-0/+13
|
* Fix for bug #1023646.kwaclaw2005-04-191-2/+2
|
* convert MSVC project and workspace files to binary files that must alwaysfdrake2004-09-301-139/+139
| | | | | | use the DOS/Windows CR-LF line end convention (closes SF bug #1007088)
* Added type casts necessary for compiling as C++ file (at least under VC++).kwaclaw2004-08-102-29/+30
|
* patch from Shard (neoni dot net) to support BeOSfdrake2004-04-301-0/+4
|
* Make it possible to avoid the import of expat_config.h. This makes itfdrake2003-10-161-0/+2
| | | | | easier to compile Expat without the autoconf support. This closes SF patch #458907.
* Deal with issue discussed in SF patch #820946: Expat doesn't handlefdrake2003-10-151-31/+31
| | | | | | | | | | | | | | | | | | | | | | the use of modified default calling conventions in client code. To deal with this issue and generally clean up the mass of macros being used to support bits of the machinery, two new macros are being added: - XMLCALL, which expands to whatever is needed to nail down the calling convention for all calls across the library boundary. This must match the convention used for the system's malloc() implementation. - XMLIMPORT, defined to be whatever magic is needed to mark an entry point as imported from a dynamically loaded module (.dll, .so, .sl, whatever). These macros are used to define the XMLPARSEAPI macro already being used to define the API entry points. In addition, XMLCALL is used to define the types of callback functions, and all example code uses this explicitly in both the distributed applications and the documentation.
* Fixed memory leak.kwaclaw2002-11-201-0/+2
|
* Elaborate the XML_GetFeatureList() API a bit, and add additional infofdrake2002-09-051-6/+8
| | | | | that may be needed by a hughly flexible client. (Or at least used to check that the Expat that it links to matches client expectations.)
* Revise the XML_GetFeatureList() function signature so that we maintain thefdrake2002-08-291-5/+5
| | | | | | | behavior that all strings returned from Expat are affected by the XML_UNICODE and XML_UNICODE_WCHAR_T feature-test macros, and ensure that an application that needs to determine what type of character data is returned can do so with reasonable ease.
* One consequence of using an incomplete struct to define XML_Parser isfdrake2002-08-271-31/+44
| | | | | that compilers can be more picky about type compatibility. Tighten up the function signatures to reduce spurious warnings.
* showVersion(): Use the new XML_GetFeatureList() function to list thefdrake2002-08-261-1/+13
| | | | | compile-time features as part of the "xmlwf -v" output.
* It doesn't look like this has been used in a long time; we might befdrake2002-08-231-46/+70
| | | | | | | | | able to get rid of it. - Arranged function & method signatures like they are elsewhere in the sources. - Shortened some long lines. - #include expat.h instead of xmlparse.h.
* Applied patch #598944: Static library builds for VC++kwaclaw2002-08-231-5/+7
|
* showVersion(): Only check for \ in the path on Windows, the same asfdrake2002-08-221-1/+5
| | | | in tmain().
* Define specific return values for the XML_Parse*() functions, and use themfdrake2002-08-021-2/+2
| | | | | to test all XML_Parse*() return values in the test and sample code. This is binary-compatible with previous Expat 1.95.x releases.
* Added COMPILED_FROM_DSP flag to make it compile under VC++.kwaclaw2002-07-041-2/+2
|
* De-tabify files that missed the de-tabify step.fdrake2002-07-012-4/+4
|
* De-tabify; minor code-style consistency changes.fdrake2002-07-0112-274/+277
|
* Include unistd.h when HAVE_UNISTD_H is defined, not _POSIX_SOURCE.fdrake2002-06-131-1/+6
| | | | | | | This requires that expat_config.h or winconfig.h has been included. Using unistd.h avoids warnings about close() and read() not being defined on some platforms. This closes SF bug #563184.
* Using "0" instead of "NULL" is insane, and leads to unmaintainable code.fdrake2002-05-171-2/+2
|
* Add casts to suppress a couple of warnings from MSVC with warning level 4.fdrake2002-05-151-1/+1
|
* Check in SF patch #488196: Make xmlwf read from standard input.fdrake2002-04-192-139/+170
| | | | | | | This modifies the patch for style (slightly). The style of these files is also slightly modified in an attempt to create more consistency. (But that mostly swamps the feature patch.)
* Wrap some long lines.fdrake2002-04-191-15/+32
|
* Remove files that are no longer used.fdrake2002-04-163-1021/+0
| | | | This closes SF patch #488187.
* * Switch to a single, top-level Makefile (simplification, consistency)gstein2001-12-072-36/+1
| | | | | | | | | | | * use libtool to compile/link all programs * remove */Makefile.in and remove them from configure * remove autom4te.cache after running autoconf * remove .o from the FILEMAP logic in configure and the Make system; provides more flexibility in the Makefile to use it * for VPATH builds: create the build subdirs by running "make mkdir-init" from the configure script * adjust .cvsignore files to account for presence of .libs now
* Add a -v option to cause xmlwf to report the version of Expat (hence thefdrake2001-12-051-0/+16
| | | | version of xmlwf).
* Include header to avoid compiler warnings. Part of SF patch #465018.fdrake2001-11-091-0/+2
|
* Define & use $(srcdir). Part of SF patch #465018.fdrake2001-11-091-1/+3
|
* Clean out some unused bits from the makefiles. Remove some of the recursiongstein2001-08-231-37/+1
| | | | and just do it from the top-level instead.
* Make sure SHELL is properly set from the configure script.fdrake2001-08-101-0/+2
| | | | This closes SF bug #448560.
* Remove some bogus preprocessor definitions.fdrake2001-07-271-2/+2
|
* Don't use the program database in MSVC. The others got this right.fdrake2001-07-271-1/+1
|
* Update the lib and xmlwf project files to be part of the larger workspace.fdrake2001-07-271-2/+3
|