remove ALL old build systems
This commit is contained in:
parent
43cdfd9c65
commit
935f775a47
37
Makefile
37
Makefile
|
@ -1,37 +0,0 @@
|
||||||
HTML2MARKDOWN=html2text
|
|
||||||
GIT=git
|
|
||||||
GITFLAGS=
|
|
||||||
DOXYGEN=doxygen
|
|
||||||
DOXYGENFLAGS=
|
|
||||||
|
|
||||||
.PHONEY: api-docs
|
|
||||||
all: bin/tidy
|
|
||||||
|
|
||||||
bin/tidy:
|
|
||||||
$(MAKE) -C build/gmake
|
|
||||||
$(MAKE) -C build/gmake doc
|
|
||||||
|
|
||||||
.FORCE:
|
|
||||||
# dummy target to force other targets to always get remade
|
|
||||||
|
|
||||||
README.md: README.html .FORCE
|
|
||||||
$(HTML2MARKDOWN) $(HTML2MARKDOWNFLAGS) $< > $@
|
|
||||||
|
|
||||||
src/version.h: .FORCE
|
|
||||||
$(GIT) $(GITFLAGS) log --pretty=format:'static const char TY_(release_date)[] = "https://github.com/w3c/tidy-html5/tree/%h";' -n 1 > $@
|
|
||||||
|
|
||||||
quickref.html: htmldoc/quickref.html .FORCE
|
|
||||||
cp $< $@
|
|
||||||
|
|
||||||
api-docs:
|
|
||||||
$(DOXYGEN) $(DOXYGENFLAGS) htmldoc/doxygen.cfg
|
|
||||||
|
|
||||||
install:
|
|
||||||
sudo $(MAKE) install -C build/gmake
|
|
||||||
|
|
||||||
version: all src/version.h README.md quickref.html
|
|
||||||
|
|
||||||
clean:
|
|
||||||
$(MAKE) clean -C build/gmake
|
|
||||||
$(RM) test/testall.log
|
|
||||||
$(RM) -r test/tmp
|
|
|
@ -1,231 +0,0 @@
|
||||||
# Makefile - for tidy - HTML parser and pretty printer
|
|
||||||
#
|
|
||||||
# Copyright (c) 1998-2008 World Wide Web Consortium
|
|
||||||
# (Massachusetts Institute of Technology, European Research
|
|
||||||
# Consortium for Informatics and Mathematics, Keio University).
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributing Author(s):
|
|
||||||
#
|
|
||||||
# Dave Raggett <dsr@w3.org>
|
|
||||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
|
||||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
|
||||||
#
|
|
||||||
# The contributing author(s) would like to thank all those who
|
|
||||||
# helped with testing, bug fixes, and patience. This wouldn't
|
|
||||||
# have been possible without all of you.
|
|
||||||
#
|
|
||||||
# COPYRIGHT NOTICE:
|
|
||||||
#
|
|
||||||
# This software and documentation is provided "as is," and
|
|
||||||
# the copyright holders and contributing author(s) make no
|
|
||||||
# representations or warranties, express or implied, including
|
|
||||||
# but not limited to, warranties of merchantability or fitness
|
|
||||||
# for any particular purpose or that the use of the software or
|
|
||||||
# documentation will not infringe any third party patents,
|
|
||||||
# copyrights, trademarks or other rights.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) will not be
|
|
||||||
# liable for any direct, indirect, special or consequential damages
|
|
||||||
# arising out of any use of the software or documentation, even if
|
|
||||||
# advised of the possibility of such damage.
|
|
||||||
#
|
|
||||||
# Permission is hereby granted to use, copy, modify, and distribute
|
|
||||||
# this source code, or portions hereof, documentation and executables,
|
|
||||||
# for any purpose, without fee, subject to the following restrictions:
|
|
||||||
#
|
|
||||||
# 1. The origin of this source code must not be misrepresented.
|
|
||||||
# 2. Altered versions must be plainly marked as such and must
|
|
||||||
# not be misrepresented as being the original source.
|
|
||||||
# 3. This Copyright notice may not be removed or altered from any
|
|
||||||
# source or altered source distribution.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) specifically
|
|
||||||
# permit, without fee, and encourage the use of this source code
|
|
||||||
# as a component for supporting the Hypertext Markup Language in
|
|
||||||
# commercial products. If you use this source code in a product,
|
|
||||||
# acknowledgment is not required but would be appreciated.
|
|
||||||
#
|
|
||||||
|
|
||||||
SHELL=/bin/sh
|
|
||||||
|
|
||||||
PROJECT=tidy
|
|
||||||
|
|
||||||
# Installation variables. Spaces OK, only dir create and file copy operations.
|
|
||||||
runinst_prefix=/usr/local
|
|
||||||
devinst_prefix=/usr/local
|
|
||||||
|
|
||||||
bininst = ${runinst_prefix}/bin
|
|
||||||
libinst = ${devinst_prefix}/lib
|
|
||||||
incinst = ${devinst_prefix}/include/$(PROJECT)
|
|
||||||
maninst = ${devinst_prefix}/man
|
|
||||||
|
|
||||||
# Internal variables. - No spaces allowed: libtool chokes on spaces in directory names.
|
|
||||||
TOPDIR = ../..
|
|
||||||
INCDIR = ${TOPDIR}/include
|
|
||||||
APPDIR = ${TOPDIR}/console
|
|
||||||
SRCDIR = ${TOPDIR}/src
|
|
||||||
OBJDIR = ./obj
|
|
||||||
LIBDIR = ${TOPDIR}/lib
|
|
||||||
BINDIR = ${TOPDIR}/bin
|
|
||||||
DOCDIR = ${TOPDIR}/htmldoc
|
|
||||||
|
|
||||||
# Note about shared library and exported symbols:
|
|
||||||
# With gcc, one can control the exported symbols by either using
|
|
||||||
# "-fvisibility=hidden -DTIDY_EXPORT='__attribute__((visibility("default")))'"
|
|
||||||
# or using a linker map (see GNU ld "--version-script").
|
|
||||||
|
|
||||||
# Lookup based on hash table can be disabled with
|
|
||||||
# "-DELEMENT_HASH_LOOKUP=0 -DATTRIBUTE_HASH_LOOKUP=0"
|
|
||||||
|
|
||||||
# Memory mapped i/o can be disabled with -DSUPPORT_POSIX_MAPPED_FILES=0
|
|
||||||
#
|
|
||||||
|
|
||||||
# CFLAGS etc..
|
|
||||||
# For optimised builds, flags such as "-O2" should be added and -D_DEBUG=1
|
|
||||||
# disabled.
|
|
||||||
CC= gcc
|
|
||||||
CFLAGS= -g -pedantic -Wall -I $(INCDIR)
|
|
||||||
# flags only supported with gcc 3.x
|
|
||||||
CFLAGS += -Wunused-parameter
|
|
||||||
|
|
||||||
OTHERCFLAGS=
|
|
||||||
OTHERCFLAGS+= -D_DEBUG=1 -D_MSC_VER=1400
|
|
||||||
# OTHERCFLAGS+= -fvisibility=hidden -DTIDY_EXPORT='__attribute__((visibility("default")))'
|
|
||||||
ifdef SUPPORT_UTF16_ENCODINGS
|
|
||||||
CFLAGS += -DSUPPORT_UTF16_ENCODINGS=$(SUPPORT_UTF16_ENCODINGS)
|
|
||||||
endif
|
|
||||||
ifdef SUPPORT_ASIAN_ENCODINGS
|
|
||||||
CFLAGS += -DSUPPORT_ASIAN_ENCODINGS=$(SUPPORT_ASIAN_ENCODINGS)
|
|
||||||
endif
|
|
||||||
ifdef SUPPORT_ACCESSIBILITY_CHECKS
|
|
||||||
CFLAGS += -DSUPPORT_ACCESSIBILITY_CHECKS=$(SUPPORT_ACCESSIBILITY_CHECKS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
DEBUGFLAGS=-g
|
|
||||||
ifdef DMALLOC
|
|
||||||
DEBUGFLAGS += -DDMALLOC
|
|
||||||
endif
|
|
||||||
|
|
||||||
LIBS=
|
|
||||||
DEBUGLIBS=-ldmalloc
|
|
||||||
|
|
||||||
# Tidy lib related variables
|
|
||||||
TIDY_MAJOR = 1
|
|
||||||
TIDY_MINOR = 0
|
|
||||||
|
|
||||||
# This will come from autoconf again
|
|
||||||
LIBPREFIX = lib
|
|
||||||
LIBSUFFIX = .a
|
|
||||||
OBJSUF = .o
|
|
||||||
|
|
||||||
LIBRARY = $(LIBDIR)/$(LIBPREFIX)$(PROJECT)$(LIBSUFFIX)
|
|
||||||
AR=ar -r
|
|
||||||
|
|
||||||
XSLTPROC = xsltproc
|
|
||||||
|
|
||||||
EXES = $(BINDIR)/$(PROJECT) $(BINDIR)/tab2space
|
|
||||||
|
|
||||||
DOCS = $(DOCDIR)/quickref.html $(DOCDIR)/tidy.1
|
|
||||||
|
|
||||||
CONFIGXML = $(DOCDIR)/tidy-config.xml
|
|
||||||
HELPXML = $(DOCDIR)/tidy-help.xml
|
|
||||||
|
|
||||||
OBJFILES=\
|
|
||||||
$(OBJDIR)/access$(OBJSUF) $(OBJDIR)/attrs$(OBJSUF) $(OBJDIR)/istack$(OBJSUF) \
|
|
||||||
$(OBJDIR)/parser$(OBJSUF) $(OBJDIR)/tags$(OBJSUF) $(OBJDIR)/entities$(OBJSUF) \
|
|
||||||
$(OBJDIR)/lexer$(OBJSUF) $(OBJDIR)/pprint$(OBJSUF) $(OBJDIR)/clean$(OBJSUF) \
|
|
||||||
$(OBJDIR)/localize$(OBJSUF) $(OBJDIR)/config$(OBJSUF) $(OBJDIR)/alloc$(OBJSUF) \
|
|
||||||
$(OBJDIR)/attrask$(OBJSUF) $(OBJDIR)/attrdict$(OBJSUF) $(OBJDIR)/attrget$(OBJSUF) \
|
|
||||||
$(OBJDIR)/buffio$(OBJSUF) $(OBJDIR)/fileio$(OBJSUF) $(OBJDIR)/streamio$(OBJSUF) \
|
|
||||||
$(OBJDIR)/tagask$(OBJSUF) $(OBJDIR)/tmbstr$(OBJSUF) $(OBJDIR)/utf8$(OBJSUF) \
|
|
||||||
$(OBJDIR)/tidylib$(OBJSUF) $(OBJDIR)/mappedio$(OBJSUF) $(OBJDIR)/gdoc$(OBJSUF)
|
|
||||||
|
|
||||||
CFILES= \
|
|
||||||
$(SRCDIR)/access.c $(SRCDIR)/attrs.c $(SRCDIR)/istack.c \
|
|
||||||
$(SRCDIR)/parser.c $(SRCDIR)/tags.c $(SRCDIR)/entities.c \
|
|
||||||
$(SRCDIR)/lexer.c $(SRCDIR)/pprint.c $(SRCDIR)/clean.c \
|
|
||||||
$(SRCDIR)/localize.c $(SRCDIR)/config.c $(SRCDIR)/alloc.c \
|
|
||||||
$(SRCDIR)/attrask.c $(SRCDIR)/attrdict.c $(SRCDIR)/attrget.c \
|
|
||||||
$(SRCDIR)/buffio.c $(SRCDIR)/fileio.c $(SRCDIR)/streamio.c \
|
|
||||||
$(SRCDIR)/tagask.c $(SRCDIR)/tmbstr.c $(SRCDIR)/utf8.c \
|
|
||||||
$(SRCDIR)/tidylib.c $(SRCDIR)/mappedio.c $(SRCDIR)/gdoc.c
|
|
||||||
|
|
||||||
HFILES= $(INCDIR)/platform.h $(INCDIR)/tidy.h $(INCDIR)/tidyenum.h \
|
|
||||||
$(INCDIR)/buffio.h
|
|
||||||
|
|
||||||
LIBHFILES= \
|
|
||||||
$(SRCDIR)/access.h $(SRCDIR)/attrs.h $(SRCDIR)/attrdict.h \
|
|
||||||
$(SRCDIR)/clean.h $(SRCDIR)/config.h $(SRCDIR)/entities.h \
|
|
||||||
$(SRCDIR)/fileio.h $(SRCDIR)/forward.h $(SRCDIR)/lexer.h \
|
|
||||||
$(SRCDIR)/mappedio.h $(SRCDIR)/message.h $(SRCDIR)/parser.h \
|
|
||||||
$(SRCDIR)/pprint.h $(SRCDIR)/streamio.h $(SRCDIR)/tags.h \
|
|
||||||
$(SRCDIR)/tmbstr.h $(SRCDIR)/utf8.h $(SRCDIR)/tidy-int.h \
|
|
||||||
$(SRCDIR)/gdoc.h $(SRCDIR)/version.h
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
all: $(LIBRARY) $(EXES)
|
|
||||||
|
|
||||||
doc: $(DOCS)
|
|
||||||
|
|
||||||
$(LIBRARY): $(OBJFILES)
|
|
||||||
if [ ! -d $(LIBDIR) ]; then mkdir $(LIBDIR); fi
|
|
||||||
$(AR) $@ $(OBJFILES)
|
|
||||||
ifdef RANLIB
|
|
||||||
$(RANLIB) $@
|
|
||||||
endif
|
|
||||||
|
|
||||||
$(OBJDIR)/%$(OBJSUF): $(SRCDIR)/%.c $(HFILES) $(LIBHFILES) Makefile
|
|
||||||
if [ ! -d $(OBJDIR) ]; then mkdir $(OBJDIR); fi
|
|
||||||
$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ -c $<
|
|
||||||
|
|
||||||
$(BINDIR)/$(PROJECT): $(APPDIR)/tidy.c $(HFILES) $(LIBRARY)
|
|
||||||
if [ ! -d $(BINDIR) ]; then mkdir $(BINDIR); fi
|
|
||||||
$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ $(APPDIR)/tidy.c -I$(INCDIR) $(LIBRARY)
|
|
||||||
|
|
||||||
$(BINDIR)/tab2space: $(APPDIR)/tab2space.c
|
|
||||||
if [ ! -d $(BINDIR) ]; then mkdir $(BINDIR); fi
|
|
||||||
$(CC) $(CFLAGS) $(OTHERCFLAGS) -o $@ $(APPDIR)/tab2space.c $(LIBS)
|
|
||||||
|
|
||||||
$(HELPXML): $(BINDIR)/$(PROJECT)
|
|
||||||
$(BINDIR)/$(PROJECT) -xml-help > $@
|
|
||||||
|
|
||||||
$(CONFIGXML): $(BINDIR)/$(PROJECT)
|
|
||||||
$(BINDIR)/$(PROJECT) -xml-config > $@
|
|
||||||
|
|
||||||
$(DOCDIR)/quickref.html: $(DOCDIR)/quickref-html.xsl $(CONFIGXML)
|
|
||||||
$(XSLTPROC) -o $@ $(DOCDIR)/quickref-html.xsl $(CONFIGXML)
|
|
||||||
|
|
||||||
$(DOCDIR)/tidy.1: $(DOCDIR)/tidy1.xsl $(HELPXML) $(CONFIGXML)
|
|
||||||
$(XSLTPROC) -o $@ $(DOCDIR)/tidy1.xsl $(HELPXML)
|
|
||||||
|
|
||||||
debug:
|
|
||||||
@$(MAKE) CFLAGS='$(CFLAGS) $(DEBUGFLAGS)' LIBS='$(LIBS) $(DEBUGLIBS)' all
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f $(OBJFILES) $(EXES) $(LIBRARY) $(DOCS) $(HELPXML) $(CONFIGXML) $(OBJDIR)/*.lo
|
|
||||||
rm -rf $(BINDIR)/tidy.dSYM $(BINDIR)/tab2space.dSYM
|
|
||||||
if [ -d $(OBJDIR)/.libs ]; then rmdir $(OBJDIR)/.libs; fi
|
|
||||||
if [ -d $(LIBDIR)/.libs ]; then rmdir $(LIBDIR)/.libs; fi
|
|
||||||
if [ "$(OBJDIR)" != "$(TOPDIR)" -a -d $(OBJDIR) ]; then rmdir $(OBJDIR); fi
|
|
||||||
if [ "$(LIBDIR)" != "$(TOPDIR)" -a -d $(LIBDIR) ]; then rmdir $(LIBDIR); fi
|
|
||||||
if [ "$(BINDIR)" != "$(TOPDIR)" -a -d $(BINDIR) ]; then rmdir $(BINDIR); fi
|
|
||||||
|
|
||||||
installhdrs: $(HFILES)
|
|
||||||
if [ ! -d "$(incinst)" ]; then mkdir -p "$(incinst)"; fi
|
|
||||||
cp -f $(HFILES) "$(incinst)/"
|
|
||||||
|
|
||||||
installib: $(LIBRARY)
|
|
||||||
if [ ! -d "$(libinst)" ]; then mkdir -p "$(libinst)"; fi
|
|
||||||
cp -f $(LIBRARY) "$(libinst)/"
|
|
||||||
|
|
||||||
installexes: $(EXES)
|
|
||||||
if [ ! -d "$(bininst)" ]; then mkdir -p "$(bininst)"; fi
|
|
||||||
cp -f $(EXES) "$(bininst)/"
|
|
||||||
|
|
||||||
installmanpage: $(DOCDIR)/tidy.1
|
|
||||||
if [ ! -d "$(maninst)/man1" ]; then mkdir -p "$(maninst)/man1"; fi;
|
|
||||||
cp -f $(DOCDIR)/tidy.1 "$(maninst)/man1/tidy.1";
|
|
||||||
|
|
||||||
install: installhdrs installib installexes installmanpage
|
|
|
@ -1,16 +0,0 @@
|
||||||
This Makefile works on most Unix platforms. Although, by default, it
|
|
||||||
runs gcc, by setting the CC macro, it runs with many C compilers.
|
|
||||||
|
|
||||||
You can override the default build options by setting environment
|
|
||||||
variables of the same name as the corresponding macro: DMALLOC,
|
|
||||||
SUPPORT_ACCESSIBILITY_CHECKS, SUPPORT_UTF16_ENCODINGS and
|
|
||||||
SUPPORT_ASIAN_ENCODINGS.
|
|
||||||
|
|
||||||
$ DMALLOC=1 gmake
|
|
||||||
|
|
||||||
Note this Makefile will only run with gmake. But you should be able
|
|
||||||
to easily locate a pre-built executable for your platform.
|
|
||||||
|
|
||||||
To customize the location of output files or install locations, just
|
|
||||||
edit the Makefile. There are variable definitions for just about
|
|
||||||
everything, so you shouldn't have to alter the build rules.
|
|
|
@ -1,57 +0,0 @@
|
||||||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
|
||||||
#
|
|
||||||
# Copyright (c) 1998-2003 World Wide Web Consortium
|
|
||||||
# (Massachusetts Institute of Technology, European Research
|
|
||||||
# Consortium for Informatics and Mathematics, Keio University).
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributing Author(s):
|
|
||||||
#
|
|
||||||
# Dave Raggett <dsr@w3.org>
|
|
||||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
|
||||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
|
||||||
#
|
|
||||||
# The contributing author(s) would like to thank all those who
|
|
||||||
# helped with testing, bug fixes, and patience. This wouldn't
|
|
||||||
# have been possible without all of you.
|
|
||||||
#
|
|
||||||
# COPYRIGHT NOTICE:
|
|
||||||
#
|
|
||||||
# This software and documentation is provided "as is," and
|
|
||||||
# the copyright holders and contributing author(s) make no
|
|
||||||
# representations or warranties, express or implied, including
|
|
||||||
# but not limited to, warranties of merchantability or fitness
|
|
||||||
# for any particular purpose or that the use of the software or
|
|
||||||
# documentation will not infringe any third party patents,
|
|
||||||
# copyrights, trademarks or other rights.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) will not be
|
|
||||||
# liable for any direct, indirect, special or consequential damages
|
|
||||||
# arising out of any use of the software or documentation, even if
|
|
||||||
# advised of the possibility of such damage.
|
|
||||||
#
|
|
||||||
# Permission is hereby granted to use, copy, modify, and distribute
|
|
||||||
# this source code, or portions hereof, documentation and executables,
|
|
||||||
# for any purpose, without fee, subject to the following restrictions:
|
|
||||||
#
|
|
||||||
# 1. The origin of this source code must not be misrepresented.
|
|
||||||
# 2. Altered versions must be plainly marked as such and must
|
|
||||||
# not be misrepresented as being the original source.
|
|
||||||
# 3. This Copyright notice may not be removed or altered from any
|
|
||||||
# source or altered source distribution.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) specifically
|
|
||||||
# permit, without fee, and encourage the use of this source code
|
|
||||||
# as a component for supporting the Hypertext Markup Language in
|
|
||||||
# commercial products. If you use this source code in a product,
|
|
||||||
# acknowledgment is not required but would be appreciated.
|
|
||||||
#
|
|
||||||
|
|
||||||
SUBDIRS = src console include
|
|
||||||
|
|
||||||
#TODO: Pull man page from htmldoc
|
|
||||||
#installmanpage:
|
|
||||||
# if [ -f "$(TOPDIR)/htmldoc/man_page.txt" ] ; then \
|
|
||||||
# if [ ! -d "$(maninst)/man1" ]; then mkdir -p "$(maninst)/man1"; fi; \
|
|
||||||
# cp -f $(TOPDIR)/htmldoc/man_page.txt "$(maninst)/man1/tidy.1"; \
|
|
||||||
# fi
|
|
|
@ -1,127 +0,0 @@
|
||||||
# configure.in - HTML TidyLib GNU autoconf input file
|
|
||||||
#
|
|
||||||
# Copyright (c) 2003-2004 World Wide Web Consortium
|
|
||||||
# (Massachusetts Institute of Technology, European Research
|
|
||||||
# Consortium for Informatics and Mathematics, Keio University).
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
|
|
||||||
AC_INIT([include/tidy.h])
|
|
||||||
|
|
||||||
# Making releases:
|
|
||||||
#
|
|
||||||
# TIDY_MICRO_VERSION += 1;
|
|
||||||
# TIDY_INTERFACE_AGE += 1;
|
|
||||||
# TIDY_BINARY_AGE += 1;
|
|
||||||
#
|
|
||||||
# if any functions have been added, set TIDY_INTERFACE_AGE to 0.
|
|
||||||
# if backwards compatibility has been broken,
|
|
||||||
# set TIDY_BINARY_AGE and TIDY_INTERFACE_AGE to 0.
|
|
||||||
#
|
|
||||||
TIDY_MAJOR_VERSION=0
|
|
||||||
TIDY_MINOR_VERSION=99
|
|
||||||
TIDY_MICRO_VERSION=0
|
|
||||||
TIDY_INTERFACE_AGE=0
|
|
||||||
TIDY_BINARY_AGE=0
|
|
||||||
|
|
||||||
LIBTIDY_VERSION=$TIDY_MAJOR_VERSION.$TIDY_MINOR_VERSION.$TIDY_MICRO_VERSION
|
|
||||||
|
|
||||||
AC_SUBST(LIBTIDY_VERSION)
|
|
||||||
|
|
||||||
# libtool versioning
|
|
||||||
#
|
|
||||||
LT_RELEASE=$TIDY_MAJOR_VERSION.$TIDY_MINOR_VERSION
|
|
||||||
LT_CURRENT=`expr $TIDY_MICRO_VERSION - $TIDY_INTERFACE_AGE`
|
|
||||||
LT_REVISION=$TIDY_INTERFACE_AGE
|
|
||||||
LT_AGE=`expr $TIDY_BINARY_AGE - $TIDY_INTERFACE_AGE`
|
|
||||||
|
|
||||||
AC_SUBST(LT_RELEASE)
|
|
||||||
AC_SUBST(LT_CURRENT)
|
|
||||||
AC_SUBST(LT_REVISION)
|
|
||||||
AC_SUBST(LT_AGE)
|
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(tidy,$LIBTIDY_VERSION)
|
|
||||||
|
|
||||||
# Checks for programs.
|
|
||||||
|
|
||||||
# =============================================
|
|
||||||
# AC_PROG_CC has a habit of adding -g to CFLAGS
|
|
||||||
#
|
|
||||||
save_cflags="$CFLAGS"
|
|
||||||
|
|
||||||
AC_PROG_CC
|
|
||||||
if test "x$GCC" = "xyes"; then
|
|
||||||
WARNING_CFLAGS="-Wall"
|
|
||||||
else
|
|
||||||
WARNING_CFLAGS=""
|
|
||||||
fi
|
|
||||||
AC_SUBST(WARNING_CFLAGS)
|
|
||||||
|
|
||||||
debug_build=no
|
|
||||||
AC_ARG_ENABLE(debug,[ --enable-debug add -g (instead of -O2) to CFLAGS],[
|
|
||||||
if test "x$enableval" = "xyes"; then
|
|
||||||
debug_build=yes
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
if test $debug_build = yes; then
|
|
||||||
CFLAGS="$save_cflags -g"
|
|
||||||
else
|
|
||||||
CFLAGS="-O2 $save_cflags"
|
|
||||||
fi
|
|
||||||
#
|
|
||||||
# =============================================
|
|
||||||
|
|
||||||
AC_PROG_CPP
|
|
||||||
AC_PROG_CXX
|
|
||||||
AC_PROG_INSTALL
|
|
||||||
AC_PROG_LN_S
|
|
||||||
AC_PROG_LIBTOOL
|
|
||||||
AC_PROG_MAKE_SET
|
|
||||||
|
|
||||||
support_access=yes
|
|
||||||
AC_ARG_ENABLE(access,[ --enable-access support accessibility checks],[
|
|
||||||
if test "x$enableval" = "xno"; then
|
|
||||||
support_access=no
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
if test $support_access = yes; then
|
|
||||||
AC_DEFINE(SUPPORT_ACCESSIBILITY_CHECKS,1)
|
|
||||||
else
|
|
||||||
AC_DEFINE(SUPPORT_ACCESSIBILITY_CHECKS,0)
|
|
||||||
fi
|
|
||||||
|
|
||||||
support_utf16=yes
|
|
||||||
AC_ARG_ENABLE(utf16,[ --enable-utf16 support UTF-16 encoding],[
|
|
||||||
if test "x$enableval" = "xno"; then
|
|
||||||
support_utf16=no
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
if test $support_utf16 = yes; then
|
|
||||||
AC_DEFINE(SUPPORT_UTF16_ENCODINGS,1)
|
|
||||||
else
|
|
||||||
AC_DEFINE(SUPPORT_UTF16_ENCODINGS,0)
|
|
||||||
fi
|
|
||||||
|
|
||||||
support_asian=yes
|
|
||||||
AC_ARG_ENABLE(asian,[ --enable-asian support asian encodings],[
|
|
||||||
if test "x$enableval" = "xno"; then
|
|
||||||
support_asian=no
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
if test $support_asian = yes; then
|
|
||||||
AC_DEFINE(SUPPORT_ASIAN_ENCODINGS,1)
|
|
||||||
else
|
|
||||||
AC_DEFINE(SUPPORT_ASIAN_ENCODINGS,0)
|
|
||||||
fi
|
|
||||||
|
|
||||||
# TODO: this defines "WITH_DMALLOC" but tidy expects "DMALLOC"
|
|
||||||
# need to do: #if defined(DMALLOC) || defined(WITH_DMALLOC)
|
|
||||||
#
|
|
||||||
AM_WITH_DMALLOC
|
|
||||||
|
|
||||||
AC_OUTPUT([
|
|
||||||
Makefile
|
|
||||||
src/Makefile
|
|
||||||
console/Makefile
|
|
||||||
include/Makefile
|
|
||||||
])
|
|
|
@ -1,58 +0,0 @@
|
||||||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
|
||||||
#
|
|
||||||
# Copyright (c) 1998-2008 World Wide Web Consortium
|
|
||||||
# (Massachusetts Institute of Technology, European Research
|
|
||||||
# Consortium for Informatics and Mathematics, Keio University).
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributing Author(s):
|
|
||||||
#
|
|
||||||
# Dave Raggett <dsr@w3.org>
|
|
||||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
|
||||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
|
||||||
#
|
|
||||||
# The contributing author(s) would like to thank all those who
|
|
||||||
# helped with testing, bug fixes, and patience. This wouldn't
|
|
||||||
# have been possible without all of you.
|
|
||||||
#
|
|
||||||
# COPYRIGHT NOTICE:
|
|
||||||
#
|
|
||||||
# This software and documentation is provided "as is," and
|
|
||||||
# the copyright holders and contributing author(s) make no
|
|
||||||
# representations or warranties, express or implied, including
|
|
||||||
# but not limited to, warranties of merchantability or fitness
|
|
||||||
# for any particular purpose or that the use of the software or
|
|
||||||
# documentation will not infringe any third party patents,
|
|
||||||
# copyrights, trademarks or other rights.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) will not be
|
|
||||||
# liable for any direct, indirect, special or consequential damages
|
|
||||||
# arising out of any use of the software or documentation, even if
|
|
||||||
# advised of the possibility of such damage.
|
|
||||||
#
|
|
||||||
# Permission is hereby granted to use, copy, modify, and distribute
|
|
||||||
# this source code, or portions hereof, documentation and executables,
|
|
||||||
# for any purpose, without fee, subject to the following restrictions:
|
|
||||||
#
|
|
||||||
# 1. The origin of this source code must not be misrepresented.
|
|
||||||
# 2. Altered versions must be plainly marked as such and must
|
|
||||||
# not be misrepresented as being the original source.
|
|
||||||
# 3. This Copyright notice may not be removed or altered from any
|
|
||||||
# source or altered source distribution.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) specifically
|
|
||||||
# permit, without fee, and encourage the use of this source code
|
|
||||||
# as a component for supporting the Hypertext Markup Language in
|
|
||||||
# commercial products. If you use this source code in a product,
|
|
||||||
# acknowledgment is not required but would be appreciated.
|
|
||||||
#
|
|
||||||
|
|
||||||
AM_CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir)/include
|
|
||||||
|
|
||||||
bin_PROGRAMS = tidy tab2space
|
|
||||||
|
|
||||||
tidy_LDADD = $(top_builddir)/src/libtidy.la
|
|
||||||
|
|
||||||
tab2space_LDADD = $(top_builddir)/src/libtidy.la
|
|
|
@ -1,55 +0,0 @@
|
||||||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
|
||||||
#
|
|
||||||
# Copyright (c) 1998-2006 World Wide Web Consortium
|
|
||||||
# (Massachusetts Institute of Technology, European Research
|
|
||||||
# Consortium for Informatics and Mathematics, Keio University).
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributing Author(s):
|
|
||||||
#
|
|
||||||
# Dave Raggett <dsr@w3.org>
|
|
||||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
|
||||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
|
||||||
#
|
|
||||||
# The contributing author(s) would like to thank all those who
|
|
||||||
# helped with testing, bug fixes, and patience. This wouldn't
|
|
||||||
# have been possible without all of you.
|
|
||||||
#
|
|
||||||
# COPYRIGHT NOTICE:
|
|
||||||
#
|
|
||||||
# This software and documentation is provided "as is," and
|
|
||||||
# the copyright holders and contributing author(s) make no
|
|
||||||
# representations or warranties, express or implied, including
|
|
||||||
# but not limited to, warranties of merchantability or fitness
|
|
||||||
# for any particular purpose or that the use of the software or
|
|
||||||
# documentation will not infringe any third party patents,
|
|
||||||
# copyrights, trademarks or other rights.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) will not be
|
|
||||||
# liable for any direct, indirect, special or consequential damages
|
|
||||||
# arising out of any use of the software or documentation, even if
|
|
||||||
# advised of the possibility of such damage.
|
|
||||||
#
|
|
||||||
# Permission is hereby granted to use, copy, modify, and distribute
|
|
||||||
# this source code, or portions hereof, documentation and executables,
|
|
||||||
# for any purpose, without fee, subject to the following restrictions:
|
|
||||||
#
|
|
||||||
# 1. The origin of this source code must not be misrepresented.
|
|
||||||
# 2. Altered versions must be plainly marked as such and must
|
|
||||||
# not be misrepresented as being the original source.
|
|
||||||
# 3. This Copyright notice may not be removed or altered from any
|
|
||||||
# source or altered source distribution.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) specifically
|
|
||||||
# permit, without fee, and encourage the use of this source code
|
|
||||||
# as a component for supporting the Hypertext Markup Language in
|
|
||||||
# commercial products. If you use this source code in a product,
|
|
||||||
# acknowledgment is not required but would be appreciated.
|
|
||||||
#
|
|
||||||
|
|
||||||
#tidyincdir = $(includedir)/tidy
|
|
||||||
tidyincdir = $(includedir)
|
|
||||||
|
|
||||||
tidyinc_HEADERS = \
|
|
||||||
platform.h \
|
|
||||||
tidy.h tidyenum.h buffio.h
|
|
|
@ -1,24 +0,0 @@
|
||||||
To use GNU "Auto" tools (AutoConf/AutoMake/LibTool), run
|
|
||||||
/bin/sh build/gnuauto/setup.sh from the top-level Tidy
|
|
||||||
directory. This script will copy the appropriate
|
|
||||||
Makefile.am files into each source directory, along with
|
|
||||||
configure.in.
|
|
||||||
|
|
||||||
If the script was successful you should now be able
|
|
||||||
to build in the usual way:
|
|
||||||
|
|
||||||
$ ./configure --prefix=/usr
|
|
||||||
$ make
|
|
||||||
$ make install
|
|
||||||
|
|
||||||
to get a list of configure options type: ./configure --help
|
|
||||||
|
|
||||||
Alternatively, you should be able to build outside of the source
|
|
||||||
tree. e.g.:
|
|
||||||
|
|
||||||
$ mkdir ../build-tidy
|
|
||||||
$ cd ../build-tidy
|
|
||||||
$ ../tidy/configure --prefix=/usr
|
|
||||||
$ make
|
|
||||||
$ make install
|
|
||||||
|
|
|
@ -1,56 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
if ! test -f build/gnuauto/setup.sh; then
|
|
||||||
|
|
||||||
echo ""
|
|
||||||
echo "* * * Execute this script from the top source directory, e.g.:"
|
|
||||||
echo ""
|
|
||||||
echo " $ /bin/sh build/gnuauto/setup.sh"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
for i in libtoolize glibtoolize
|
|
||||||
do
|
|
||||||
( $i --version) < /dev/null > /dev/null 2>&1 &&
|
|
||||||
LIBTOOLIZE=$i
|
|
||||||
done
|
|
||||||
if test -z "$LIBTOOLIZE" ; then
|
|
||||||
echo "You need libtoolize to continue"
|
|
||||||
exit 1;
|
|
||||||
fi
|
|
||||||
top_srcdir=`pwd`
|
|
||||||
echo ""
|
|
||||||
echo "Generating the build system in $top_srcdir"
|
|
||||||
echo ""
|
|
||||||
echo "copying files into place: cd build/gnuauto && cp -R -f * $top_srcdir"
|
|
||||||
(cd build/gnuauto && cp -R -f * $top_srcdir)
|
|
||||||
echo "running: $LIBTOOLIZE --force --copy"
|
|
||||||
$LIBTOOLIZE --force --copy
|
|
||||||
echo "running: aclocal"
|
|
||||||
aclocal
|
|
||||||
echo "running: automake -a -c --foreign"
|
|
||||||
automake -a -c --foreign
|
|
||||||
echo "running: autoconf"
|
|
||||||
autoconf
|
|
||||||
echo ""
|
|
||||||
echo "If the above commands were successful you should now be able"
|
|
||||||
echo "to build in the usual way:"
|
|
||||||
echo ""
|
|
||||||
echo " $ ./configure --prefix=/usr"
|
|
||||||
echo " $ make"
|
|
||||||
echo " $ make install"
|
|
||||||
echo ""
|
|
||||||
echo "to get a list of configure options type: ./configure --help"
|
|
||||||
echo ""
|
|
||||||
echo "Alternatively, you should be able to build outside of the source"
|
|
||||||
echo "tree. e.g.:"
|
|
||||||
echo ""
|
|
||||||
echo " $ mkdir ../build-tidy"
|
|
||||||
echo " $ cd ../build-tidy"
|
|
||||||
echo " $ ../tidy/configure --prefix=/usr"
|
|
||||||
echo " $ make"
|
|
||||||
echo " $ make install"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
fi
|
|
|
@ -1,75 +0,0 @@
|
||||||
# Makefile [Makefile.am] - for tidy - HTML parser and pretty printer
|
|
||||||
#
|
|
||||||
# Copyright (c) 1998-2008 World Wide Web Consortium
|
|
||||||
# (Massachusetts Institute of Technology, European Research
|
|
||||||
# Consortium for Informatics and Mathematics, Keio University).
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributing Author(s):
|
|
||||||
#
|
|
||||||
# Dave Raggett <dsr@w3.org>
|
|
||||||
# Terry Teague <terry_teague@users.sourceforge.net>
|
|
||||||
# Pradeep Padala<ppadala@users.sourceforge.net>
|
|
||||||
#
|
|
||||||
# The contributing author(s) would like to thank all those who
|
|
||||||
# helped with testing, bug fixes, and patience. This wouldn't
|
|
||||||
# have been possible without all of you.
|
|
||||||
#
|
|
||||||
# COPYRIGHT NOTICE:
|
|
||||||
#
|
|
||||||
# This software and documentation is provided "as is," and
|
|
||||||
# the copyright holders and contributing author(s) make no
|
|
||||||
# representations or warranties, express or implied, including
|
|
||||||
# but not limited to, warranties of merchantability or fitness
|
|
||||||
# for any particular purpose or that the use of the software or
|
|
||||||
# documentation will not infringe any third party patents,
|
|
||||||
# copyrights, trademarks or other rights.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) will not be
|
|
||||||
# liable for any direct, indirect, special or consequential damages
|
|
||||||
# arising out of any use of the software or documentation, even if
|
|
||||||
# advised of the possibility of such damage.
|
|
||||||
#
|
|
||||||
# Permission is hereby granted to use, copy, modify, and distribute
|
|
||||||
# this source code, or portions hereof, documentation and executables,
|
|
||||||
# for any purpose, without fee, subject to the following restrictions:
|
|
||||||
#
|
|
||||||
# 1. The origin of this source code must not be misrepresented.
|
|
||||||
# 2. Altered versions must be plainly marked as such and must
|
|
||||||
# not be misrepresented as being the original source.
|
|
||||||
# 3. This Copyright notice may not be removed or altered from any
|
|
||||||
# source or altered source distribution.
|
|
||||||
#
|
|
||||||
# The copyright holders and contributing author(s) specifically
|
|
||||||
# permit, without fee, and encourage the use of this source code
|
|
||||||
# as a component for supporting the Hypertext Markup Language in
|
|
||||||
# commercial products. If you use this source code in a product,
|
|
||||||
# acknowledgment is not required but would be appreciated.
|
|
||||||
#
|
|
||||||
|
|
||||||
AM_CFLAGS = @CFLAGS@ @WARNING_CFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir)/include
|
|
||||||
|
|
||||||
lib_LTLIBRARIES = libtidy.la
|
|
||||||
|
|
||||||
libtidy_la_SOURCES = \
|
|
||||||
access.c attrs.c istack.c parser.c \
|
|
||||||
tags.c entities.c lexer.c pprint.c \
|
|
||||||
clean.c localize.c config.c alloc.c \
|
|
||||||
attrask.c attrdict.c attrget.c buffio.c \
|
|
||||||
fileio.c streamio.c tagask.c tmbstr.c \
|
|
||||||
utf8.c tidylib.c mappedio.c gdoc.c
|
|
||||||
|
|
||||||
libtidy_la_LDFLAGS = \
|
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
||||||
-release $(LT_RELEASE) -no-undefined -export-dynamic
|
|
||||||
|
|
||||||
HFILES = \
|
|
||||||
access.h attrdict.h attrs.h clean.h \
|
|
||||||
config.h entities.h fileio.h forward.h \
|
|
||||||
lexer.h mappedio.h message.h parser.h \
|
|
||||||
pprint.h streamio.h tags.h tmbstr.h \
|
|
||||||
utf8.h tidy-int.h version.h gdoc.h
|
|
||||||
|
|
||||||
EXTRA_DIST = $(HFILES)
|
|
|
@ -1,304 +0,0 @@
|
||||||
LIBRARY libtidy
|
|
||||||
EXPORTS
|
|
||||||
tidyCreate @1001
|
|
||||||
tidyRelease @1002
|
|
||||||
tidySetAppData @1003
|
|
||||||
tidyGetAppData @1004
|
|
||||||
tidyReleaseDate @1005
|
|
||||||
tidyStatus @1006
|
|
||||||
tidyDetectedHtmlVersion @1007
|
|
||||||
tidyDetectedXhtml @1008
|
|
||||||
tidyDetectedGenericXml @1009
|
|
||||||
tidyErrorCount @1010
|
|
||||||
tidyWarningCount @1011
|
|
||||||
tidyAccessWarningCount @1012
|
|
||||||
tidyConfigErrorCount @1013
|
|
||||||
tidyLoadConfig @1014
|
|
||||||
tidyLoadConfigEnc @1015
|
|
||||||
tidyFileExists @1016
|
|
||||||
tidySetCharEncoding @1017
|
|
||||||
tidySetInCharEncoding @1018
|
|
||||||
tidySetOutCharEncoding @1019
|
|
||||||
tidySetOptionCallback @1020
|
|
||||||
tidyOptGetIdForName @1021
|
|
||||||
tidyGetOptionList @1022
|
|
||||||
tidyGetNextOption @1023
|
|
||||||
tidyGetOption @1024
|
|
||||||
tidyGetOptionByName @1025
|
|
||||||
tidyOptGetId @1026
|
|
||||||
tidyOptGetName @1027
|
|
||||||
tidyOptGetType @1028
|
|
||||||
tidyOptIsReadOnly @1029
|
|
||||||
tidyOptGetCategory @1030
|
|
||||||
tidyOptGetDefault @1031
|
|
||||||
tidyOptGetDefaultInt @1032
|
|
||||||
tidyOptGetDefaultBool @1033
|
|
||||||
tidyOptGetPickList @1034
|
|
||||||
tidyOptGetNextPick @1035
|
|
||||||
tidyOptGetValue @1036
|
|
||||||
tidyOptSetValue @1037
|
|
||||||
tidyOptParseValue @1038
|
|
||||||
tidyOptGetInt @1039
|
|
||||||
tidyOptSetInt @1040
|
|
||||||
tidyOptGetBool @1041
|
|
||||||
tidyOptSetBool @1042
|
|
||||||
tidyOptResetToDefault @1043
|
|
||||||
tidyOptResetAllToDefault @1044
|
|
||||||
tidyOptSnapshot @1045
|
|
||||||
tidyOptResetToSnapshot @1046
|
|
||||||
tidyOptDiffThanDefault @1047
|
|
||||||
tidyOptDiffThanSnapshot @1048
|
|
||||||
tidyOptCopyConfig @1049
|
|
||||||
tidyOptGetEncName @1050
|
|
||||||
tidyOptGetCurrPick @1051
|
|
||||||
tidyOptGetDeclTagList @1052
|
|
||||||
tidyOptGetNextDeclTag @1053
|
|
||||||
tidyOptGetDoc @1054
|
|
||||||
tidyOptGetDocLinksList @1055
|
|
||||||
tidyOptGetNextDocLinks @1056
|
|
||||||
tidyInitSource @1057
|
|
||||||
tidyGetByte @1058
|
|
||||||
tidyUngetByte @1059
|
|
||||||
tidyIsEOF @1060
|
|
||||||
tidyInitSink @1061
|
|
||||||
tidyPutByte @1062
|
|
||||||
tidySetReportFilter @1063
|
|
||||||
tidySetErrorFile @1064
|
|
||||||
tidySetErrorBuffer @1065
|
|
||||||
tidySetErrorSink @1066
|
|
||||||
tidySetMallocCall @1067
|
|
||||||
tidySetReallocCall @1068
|
|
||||||
tidySetFreeCall @1069
|
|
||||||
tidySetPanicCall @1070
|
|
||||||
tidyParseFile @1071
|
|
||||||
tidyParseStdin @1072
|
|
||||||
tidyParseString @1073
|
|
||||||
tidyParseBuffer @1074
|
|
||||||
tidyParseSource @1075
|
|
||||||
tidyCleanAndRepair @1076
|
|
||||||
tidyRunDiagnostics @1077
|
|
||||||
tidySaveFile @1078
|
|
||||||
tidySaveStdout @1079
|
|
||||||
tidySaveBuffer @1080
|
|
||||||
tidySaveString @1081
|
|
||||||
tidySaveSink @1082
|
|
||||||
tidyOptSaveFile @1083
|
|
||||||
tidyOptSaveSink @1084
|
|
||||||
tidyErrorSummary @1085
|
|
||||||
tidyGeneralInfo @1086
|
|
||||||
tidyGetRoot @1087
|
|
||||||
tidyGetHtml @1088
|
|
||||||
tidyGetHead @1089
|
|
||||||
tidyGetBody @1090
|
|
||||||
tidyGetParent @1091
|
|
||||||
tidyGetChild @1092
|
|
||||||
tidyGetNext @1093
|
|
||||||
tidyGetPrev @1094
|
|
||||||
tidyAttrFirst @1095
|
|
||||||
tidyAttrNext @1096
|
|
||||||
tidyAttrName @1097
|
|
||||||
tidyAttrValue @1098
|
|
||||||
tidyNodeGetType @1099
|
|
||||||
tidyNodeGetName @1100
|
|
||||||
tidyNodeIsText @1101
|
|
||||||
tidyNodeIsProp @1102
|
|
||||||
tidyNodeIsHeader @1103
|
|
||||||
tidyNodeHasText @1104
|
|
||||||
tidyNodeGetText @1105
|
|
||||||
tidyNodeGetId @1106
|
|
||||||
tidyNodeLine @1107
|
|
||||||
tidyNodeColumn @1108
|
|
||||||
tidyNodeIsHTML @1109
|
|
||||||
tidyNodeIsHEAD @1110
|
|
||||||
tidyNodeIsTITLE @1111
|
|
||||||
tidyNodeIsBASE @1112
|
|
||||||
tidyNodeIsMETA @1113
|
|
||||||
tidyNodeIsBODY @1114
|
|
||||||
tidyNodeIsFRAMESET @1115
|
|
||||||
tidyNodeIsFRAME @1116
|
|
||||||
tidyNodeIsIFRAME @1117
|
|
||||||
tidyNodeIsNOFRAMES @1118
|
|
||||||
tidyNodeIsHR @1119
|
|
||||||
tidyNodeIsH1 @1120
|
|
||||||
tidyNodeIsH2 @1121
|
|
||||||
tidyNodeIsPRE @1122
|
|
||||||
tidyNodeIsLISTING @1123
|
|
||||||
tidyNodeIsP @1124
|
|
||||||
tidyNodeIsUL @1125
|
|
||||||
tidyNodeIsOL @1126
|
|
||||||
tidyNodeIsDL @1127
|
|
||||||
tidyNodeIsDIR @1128
|
|
||||||
tidyNodeIsLI @1129
|
|
||||||
tidyNodeIsDT @1130
|
|
||||||
tidyNodeIsDD @1131
|
|
||||||
tidyNodeIsTABLE @1132
|
|
||||||
tidyNodeIsCAPTION @1133
|
|
||||||
tidyNodeIsTD @1134
|
|
||||||
tidyNodeIsTH @1135
|
|
||||||
tidyNodeIsTR @1136
|
|
||||||
tidyNodeIsCOL @1137
|
|
||||||
tidyNodeIsCOLGROUP @1138
|
|
||||||
tidyNodeIsBR @1139
|
|
||||||
tidyNodeIsA @1140
|
|
||||||
tidyNodeIsLINK @1141
|
|
||||||
tidyNodeIsB @1142
|
|
||||||
tidyNodeIsI @1143
|
|
||||||
tidyNodeIsSTRONG @1144
|
|
||||||
tidyNodeIsEM @1145
|
|
||||||
tidyNodeIsBIG @1146
|
|
||||||
tidyNodeIsSMALL @1147
|
|
||||||
tidyNodeIsPARAM @1148
|
|
||||||
tidyNodeIsOPTION @1149
|
|
||||||
tidyNodeIsOPTGROUP @1150
|
|
||||||
tidyNodeIsIMG @1151
|
|
||||||
tidyNodeIsMAP @1152
|
|
||||||
tidyNodeIsAREA @1153
|
|
||||||
tidyNodeIsNOBR @1154
|
|
||||||
tidyNodeIsWBR @1155
|
|
||||||
tidyNodeIsFONT @1156
|
|
||||||
tidyNodeIsLAYER @1157
|
|
||||||
tidyNodeIsSPACER @1158
|
|
||||||
tidyNodeIsCENTER @1159
|
|
||||||
tidyNodeIsSTYLE @1160
|
|
||||||
tidyNodeIsSCRIPT @1161
|
|
||||||
tidyNodeIsNOSCRIPT @1162
|
|
||||||
tidyNodeIsFORM @1163
|
|
||||||
tidyNodeIsTEXTAREA @1164
|
|
||||||
tidyNodeIsBLOCKQUOTE @1165
|
|
||||||
tidyNodeIsAPPLET @1166
|
|
||||||
tidyNodeIsOBJECT @1167
|
|
||||||
tidyNodeIsDIV @1168
|
|
||||||
tidyNodeIsSPAN @1169
|
|
||||||
tidyNodeIsINPUT @1170
|
|
||||||
tidyNodeIsQ @1171
|
|
||||||
tidyNodeIsLABEL @1172
|
|
||||||
tidyNodeIsH3 @1173
|
|
||||||
tidyNodeIsH4 @1174
|
|
||||||
tidyNodeIsH5 @1175
|
|
||||||
tidyNodeIsH6 @1176
|
|
||||||
tidyNodeIsADDRESS @1177
|
|
||||||
tidyNodeIsXMP @1178
|
|
||||||
tidyNodeIsSELECT @1179
|
|
||||||
tidyNodeIsBLINK @1180
|
|
||||||
tidyNodeIsMARQUEE @1181
|
|
||||||
tidyNodeIsEMBED @1182
|
|
||||||
tidyNodeIsBASEFONT @1183
|
|
||||||
tidyNodeIsISINDEX @1184
|
|
||||||
tidyNodeIsS @1185
|
|
||||||
tidyNodeIsSTRIKE @1186
|
|
||||||
tidyNodeIsU @1187
|
|
||||||
tidyNodeIsMENU @1188
|
|
||||||
tidyAttrGetId @1189
|
|
||||||
tidyAttrIsEvent @1190
|
|
||||||
tidyAttrIsProp @1191
|
|
||||||
tidyAttrIsHREF @1192
|
|
||||||
tidyAttrIsSRC @1193
|
|
||||||
tidyAttrIsID @1194
|
|
||||||
tidyAttrIsNAME @1195
|
|
||||||
tidyAttrIsSUMMARY @1196
|
|
||||||
tidyAttrIsALT @1197
|
|
||||||
tidyAttrIsLONGDESC @1198
|
|
||||||
tidyAttrIsUSEMAP @1199
|
|
||||||
tidyAttrIsISMAP @1200
|
|
||||||
tidyAttrIsLANGUAGE @1201
|
|
||||||
tidyAttrIsTYPE @1202
|
|
||||||
tidyAttrIsVALUE @1203
|
|
||||||
tidyAttrIsCONTENT @1204
|
|
||||||
tidyAttrIsTITLE @1205
|
|
||||||
tidyAttrIsXMLNS @1206
|
|
||||||
tidyAttrIsDATAFLD @1207
|
|
||||||
tidyAttrIsWIDTH @1208
|
|
||||||
tidyAttrIsHEIGHT @1209
|
|
||||||
tidyAttrIsFOR @1210
|
|
||||||
tidyAttrIsSELECTED @1211
|
|
||||||
tidyAttrIsCHECKED @1212
|
|
||||||
tidyAttrIsLANG @1213
|
|
||||||
tidyAttrIsTARGET @1214
|
|
||||||
tidyAttrIsHTTP_EQUIV @1215
|
|
||||||
tidyAttrIsREL @1216
|
|
||||||
tidyAttrIsOnMOUSEMOVE @1217
|
|
||||||
tidyAttrIsOnMOUSEDOWN @1218
|
|
||||||
tidyAttrIsOnMOUSEUP @1219
|
|
||||||
tidyAttrIsOnCLICK @1220
|
|
||||||
tidyAttrIsOnMOUSEOVER @1221
|
|
||||||
tidyAttrIsOnMOUSEOUT @1222
|
|
||||||
tidyAttrIsOnKEYDOWN @1223
|
|
||||||
tidyAttrIsOnKEYUP @1224
|
|
||||||
tidyAttrIsOnKEYPRESS @1225
|
|
||||||
tidyAttrIsOnFOCUS @1226
|
|
||||||
tidyAttrIsOnBLUR @1227
|
|
||||||
tidyAttrIsBGCOLOR @1228
|
|
||||||
tidyAttrIsLINK @1229
|
|
||||||
tidyAttrIsALINK @1230
|
|
||||||
tidyAttrIsVLINK @1231
|
|
||||||
tidyAttrIsTEXT @1232
|
|
||||||
tidyAttrIsSTYLE @1233
|
|
||||||
tidyAttrIsABBR @1234
|
|
||||||
tidyAttrIsCOLSPAN @1235
|
|
||||||
tidyAttrIsROWSPAN @1236
|
|
||||||
tidyAttrGetById @1237
|
|
||||||
tidyAttrGetHREF @1238
|
|
||||||
tidyAttrGetSRC @1239
|
|
||||||
tidyAttrGetID @1240
|
|
||||||
tidyAttrGetNAME @1241
|
|
||||||
tidyAttrGetSUMMARY @1242
|
|
||||||
tidyAttrGetALT @1243
|
|
||||||
tidyAttrGetLONGDESC @1244
|
|
||||||
tidyAttrGetUSEMAP @1245
|
|
||||||
tidyAttrGetISMAP @1246
|
|
||||||
tidyAttrGetLANGUAGE @1247
|
|
||||||
tidyAttrGetTYPE @1248
|
|
||||||
tidyAttrGetVALUE @1249
|
|
||||||
tidyAttrGetCONTENT @1250
|
|
||||||
tidyAttrGetTITLE @1251
|
|
||||||
tidyAttrGetXMLNS @1252
|
|
||||||
tidyAttrGetDATAFLD @1253
|
|
||||||
tidyAttrGetWIDTH @1254
|
|
||||||
tidyAttrGetHEIGHT @1255
|
|
||||||
tidyAttrGetFOR @1256
|
|
||||||
tidyAttrGetSELECTED @1257
|
|
||||||
tidyAttrGetCHECKED @1258
|
|
||||||
tidyAttrGetLANG @1259
|
|
||||||
tidyAttrGetTARGET @1260
|
|
||||||
tidyAttrGetHTTP_EQUIV @1261
|
|
||||||
tidyAttrGetREL @1262
|
|
||||||
tidyAttrGetOnMOUSEMOVE @1263
|
|
||||||
tidyAttrGetOnMOUSEDOWN @1264
|
|
||||||
tidyAttrGetOnMOUSEUP @1265
|
|
||||||
tidyAttrGetOnCLICK @1266
|
|
||||||
tidyAttrGetOnMOUSEOVER @1267
|
|
||||||
tidyAttrGetOnMOUSEOUT @1268
|
|
||||||
tidyAttrGetOnKEYDOWN @1269
|
|
||||||
tidyAttrGetOnKEYUP @1270
|
|
||||||
tidyAttrGetOnKEYPRESS @1271
|
|
||||||
tidyAttrGetOnFOCUS @1272
|
|
||||||
tidyAttrGetOnBLUR @1273
|
|
||||||
tidyAttrGetBGCOLOR @1274
|
|
||||||
tidyAttrGetLINK @1275
|
|
||||||
tidyAttrGetALINK @1276
|
|
||||||
tidyAttrGetVLINK @1277
|
|
||||||
tidyAttrGetTEXT @1278
|
|
||||||
tidyAttrGetSTYLE @1279
|
|
||||||
tidyAttrGetABBR @1280
|
|
||||||
tidyAttrGetCOLSPAN @1281
|
|
||||||
tidyAttrGetROWSPAN @1282
|
|
||||||
tidyCreateWithAllocator @1283
|
|
||||||
|
|
||||||
tidyInitInputBuffer @2001
|
|
||||||
tidyInitOutputBuffer @2002
|
|
||||||
tidyBufInit @2003
|
|
||||||
tidyBufAlloc @2004
|
|
||||||
tidyBufCheckAlloc @2005
|
|
||||||
tidyBufFree @2006
|
|
||||||
tidyBufClear @2007
|
|
||||||
tidyBufAttach @2008
|
|
||||||
tidyBufDetach @2009
|
|
||||||
tidyBufAppend @2010
|
|
||||||
tidyBufPutByte @2011
|
|
||||||
tidyBufPopByte @2012
|
|
||||||
tidyBufGetByte @2013
|
|
||||||
tidyBufEndOfInput @2014
|
|
||||||
tidyBufUngetByte @2015
|
|
||||||
tidyBufInitWithAllocator @2016
|
|
||||||
tidyBufAllocWithAllocator @2017
|
|
||||||
tidyNodeGetValue @2018
|
|
|
@ -1,94 +0,0 @@
|
||||||
# Microsoft Developer Studio Project File - Name="tidy" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
|
||||||
|
|
||||||
CFG=tidy - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "tidy.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "tidy.mak" CFG="tidy - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "tidy - Win32 Release" (based on "Win32 (x86) Console Application")
|
|
||||||
!MESSAGE "tidy - Win32 Debug" (based on "Win32 (x86) Console Application")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "tidy - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /MT /Za /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /D TIDYDLL_EXPORT=__declspec(dllimport) /D _CRT_SECURE_NO_DEPRECATE /YX /FD /c
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /profile /map /machine:I386
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "tidy - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /MTd /Za /W3 /Gm /GX /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /D TIDYDLL_EXPORT=__declspec(dllimport) /D _CRT_SECURE_NO_DEPRECATE /YX /FD /GZ /c
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "tidy - Win32 Release"
|
|
||||||
# Name "tidy - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\console\tidy.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
|
@ -1,56 +0,0 @@
|
||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "tidy"=.\tidy.dsp - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
Begin Project Dependency
|
|
||||||
Project_Dep_Name tidylib
|
|
||||||
End Project Dependency
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "tidydll"=.\tidydll.dsp - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "tidylib"=.\tidylib.dsp - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Global:
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<3>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
|
@ -1,296 +0,0 @@
|
||||||
# Microsoft Developer Studio Project File - Name="tidydll" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
|
||||||
|
|
||||||
CFG=tidydll - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "tidydll.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "tidydll.mak" CFG="tidydll - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "tidydll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE "tidydll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
MTL=midl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "tidydll - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "tidydll___Win32_Release"
|
|
||||||
# PROP BASE Intermediate_Dir "tidydll___Win32_Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "ReleaseDLL"
|
|
||||||
# PROP Intermediate_Dir "ReleaseDLL"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /YX /FD /c
|
|
||||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"ReleaseDLL/libtidy.dll"
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "tidydll - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "tidydll___Win32_Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "tidydll___Win32_Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "DebugDLL"
|
|
||||||
# PROP Intermediate_Dir "DebugDLL"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TIDYDLL_EXPORTS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /MDd /W3 /ZI /Od /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D SUPPORT_UTF16_ENCODINGS=1 /D SUPPORT_ASIAN_ENCODINGS=1 /D SUPPORT_ACCESSIBILITY_CHECKS=1 /FD /GZ /c
|
|
||||||
# SUBTRACT CPP /YX
|
|
||||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"DebugDLL/libtidy.dll" /pdbtype:sept
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "tidydll - Win32 Release"
|
|
||||||
# Name "tidydll - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\access.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\alloc.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrask.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrdict.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrget.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrs.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\buffio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\clean.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\config.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\entities.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\fileio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\istack.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\lexer.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\localize.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\mappedio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\parser.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\pprint.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\streamio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tagask.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\tidy.def
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tags.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tidylib.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tmbstr.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\utf8.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\win32tc.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\access.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrdict.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrs.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\buffio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\clean.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\config.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\entities.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\fileio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\forward.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\lexer.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\mappedio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\message.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\parser.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\platform.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\pprint.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\streamio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tags.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE="..\..\src\tidy-int.h"
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\tidy.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\tidyenum.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tmbstr.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\utf8.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\version.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\win32tc.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
|
@ -1,295 +0,0 @@
|
||||||
# Microsoft Developer Studio Project File - Name="tidylib" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
|
||||||
|
|
||||||
CFG=tidylib - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "tidylib.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "tidylib.mak" CFG="tidylib - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "tidylib - Win32 Release" (based on "Win32 (x86) Static Library")
|
|
||||||
!MESSAGE "tidylib - Win32 Debug" (based on "Win32 (x86) Static Library")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "tidylib - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /MT /W4 /GX /O2 /I "../../include" /D "NDEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /D "SUPPORT_UTF16_ENCODINGS" /D "SUPPORT_ASIAN_ENCODINGS" /D "SUPPORT_ACCESSIBILITY_CHECKS" /FD /c
|
|
||||||
# SUBTRACT CPP /YX
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LIB32=link.exe -lib
|
|
||||||
# ADD BASE LIB32 /nologo
|
|
||||||
# ADD LIB32 /nologo /out:"Release\libtidy.lib"
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "tidylib - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /MTd /Za /W4 /Gm /ZI /Od /I "../../include" /D "_DEBUG" /D "_WIN32" /D "_LIB" /D "WIN32" /D "_MBCS" /D "SUPPORT_UTF16_ENCODINGS" /D "SUPPORT_ASIAN_ENCODINGS" /D "SUPPORT_ACCESSIBILITY_CHECKS" /U "WINDOWS" /FD /GZ /c
|
|
||||||
# SUBTRACT CPP /YX
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LIB32=link.exe -lib
|
|
||||||
# ADD BASE LIB32 /nologo
|
|
||||||
# ADD LIB32 /nologo /out:"Debug\libtidy.lib"
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "tidylib - Win32 Release"
|
|
||||||
# Name "tidylib - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\access.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\alloc.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrask.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrdict.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrget.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrs.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\buffio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\clean.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\config.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\entities.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\fileio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\istack.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\lexer.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\localize.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\mappedio.c
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "tidylib - Win32 Release"
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "tidylib - Win32 Debug"
|
|
||||||
|
|
||||||
# ADD CPP /Ze
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\parser.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\pprint.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\streamio.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tagask.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tags.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tidylib.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tmbstr.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\utf8.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\win32tc.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\access.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrdict.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\attrs.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\buffio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\clean.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\config.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\entities.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\fileio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\forward.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\lexer.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\mappedio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\message.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\parser.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\platform.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\pprint.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\streamio.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tags.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE="..\..\src\tidy-int.h"
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\tidy.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\tidyenum.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\tmbstr.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\utf8.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\version.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\win32tc.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
|
@ -1,4 +0,0 @@
|
||||||
|
|
||||||
Load tidy.sln into the MSVC IDE to build tidy
|
|
||||||
|
|
||||||
# eof
|
|
|
@ -1,304 +0,0 @@
|
||||||
LIBRARY libtidy
|
|
||||||
EXPORTS
|
|
||||||
tidyCreate @1001
|
|
||||||
tidyRelease @1002
|
|
||||||
tidySetAppData @1003
|
|
||||||
tidyGetAppData @1004
|
|
||||||
tidyReleaseDate @1005
|
|
||||||
tidyStatus @1006
|
|
||||||
tidyDetectedHtmlVersion @1007
|
|
||||||
tidyDetectedXhtml @1008
|
|
||||||
tidyDetectedGenericXml @1009
|
|
||||||
tidyErrorCount @1010
|
|
||||||
tidyWarningCount @1011
|
|
||||||
tidyAccessWarningCount @1012
|
|
||||||
tidyConfigErrorCount @1013
|
|
||||||
tidyLoadConfig @1014
|
|
||||||
tidyLoadConfigEnc @1015
|
|
||||||
tidyFileExists @1016
|
|
||||||
tidySetCharEncoding @1017
|
|
||||||
tidySetInCharEncoding @1018
|
|
||||||
tidySetOutCharEncoding @1019
|
|
||||||
tidySetOptionCallback @1020
|
|
||||||
tidyOptGetIdForName @1021
|
|
||||||
tidyGetOptionList @1022
|
|
||||||
tidyGetNextOption @1023
|
|
||||||
tidyGetOption @1024
|
|
||||||
tidyGetOptionByName @1025
|
|
||||||
tidyOptGetId @1026
|
|
||||||
tidyOptGetName @1027
|
|
||||||
tidyOptGetType @1028
|
|
||||||
tidyOptIsReadOnly @1029
|
|
||||||
tidyOptGetCategory @1030
|
|
||||||
tidyOptGetDefault @1031
|
|
||||||
tidyOptGetDefaultInt @1032
|
|
||||||
tidyOptGetDefaultBool @1033
|
|
||||||
tidyOptGetPickList @1034
|
|
||||||
tidyOptGetNextPick @1035
|
|
||||||
tidyOptGetValue @1036
|
|
||||||
tidyOptSetValue @1037
|
|
||||||
tidyOptParseValue @1038
|
|
||||||
tidyOptGetInt @1039
|
|
||||||
tidyOptSetInt @1040
|
|
||||||
tidyOptGetBool @1041
|
|
||||||
tidyOptSetBool @1042
|
|
||||||
tidyOptResetToDefault @1043
|
|
||||||
tidyOptResetAllToDefault @1044
|
|
||||||
tidyOptSnapshot @1045
|
|
||||||
tidyOptResetToSnapshot @1046
|
|
||||||
tidyOptDiffThanDefault @1047
|
|
||||||
tidyOptDiffThanSnapshot @1048
|
|
||||||
tidyOptCopyConfig @1049
|
|
||||||
tidyOptGetEncName @1050
|
|
||||||
tidyOptGetCurrPick @1051
|
|
||||||
tidyOptGetDeclTagList @1052
|
|
||||||
tidyOptGetNextDeclTag @1053
|
|
||||||
tidyOptGetDoc @1054
|
|
||||||
tidyOptGetDocLinksList @1055
|
|
||||||
tidyOptGetNextDocLinks @1056
|
|
||||||
tidyInitSource @1057
|
|
||||||
tidyGetByte @1058
|
|
||||||
tidyUngetByte @1059
|
|
||||||
tidyIsEOF @1060
|
|
||||||
tidyInitSink @1061
|
|
||||||
tidyPutByte @1062
|
|
||||||
tidySetReportFilter @1063
|
|
||||||
tidySetErrorFile @1064
|
|
||||||
tidySetErrorBuffer @1065
|
|
||||||
tidySetErrorSink @1066
|
|
||||||
tidySetMallocCall @1067
|
|
||||||
tidySetReallocCall @1068
|
|
||||||
tidySetFreeCall @1069
|
|
||||||
tidySetPanicCall @1070
|
|
||||||
tidyParseFile @1071
|
|
||||||
tidyParseStdin @1072
|
|
||||||
tidyParseString @1073
|
|
||||||
tidyParseBuffer @1074
|
|
||||||
tidyParseSource @1075
|
|
||||||
tidyCleanAndRepair @1076
|
|
||||||
tidyRunDiagnostics @1077
|
|
||||||
tidySaveFile @1078
|
|
||||||
tidySaveStdout @1079
|
|
||||||
tidySaveBuffer @1080
|
|
||||||
tidySaveString @1081
|
|
||||||
tidySaveSink @1082
|
|
||||||
tidyOptSaveFile @1083
|
|
||||||
tidyOptSaveSink @1084
|
|
||||||
tidyErrorSummary @1085
|
|
||||||
tidyGeneralInfo @1086
|
|
||||||
tidyGetRoot @1087
|
|
||||||
tidyGetHtml @1088
|
|
||||||
tidyGetHead @1089
|
|
||||||
tidyGetBody @1090
|
|
||||||
tidyGetParent @1091
|
|
||||||
tidyGetChild @1092
|
|
||||||
tidyGetNext @1093
|
|
||||||
tidyGetPrev @1094
|
|
||||||
tidyAttrFirst @1095
|
|
||||||
tidyAttrNext @1096
|
|
||||||
tidyAttrName @1097
|
|
||||||
tidyAttrValue @1098
|
|
||||||
tidyNodeGetType @1099
|
|
||||||
tidyNodeGetName @1100
|
|
||||||
tidyNodeIsText @1101
|
|
||||||
tidyNodeIsProp @1102
|
|
||||||
tidyNodeIsHeader @1103
|
|
||||||
tidyNodeHasText @1104
|
|
||||||
tidyNodeGetText @1105
|
|
||||||
tidyNodeGetId @1106
|
|
||||||
tidyNodeLine @1107
|
|
||||||
tidyNodeColumn @1108
|
|
||||||
tidyNodeIsHTML @1109
|
|
||||||
tidyNodeIsHEAD @1110
|
|
||||||
tidyNodeIsTITLE @1111
|
|
||||||
tidyNodeIsBASE @1112
|
|
||||||
tidyNodeIsMETA @1113
|
|
||||||
tidyNodeIsBODY @1114
|
|
||||||
tidyNodeIsFRAMESET @1115
|
|
||||||
tidyNodeIsFRAME @1116
|
|
||||||
tidyNodeIsIFRAME @1117
|
|
||||||
tidyNodeIsNOFRAMES @1118
|
|
||||||
tidyNodeIsHR @1119
|
|
||||||
tidyNodeIsH1 @1120
|
|
||||||
tidyNodeIsH2 @1121
|
|
||||||
tidyNodeIsPRE @1122
|
|
||||||
tidyNodeIsLISTING @1123
|
|
||||||
tidyNodeIsP @1124
|
|
||||||
tidyNodeIsUL @1125
|
|
||||||
tidyNodeIsOL @1126
|
|
||||||
tidyNodeIsDL @1127
|
|
||||||
tidyNodeIsDIR @1128
|
|
||||||
tidyNodeIsLI @1129
|
|
||||||
tidyNodeIsDT @1130
|
|
||||||
tidyNodeIsDD @1131
|
|
||||||
tidyNodeIsTABLE @1132
|
|
||||||
tidyNodeIsCAPTION @1133
|
|
||||||
tidyNodeIsTD @1134
|
|
||||||
tidyNodeIsTH @1135
|
|
||||||
tidyNodeIsTR @1136
|
|
||||||
tidyNodeIsCOL @1137
|
|
||||||
tidyNodeIsCOLGROUP @1138
|
|
||||||
tidyNodeIsBR @1139
|
|
||||||
tidyNodeIsA @1140
|
|
||||||
tidyNodeIsLINK @1141
|
|
||||||
tidyNodeIsB @1142
|
|
||||||
tidyNodeIsI @1143
|
|
||||||
tidyNodeIsSTRONG @1144
|
|
||||||
tidyNodeIsEM @1145
|
|
||||||
tidyNodeIsBIG @1146
|
|
||||||
tidyNodeIsSMALL @1147
|
|
||||||
tidyNodeIsPARAM @1148
|
|
||||||
tidyNodeIsOPTION @1149
|
|
||||||
tidyNodeIsOPTGROUP @1150
|
|
||||||
tidyNodeIsIMG @1151
|
|
||||||
tidyNodeIsMAP @1152
|
|
||||||
tidyNodeIsAREA @1153
|
|
||||||
tidyNodeIsNOBR @1154
|
|
||||||
tidyNodeIsWBR @1155
|
|
||||||
tidyNodeIsFONT @1156
|
|
||||||
tidyNodeIsLAYER @1157
|
|
||||||
tidyNodeIsSPACER @1158
|
|
||||||
tidyNodeIsCENTER @1159
|
|
||||||
tidyNodeIsSTYLE @1160
|
|
||||||
tidyNodeIsSCRIPT @1161
|
|
||||||
tidyNodeIsNOSCRIPT @1162
|
|
||||||
tidyNodeIsFORM @1163
|
|
||||||
tidyNodeIsTEXTAREA @1164
|
|
||||||
tidyNodeIsBLOCKQUOTE @1165
|
|
||||||
tidyNodeIsAPPLET @1166
|
|
||||||
tidyNodeIsOBJECT @1167
|
|
||||||
tidyNodeIsDIV @1168
|
|
||||||
tidyNodeIsSPAN @1169
|
|
||||||
tidyNodeIsINPUT @1170
|
|
||||||
tidyNodeIsQ @1171
|
|
||||||
tidyNodeIsLABEL @1172
|
|
||||||
tidyNodeIsH3 @1173
|
|
||||||
tidyNodeIsH4 @1174
|
|
||||||
tidyNodeIsH5 @1175
|
|
||||||
tidyNodeIsH6 @1176
|
|
||||||
tidyNodeIsADDRESS @1177
|
|
||||||
tidyNodeIsXMP @1178
|
|
||||||
tidyNodeIsSELECT @1179
|
|
||||||
tidyNodeIsBLINK @1180
|
|
||||||
tidyNodeIsMARQUEE @1181
|
|
||||||
tidyNodeIsEMBED @1182
|
|
||||||
tidyNodeIsBASEFONT @1183
|
|
||||||
tidyNodeIsISINDEX @1184
|
|
||||||
tidyNodeIsS @1185
|
|
||||||
tidyNodeIsSTRIKE @1186
|
|
||||||
tidyNodeIsU @1187
|
|
||||||
tidyNodeIsMENU @1188
|
|
||||||
tidyAttrGetId @1189
|
|
||||||
tidyAttrIsEvent @1190
|
|
||||||
tidyAttrIsProp @1191
|
|
||||||
tidyAttrIsHREF @1192
|
|
||||||
tidyAttrIsSRC @1193
|
|
||||||
tidyAttrIsID @1194
|
|
||||||
tidyAttrIsNAME @1195
|
|
||||||
tidyAttrIsSUMMARY @1196
|
|
||||||
tidyAttrIsALT @1197
|
|
||||||
tidyAttrIsLONGDESC @1198
|
|
||||||
tidyAttrIsUSEMAP @1199
|
|
||||||
tidyAttrIsISMAP @1200
|
|
||||||
tidyAttrIsLANGUAGE @1201
|
|
||||||
tidyAttrIsTYPE @1202
|
|
||||||
tidyAttrIsVALUE @1203
|
|
||||||
tidyAttrIsCONTENT @1204
|
|
||||||
tidyAttrIsTITLE @1205
|
|
||||||
tidyAttrIsXMLNS @1206
|
|
||||||
tidyAttrIsDATAFLD @1207
|
|
||||||
tidyAttrIsWIDTH @1208
|
|
||||||
tidyAttrIsHEIGHT @1209
|
|
||||||
tidyAttrIsFOR @1210
|
|
||||||
tidyAttrIsSELECTED @1211
|
|
||||||
tidyAttrIsCHECKED @1212
|
|
||||||
tidyAttrIsLANG @1213
|
|
||||||
tidyAttrIsTARGET @1214
|
|
||||||
tidyAttrIsHTTP_EQUIV @1215
|
|
||||||
tidyAttrIsREL @1216
|
|
||||||
tidyAttrIsOnMOUSEMOVE @1217
|
|
||||||
tidyAttrIsOnMOUSEDOWN @1218
|
|
||||||
tidyAttrIsOnMOUSEUP @1219
|
|
||||||
tidyAttrIsOnCLICK @1220
|
|
||||||
tidyAttrIsOnMOUSEOVER @1221
|
|
||||||
tidyAttrIsOnMOUSEOUT @1222
|
|
||||||
tidyAttrIsOnKEYDOWN @1223
|
|
||||||
tidyAttrIsOnKEYUP @1224
|
|
||||||
tidyAttrIsOnKEYPRESS @1225
|
|
||||||
tidyAttrIsOnFOCUS @1226
|
|
||||||
tidyAttrIsOnBLUR @1227
|
|
||||||
tidyAttrIsBGCOLOR @1228
|
|
||||||
tidyAttrIsLINK @1229
|
|
||||||
tidyAttrIsALINK @1230
|
|
||||||
tidyAttrIsVLINK @1231
|
|
||||||
tidyAttrIsTEXT @1232
|
|
||||||
tidyAttrIsSTYLE @1233
|
|
||||||
tidyAttrIsABBR @1234
|
|
||||||
tidyAttrIsCOLSPAN @1235
|
|
||||||
tidyAttrIsROWSPAN @1236
|
|
||||||
tidyAttrGetById @1237
|
|
||||||
tidyAttrGetHREF @1238
|
|
||||||
tidyAttrGetSRC @1239
|
|
||||||
tidyAttrGetID @1240
|
|
||||||
tidyAttrGetNAME @1241
|
|
||||||
tidyAttrGetSUMMARY @1242
|
|
||||||
tidyAttrGetALT @1243
|
|
||||||
tidyAttrGetLONGDESC @1244
|
|
||||||
tidyAttrGetUSEMAP @1245
|
|
||||||
tidyAttrGetISMAP @1246
|
|
||||||
tidyAttrGetLANGUAGE @1247
|
|
||||||
tidyAttrGetTYPE @1248
|
|
||||||
tidyAttrGetVALUE @1249
|
|
||||||
tidyAttrGetCONTENT @1250
|
|
||||||
tidyAttrGetTITLE @1251
|
|
||||||
tidyAttrGetXMLNS @1252
|
|
||||||
tidyAttrGetDATAFLD @1253
|
|
||||||
tidyAttrGetWIDTH @1254
|
|
||||||
tidyAttrGetHEIGHT @1255
|
|
||||||
tidyAttrGetFOR @1256
|
|
||||||
tidyAttrGetSELECTED @1257
|
|
||||||
tidyAttrGetCHECKED @1258
|
|
||||||
tidyAttrGetLANG @1259
|
|
||||||
tidyAttrGetTARGET @1260
|
|
||||||
tidyAttrGetHTTP_EQUIV @1261
|
|
||||||
tidyAttrGetREL @1262
|
|
||||||
tidyAttrGetOnMOUSEMOVE @1263
|
|
||||||
tidyAttrGetOnMOUSEDOWN @1264
|
|
||||||
tidyAttrGetOnMOUSEUP @1265
|
|
||||||
tidyAttrGetOnCLICK @1266
|
|
||||||
tidyAttrGetOnMOUSEOVER @1267
|
|
||||||
tidyAttrGetOnMOUSEOUT @1268
|
|
||||||
tidyAttrGetOnKEYDOWN @1269
|
|
||||||
tidyAttrGetOnKEYUP @1270
|
|
||||||
tidyAttrGetOnKEYPRESS @1271
|
|
||||||
tidyAttrGetOnFOCUS @1272
|
|
||||||
tidyAttrGetOnBLUR @1273
|
|
||||||
tidyAttrGetBGCOLOR @1274
|
|
||||||
tidyAttrGetLINK @1275
|
|
||||||
tidyAttrGetALINK @1276
|
|
||||||
tidyAttrGetVLINK @1277
|
|
||||||
tidyAttrGetTEXT @1278
|
|
||||||
tidyAttrGetSTYLE @1279
|
|
||||||
tidyAttrGetABBR @1280
|
|
||||||
tidyAttrGetCOLSPAN @1281
|
|
||||||
tidyAttrGetROWSPAN @1282
|
|
||||||
tidyCreateWithAllocator @1283
|
|
||||||
|
|
||||||
tidyInitInputBuffer @2001
|
|
||||||
tidyInitOutputBuffer @2002
|
|
||||||
tidyBufInit @2003
|
|
||||||
tidyBufAlloc @2004
|
|
||||||
tidyBufCheckAlloc @2005
|
|
||||||
tidyBufFree @2006
|
|
||||||
tidyBufClear @2007
|
|
||||||
tidyBufAttach @2008
|
|
||||||
tidyBufDetach @2009
|
|
||||||
tidyBufAppend @2010
|
|
||||||
tidyBufPutByte @2011
|
|
||||||
tidyBufPopByte @2012
|
|
||||||
tidyBufGetByte @2013
|
|
||||||
tidyBufEndOfInput @2014
|
|
||||||
tidyBufUngetByte @2015
|
|
||||||
tidyBufInitWithAllocator @2016
|
|
||||||
tidyBufAllocWithAllocator @2017
|
|
||||||
tidyNodeGetValue @2018
|
|
|
@ -1,35 +0,0 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
|
||||||
# Visual Studio 2010
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidy", "tidy.vcxproj", "{86771E17-F0DB-445E-AFE9-33EC8AA1E002}"
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidydll", "tidydll.vcxproj", "{C9371CCA-E73B-4661-847C-EB45A234C5C7}"
|
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
|
||||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4} = {A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tidylib", "tidylib.vcxproj", "{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{86771E17-F0DB-445E-AFE9-33EC8AA1E002}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{C9371CCA-E73B-4661-847C-EB45A234C5C7}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
|
@ -1,138 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{86771E17-F0DB-445E-AFE9-33EC8AA1E002}</ProjectGuid>
|
|
||||||
<RootNamespace>tidy</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseOfMfc>false</UseOfMfc>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<UseOfMfc>false</UseOfMfc>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
|
||||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
|
||||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
|
||||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
|
||||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Midl>
|
|
||||||
<TypeLibraryName>.\Release/tidy.tlb</TypeLibraryName>
|
|
||||||
<HeaderFileName>
|
|
||||||
</HeaderFileName>
|
|
||||||
</Midl>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
||||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;_CONSOLE;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;TIDYDLL_EXPORT=__declspec(dllimport);_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<StringPooling>true</StringPooling>
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<DisableLanguageExtensions>true</DisableLanguageExtensions>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<Culture>0x0409</Culture>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Link>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<GenerateMapFile>true</GenerateMapFile>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<Bscmake>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Bscmake>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Midl>
|
|
||||||
<TypeLibraryName>.\Debug/tidy.tlb</TypeLibraryName>
|
|
||||||
<HeaderFileName>
|
|
||||||
</HeaderFileName>
|
|
||||||
</Midl>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;TIDYDLL_EXPORT=__declspec(dllimport);_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
<DisableLanguageExtensions>true</DisableLanguageExtensions>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<Culture>0x0409</Culture>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Link>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<Bscmake>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Bscmake>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\console\tidy.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="tidylib.vcxproj">
|
|
||||||
<Project>{a3ea53a3-86bb-4d0a-b999-d1ec9411ddd4}</Project>
|
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,316 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{C9371CCA-E73B-4661-847C-EB45A234C5C7}</ProjectGuid>
|
|
||||||
<RootNamespace>tidydll</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseOfMfc>false</UseOfMfc>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<UseOfMfc>false</UseOfMfc>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Obj\$(Configuration)$(MSBuildProjectName)\</IntDir>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Obj\$(Configuration)$(MSBuildProjectName)\</IntDir>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
|
||||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
|
||||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
|
||||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
|
||||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libtidy.dll</TargetName>
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libtidy</TargetName>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Midl>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<TargetEnvironment>Win32</TargetEnvironment>
|
|
||||||
<TypeLibraryName>.\DebugDLL/tidydll.tlb</TypeLibraryName>
|
|
||||||
<HeaderFileName>
|
|
||||||
</HeaderFileName>
|
|
||||||
</Midl>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;_USRDLL;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<Culture>0x0409</Culture>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Link>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<ModuleDefinitionFile>.\tidy.def</ModuleDefinitionFile>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<Bscmake>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Bscmake>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Midl>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<TargetEnvironment>Win32</TargetEnvironment>
|
|
||||||
<TypeLibraryName>.\ReleaseDLL/tidydll.tlb</TypeLibraryName>
|
|
||||||
<HeaderFileName>
|
|
||||||
</HeaderFileName>
|
|
||||||
</Midl>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
||||||
<AdditionalIncludeDirectories>..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;_USRDLL;TIDYDLL_EXPORTS;SUPPORT_UTF16_ENCODINGS=1;SUPPORT_ASIAN_ENCODINGS=1;SUPPORT_ACCESSIBILITY_CHECKS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<StringPooling>true</StringPooling>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<Culture>0x0409</Culture>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Link>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<ModuleDefinitionFile>.\tidy.def</ModuleDefinitionFile>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
</Link>
|
|
||||||
<Bscmake>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Bscmake>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\src\access.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\alloc.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrask.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrdict.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrget.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrs.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\buffio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\clean.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\config.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\entities.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\fileio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\istack.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\lexer.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\localize.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\mappedio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\parser.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\pprint.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\streamio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tagask.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tags.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tidylib.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tmbstr.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\utf8.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\win32tc.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\gdoc.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="tidy.def" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\..\src\access.h" />
|
|
||||||
<ClInclude Include="..\..\src\attrdict.h" />
|
|
||||||
<ClInclude Include="..\..\src\attrs.h" />
|
|
||||||
<ClInclude Include="..\..\include\buffio.h" />
|
|
||||||
<ClInclude Include="..\..\src\clean.h" />
|
|
||||||
<ClInclude Include="..\..\src\config.h" />
|
|
||||||
<ClInclude Include="..\..\src\entities.h" />
|
|
||||||
<ClInclude Include="..\..\src\fileio.h" />
|
|
||||||
<ClInclude Include="..\..\src\forward.h" />
|
|
||||||
<ClInclude Include="..\..\src\lexer.h" />
|
|
||||||
<ClInclude Include="..\..\src\mappedio.h" />
|
|
||||||
<ClInclude Include="..\..\src\message.h" />
|
|
||||||
<ClInclude Include="..\..\src\parser.h" />
|
|
||||||
<ClInclude Include="..\..\include\platform.h" />
|
|
||||||
<ClInclude Include="..\..\src\pprint.h" />
|
|
||||||
<ClInclude Include="..\..\src\streamio.h" />
|
|
||||||
<ClInclude Include="..\..\src\tags.h" />
|
|
||||||
<ClInclude Include="..\..\src\tidy-int.h" />
|
|
||||||
<ClInclude Include="..\..\include\tidy.h" />
|
|
||||||
<ClInclude Include="..\..\include\tidyenum.h" />
|
|
||||||
<ClInclude Include="..\..\src\tmbstr.h" />
|
|
||||||
<ClInclude Include="..\..\src\utf8.h" />
|
|
||||||
<ClInclude Include="..\..\src\version.h" />
|
|
||||||
<ClInclude Include="..\..\src\win32tc.h" />
|
|
||||||
<ClInclude Include="..\..\src\gdoc.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,311 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{A3EA53A3-86BB-4D0A-B999-D1EC9411DDD4}</ProjectGuid>
|
|
||||||
<RootNamespace>tidylib</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseOfMfc>false</UseOfMfc>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseOfMfc>false</UseOfMfc>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
<Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)$(MSBuildProjectName)\</IntDir>
|
|
||||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
|
||||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
|
||||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
|
||||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
|
||||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">libtidy</TargetName>
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">libtidy</TargetName>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)$(MSBuildProjectName)\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)$(MSBuildProjectName)\</IntDir>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
||||||
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;_LIB;WIN32;SUPPORT_UTF16_ENCODINGS;SUPPORT_ASIAN_ENCODINGS;SUPPORT_ACCESSIBILITY_CHECKS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<StringPooling>true</StringPooling>
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<Culture>0x0409</Culture>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Lib>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Lib>
|
|
||||||
<Bscmake>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Bscmake>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;_WIN32;_LIB;WIN32;SUPPORT_UTF16_ENCODINGS;SUPPORT_ASIAN_ENCODINGS;SUPPORT_ACCESSIBILITY_CHECKS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
<DisableLanguageExtensions>true</DisableLanguageExtensions>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
||||||
<UndefinePreprocessorDefinitions>WINDOWS;%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<Culture>0x0409</Culture>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Lib>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Lib>
|
|
||||||
<Bscmake>
|
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
||||||
</Bscmake>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="..\..\src\access.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\alloc.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrask.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrdict.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrget.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\attrs.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\buffio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\clean.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\config.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\entities.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\fileio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\istack.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\lexer.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\localize.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\mappedio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<DisableLanguageExtensions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</DisableLanguageExtensions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\parser.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\pprint.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\streamio.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tagask.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tags.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tidylib.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\tmbstr.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\utf8.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\win32tc.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\src\gdoc.c">
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<UndefinePreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="..\..\src\access.h" />
|
|
||||||
<ClInclude Include="..\..\src\attrdict.h" />
|
|
||||||
<ClInclude Include="..\..\src\attrs.h" />
|
|
||||||
<ClInclude Include="..\..\include\buffio.h" />
|
|
||||||
<ClInclude Include="..\..\src\clean.h" />
|
|
||||||
<ClInclude Include="..\..\src\config.h" />
|
|
||||||
<ClInclude Include="..\..\src\entities.h" />
|
|
||||||
<ClInclude Include="..\..\src\fileio.h" />
|
|
||||||
<ClInclude Include="..\..\src\forward.h" />
|
|
||||||
<ClInclude Include="..\..\src\lexer.h" />
|
|
||||||
<ClInclude Include="..\..\src\mappedio.h" />
|
|
||||||
<ClInclude Include="..\..\src\message.h" />
|
|
||||||
<ClInclude Include="..\..\src\parser.h" />
|
|
||||||
<ClInclude Include="..\..\include\platform.h" />
|
|
||||||
<ClInclude Include="..\..\src\pprint.h" />
|
|
||||||
<ClInclude Include="..\..\src\streamio.h" />
|
|
||||||
<ClInclude Include="..\..\src\tags.h" />
|
|
||||||
<ClInclude Include="..\..\src\tidy-int.h" />
|
|
||||||
<ClInclude Include="..\..\include\tidy.h" />
|
|
||||||
<ClInclude Include="..\..\include\tidyenum.h" />
|
|
||||||
<ClInclude Include="..\..\src\tmbstr.h" />
|
|
||||||
<ClInclude Include="..\..\src\utf8.h" />
|
|
||||||
<ClInclude Include="..\..\src\version.h" />
|
|
||||||
<ClInclude Include="..\..\src\win32tc.h" />
|
|
||||||
<ClInclude Include="..\..\src\gdoc.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
|
@ -1,40 +0,0 @@
|
||||||
Tidy Build Files
|
|
||||||
|
|
||||||
Each subdirectory contains input files to a selected
|
|
||||||
build system for TidyLib and the command line driver.
|
|
||||||
Some build systems are cross-platform (gmake, autoconf),
|
|
||||||
others (msvc) are platform specific. For details
|
|
||||||
on any given build system, see the readme file for
|
|
||||||
that system.
|
|
||||||
|
|
||||||
Directory System Comments
|
|
||||||
--------- -------------------- --------------------------
|
|
||||||
gmake GNU Make Used for "official" builds
|
|
||||||
|
|
||||||
gnuauto GNU AutoConf Supports shared lib builds
|
|
||||||
|
|
||||||
msvc MS Visual C++ v6 Win32 only
|
|
||||||
|
|
||||||
msvc2010 MS Visual Studio 2010 win32 only
|
|
||||||
|
|
||||||
rpm Script for packages For Linux distribution supporting rpm
|
|
||||||
|
|
||||||
|
|
||||||
Common Build Options
|
|
||||||
|
|
||||||
There are some basic build options for TidyLib, independent
|
|
||||||
of platform and build system. Typically, these options can
|
|
||||||
be enabled or disabled by setting a macro value within the
|
|
||||||
Makefile or its equivalent. An option may be disabled by
|
|
||||||
setting its value to "0". Enable by setting to "1". Again,
|
|
||||||
consult the directions for each build system for details
|
|
||||||
on how to enable/disable each option.
|
|
||||||
|
|
||||||
Option Default Description
|
|
||||||
---------------------------- -------- ---------------------------------
|
|
||||||
DMALLOC Disabled Use dmalloc for memory debugging
|
|
||||||
SUPPORT_ACCESSIBILITY_CHECKS Enabled Support W3C WAI checks
|
|
||||||
SUPPORT_UTF16_ENCODINGS Enabled Support Unicode documents
|
|
||||||
SUPPORT_ASIAN_ENCODINGS Enabled Support Big5 and ShiftJIS docs
|
|
||||||
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
# Script for Building tidy rpm packages
|
|
||||||
|
|
||||||
|
|
||||||
# To build the RPM packages for tidy on Redhat and other distros which support rpm.
|
|
||||||
# For making Debian packages, first create rpm package and then generate
|
|
||||||
# debian package by command "rpm2deb filename"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The steps are as follows:
|
|
||||||
|
|
||||||
|
|
||||||
1. Let's suppose TIDY_VERSION you are building is 02October2003
|
|
||||||
|
|
||||||
|
|
||||||
2. Unpack original source tree
|
|
||||||
tar zxvf tidy_src.tgz
|
|
||||||
This will extract to a directory called tidy
|
|
||||||
|
|
||||||
|
|
||||||
3. mv tidy tidy-02October2003
|
|
||||||
Edit the tidy.spec file inside directory tidy-02October2003
|
|
||||||
and make sure the Version variable is changed to 02October2003.
|
|
||||||
Also edit the Makefile and change prefix to "exactly" say this:
|
|
||||||
runinst_prefix=${RPMTMP}
|
|
||||||
devinst_prefix=${RPMTMP}
|
|
||||||
|
|
||||||
|
|
||||||
4. tar zcvf tidy-02October2003.tgz tidy-02October2003
|
|
||||||
|
|
||||||
|
|
||||||
5. rpmbuild -ta tidy-02October2003.tgz
|
|
||||||
|
|
||||||
|
|
||||||
6. rm tidy-02October2003.tgz
|
|
||||||
|
|
||||||
|
|
||||||
7. To derive Debian package for tidy run command on created rpm packages
|
|
||||||
rpm2deb tidy-02October2003-1.rpm
|
|
||||||
|
|
|
@ -1,148 +0,0 @@
|
||||||
# RPM spec file for tidy
|
|
||||||
#
|
|
||||||
# (c) 2006 (W3C) MIT, ERCIM, Keio University
|
|
||||||
# See tidy.h for the copyright notice.
|
|
||||||
#
|
|
||||||
# Contributing Author(s):
|
|
||||||
# Sierk Bornemann <bornemann@users.sourceforge.net>
|
|
||||||
#
|
|
||||||
# norootforbuild
|
|
||||||
# neededforbuild doxygen libxslt libtool
|
|
||||||
|
|
||||||
BuildRequires: doxygen libxslt libtool
|
|
||||||
|
|
||||||
Name: tidy
|
|
||||||
Version: 1.0
|
|
||||||
Release: YYMMDD
|
|
||||||
%define docrelease YYMMDD
|
|
||||||
Summary: Utility to clean up and pretty print HTML/XHTML/XML
|
|
||||||
Group: Applications/Tools
|
|
||||||
License: W3C Software License, MIT Licence, Other License(s), see package
|
|
||||||
Autoreqprov: on
|
|
||||||
URL: http://tidy.sourceforge.net/
|
|
||||||
Source0: http://sourceforge.net/cvs/?group_id=27659
|
|
||||||
Source1: http://tidy.sourceforge.net/src/tidy_src.tgz
|
|
||||||
Source2: http://tidy.sourceforge.net/docs/tidy_docs.tgz
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-build
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
|
||||||
When editing HTML it's easy to make mistakes. Wouldn't it be nice if
|
|
||||||
there was a simple way to fix these mistakes automatically and tidy up
|
|
||||||
sloppy editing into nicely layed out markup? Well now there is! Dave
|
|
||||||
Raggett's HTML TIDY is a free utility for doing just that. It also
|
|
||||||
works great on the atrociously hard to read markup generated by
|
|
||||||
specialized HTML editors and conversion tools, and can help you
|
|
||||||
identify where you need to pay further attention on making your pages
|
|
||||||
more accessible to people with disabilities.
|
|
||||||
|
|
||||||
Tidy is able to fix up a wide range of problems and to bring to your
|
|
||||||
attention things that you need to work on yourself. Each item found is
|
|
||||||
listed with the line number and column so that you can see where the
|
|
||||||
problem lies in your markup. Tidy won't generate a cleaned up version
|
|
||||||
when there are problems that it can't be sure of how to handle. These
|
|
||||||
are logged as "errors" rather than "warnings".
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
|
|
||||||
Tidy was written by Dave Raggett <dsr@w3.org> and is now maintained
|
|
||||||
and developed by the Tidy team at http://tidy.sourceforge.net/.
|
|
||||||
|
|
||||||
|
|
||||||
%package -n libtidy
|
|
||||||
Summary: Shared library for tidy
|
|
||||||
Group: Development/Libraries
|
|
||||||
Autoreqprov: on
|
|
||||||
|
|
||||||
%description -n libtidy
|
|
||||||
|
|
||||||
This package contains the library needed to run programs dynamically
|
|
||||||
linked with tidy.
|
|
||||||
|
|
||||||
|
|
||||||
%package -n libtidy-devel
|
|
||||||
Summary: Development files for tidy
|
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: libtidy = %{version}-%{release}
|
|
||||||
Autoreqprov: on
|
|
||||||
|
|
||||||
|
|
||||||
%description -n libtidy-devel
|
|
||||||
|
|
||||||
This package contains the headers, the shared libraries and the API
|
|
||||||
documentation which programmers will need to develop applications based on
|
|
||||||
tidy.
|
|
||||||
|
|
||||||
%debug_package
|
|
||||||
%prep
|
|
||||||
%setup -q -n %{name} -b 1
|
|
||||||
mv htmldoc/doxygen.cfg Doxyfile
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
export CFLAGS="$RPM_OPT_FLAGS"
|
|
||||||
/bin/sh build/gnuauto/setup.sh
|
|
||||||
|
|
||||||
%configure --disable-dependency-tracking \
|
|
||||||
--includedir=%{_includedir}/%{name}
|
|
||||||
make %{?_smp_mflags} all
|
|
||||||
make -C build/gmake/ doc
|
|
||||||
doxygen
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT _api
|
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
|
||||||
# Manpage
|
|
||||||
install -Dpm 644 htmldoc/tidy.1 $RPM_BUILD_ROOT%{_mandir}/man1/tidy.1
|
|
||||||
# Quick Reference
|
|
||||||
install -Dpm 644 htmldoc/quickref.html $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}/quickref.html
|
|
||||||
# Move API directory out of the way
|
|
||||||
mv htmldoc/api _api
|
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
if ! test -f /.buildenv; then
|
|
||||||
rm -rf $RPM_BUILD_ROOT;
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
%post -n lib%{name} -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%postun -n lib%{name} -p /sbin/ldconfig
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%doc htmldoc/*
|
|
||||||
%{_bindir}/tidy
|
|
||||||
%{_bindir}/tab2space
|
|
||||||
%{_mandir}/man1/tidy.1*
|
|
||||||
|
|
||||||
|
|
||||||
%files -n libtidy
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%doc htmldoc/license.html
|
|
||||||
%{_libdir}/libtidy*.so.*
|
|
||||||
|
|
||||||
|
|
||||||
%files -n libtidy-devel
|
|
||||||
%defattr(-, root, root)
|
|
||||||
%doc _api/*
|
|
||||||
%{_includedir}/%{name}/*.h
|
|
||||||
%{_libdir}/libtidy.so
|
|
||||||
%{_libdir}/libtidy.a
|
|
||||||
%exclude %{_libdir}/libtidy.la
|
|
||||||
|
|
||||||
|
|
||||||
%changelog -n tidy
|
|
||||||
* Thu Feb 22 2006 - Sierk Bornemann <bornemann@sourceforge.net>
|
|
||||||
Rewritten RPM Spec file:
|
|
||||||
- respects filesystem layout of current FHS-compliant linux distributions.
|
|
||||||
- respects current tidy Makefile and
|
|
||||||
creation of tidy docs (XSL transformation from tidy's XML output).
|
|
||||||
|
|
||||||
* Mon Oct 25 2003 - Al Dev (Alavoor Vasudevan) <alavoor[at]yahoo.com>
|
|
||||||
- Initial version of %{name} rpm
|
|
Loading…
Reference in a new issue