--- chktex-1.6.3.orig/chktex.1 +++ chktex-1.6.3/chktex.1 @@ -78,13 +78,13 @@ Backup output file. .TP .B "-x --wipeverb" -Ignore contents of `\verb' commands. +Ignore contents of `\\verb' commands. .TP .B "-g --globalrc" Read global .chktexrc file. .TP .B "-I --inputfiles" -Execute \input statements. +Execute \\input statements. .TP .B "-H --headererr" Show errors found in front of \\begin{document} --- chktex-1.6.3.orig/chkweb.1 +++ chktex-1.6.3/chkweb.1 @@ -71,13 +71,13 @@ Backup output file. .TP .B "-x --wipeverb" -Ignore contents of `\verb' commands. +Ignore contents of `\\verb' commands. .TP .B "-g --globalrc" Read global .chktexrc file. .TP .B "-I --inputfiles" -Execute \input statements. +Execute \\input statements. .TP .B "-H --headererr" Show errors found in front of \\begin{document} --- chktex-1.6.3.orig/stamp-h +++ chktex-1.6.3/stamp-h @@ -0,0 +1 @@ +timestamp --- chktex-1.6.3.orig/Makefile +++ chktex-1.6.3/Makefile @@ -0,0 +1,301 @@ +# +# Makefile for ChkTeX project, creates the stuff. +# Copyright (C) 1996 Jens T. Berger Thielemann +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +# Contact the author at: +# Jens Berger +# Spektrumvn. 4 +# N-0666 Oslo +# Norway +# E-mail: +# + + +prefix=/usr +exec_prefix=${prefix} +bindir=${exec_prefix}/bin +datadir=${prefix}/share/chktex +sysconfdir=/etc +srcdir=. +mandir=${prefix}/share/man +INSTALL=/usr/bin/install -c +INSTALL_PROGRAM=${INSTALL} +INSTALL_DATA=${INSTALL} -m 644 +ELISPDIR=${prefix}/share/emacs/site-lisp/ +CLEAN= + +CC=i486-linux-gnu-gcc +CFLAGS=-g -O2 -Wall +CPPFLAGS= -I$(srcdir) -I. $(DEFS) $(USRDEFS) +DEFS=-DHAVE_CONFIG_H +LIBS=-ltermcap +LDFLAGS= +LN_S=ln -s +LATEX=/usr/bin/latex +DVIPS=/usr/bin/dvips +PS2PDF=ps2pdf +PERL5=/usr/bin/perl +LATEX2HTML= +LYNX= +GROFF=groff -man -P-bu -Tlatin1 +SHELL=/bin/sh + +SCRIPTS= $(srcdir)/chkweb deweb + +USRDEFS=-DSYSCONFDIR=\"$(sysconfdir)\" -D__unix__ + + + +##################################################################### + +EXTRA_DIST=configure.in Makefile.in stamp-h.in config.h.in Readme.header.in \ + MakeHTML.in ChkTeX.tex.in aclocal.m4 NEWS \ + chktex.el chkweb deweb.in ChkTeX.tex COPYING chktex.1 chkweb.1 deweb.1 \ + Test.tex input.tex Test.out configure install-sh lacheck chktexrc \ + $(wildcard m4/*.m4) + +DOCFILES_GEN=chktex.doc chkweb.doc deweb.doc ChkTeX.readme ChkTeX.dvi + +CSOURCES=ChkTeX.c FindErrs.c OpSys.c Resource.c Utility.c + +# The sources are the C sources and possibly the files with the same base name +# but ending with .h +SOURCEFILES=$(CSOURCES) $(wildcard $(CSOURCES:.c=.h)) types.h + +DISTFILES=$(DOCFILES_GEN) $(EXTRA_DIST) $(SOURCEFILES) + +all: chktex + +DISTDIR:=chktex-1.6.3 +dist: $(DISTDIR).tar.gz +$(DISTDIR).tar.gz: $(DISTFILES) html + rm -r $(DISTDIR) 2>/dev/null ; true + mkdir $(DISTDIR) + cp --parent $(DISTFILES) $(DISTDIR) + mkdir $(DISTDIR)/html + cp HTML/ChkTeX/*.{html,css} $(DISTDIR)/html + rm $(DISTDIR).tar.gz 2>/dev/null ; true + tar --owner=0 --group=0 -chzf $@ $(DISTDIR) + rm -rf $(DISTDIR) + +######################################################################## + +.c.o: + $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ +CLEAN+=$(CSOURCES:.c=.o) + +.%.d: %.c + $(CC) -M $(CPPFLAGS) $< > $@.tmp + sed 's,\($*\)\.o *:,\1.o $@ : Makefile,g' $@.tmp > $@ + -rm -f $@.tmp 2>/dev/null + +DEPFILES=$(patsubst %.c,.%.d,$(CSOURCES)) +CLEAN+=$(DEPFILES) + +ifeq ($(findstring clean,$(MAKECMDGOALS)),) +include $(DEPFILES) +endif + +###################### MAIN DEPENDENCIES ################################ + +OBJS= ChkTeX.o FindErrs.o OpSys.o Resource.o Utility.o + +MAKETEST= (builddir=`pwd` ; cd $(srcdir) ; $${builddir}/chktex -mall -r -g0 -lchktexrc -v5 Test.tex) + +Test.out: chktex Test.tex ChkTeX.tex + -rm -f Test.out + $(MAKETEST) 1> Test.out + +check: chktex + @echo ">>> Testing that checking algorithms work correctly..." + @-rm -f chktest + $(MAKETEST) 1> chktest + @if cmp -s chktest $(srcdir)/Test.out; then \ + echo ">>> OK!"; \ + rm -f chktest; \ + else \ + echo "***WARNING***"; \ + echo "Problems when checking compilation. This may or may not"; \ + echo "be a problem; anyway, I'm giving you a diff from what the"; \ + echo "results were *supposed* to be..."; \ + diff -u chktest $(srcdir)/Test.out; \ + fi + + +chktex: $(OBJS) + $(CC) $(LDFLAGS) -o chktex $(OBJS) $(LIBS) + +install: chktex ChkTeX.dvi + $(INSTALL) -d $(DESTDIR)$(bindir) + for program in chktex $(SCRIPTS); do \ + $(INSTALL_PROGRAM) $$program $(DESTDIR)$(bindir); \ + done + $(INSTALL) -d $(DESTDIR)$(sysconfdir) + $(INSTALL_DATA) $(srcdir)/chktexrc $(DESTDIR)$(sysconfdir) + if (eval echo "$(SCRIPTS)") | egrep deweb >/dev/null 2>&1; then \ + $(INSTALL) -d $(DESTDIR)$(mandir); \ + $(INSTALL) -d $(DESTDIR)$(mandir)/man1; \ + cp $(srcdir)/deweb.1 $(DESTDIR)$(mandir)/man1; \ + fi + if (eval echo "$(ELISPDIR)") | egrep "/" >/dev/null 2>&1; then \ + $(INSTALL_DATA) $(srcdir)/chktex.el $(DESTDIR)$(ELISPDIR); \ + fi + + + +uninstall: + -rm -f $(DESTDIR)$(bindir)/chktex + for script in $(SCRIPTS); do \ + rm -f $(DESTDIR)$(bindir)/$$script; \ + done + -rm -f $(DESTDIR)$(sysconfdir)/chktexrc + # TODO: remove manpages and chktex.el too + +test: + chktex -v2 -mall $(srcdir)/Test.tex | less -r + +indent: + indent -npsl -bli0 -npcs -nut -i4 $(SOURCEFILES) + +mostlyclean: clean + +clean: + -rm -r $(CLEAN) *.aux *.log *.pdf *.dvi *.ps MakeHTML chktex deweb HTML rme 2> /dev/null + +distclean: clean + -rm -r *.cache *.status *.log *.tar.gz 2> /dev/null + +maintainer-clean: clean + -rm -r config.h *.rme *.ps $(DOCFILES_GEN) install-sh config.guess \ + config.sub Makefile aclocal.m4 autom4te.cache configure missing \ + ChkTeX.tex Readme.header stamp-h \ + mkinstalldirs tags config.status chktest ChkTeX.dvi 2> /dev/null + +dvi: ChkTeX.dvi + +ifneq ($(LATEX2HTML),) +html: ChkTeX.tex MakeHTML + -rm -r HTML + mkdir HTML + chmod u+x MakeHTML + ./MakeHTML $< > HTML/ChkTeX.tex + cd HTML; $(LATEX2HTML) ChkTeX.tex + $(PERL5) -i -pe 's% %%gi;s%\s+([.,?!])%$$1%g;' HTML/ChkTeX/*.html + +ChkTeX.readme: ChkTeX.tex Readme.header MakeHTML + -rm -r rme + mkdir rme + chmod u+x MakeHTML + ./MakeHTML $(srcdir)/ChkTeX.tex > rme/ChkTeX.tex + cd rme; $(LATEX2HTML) -split 0 ChkTeX.tex + $(PERL5) -i -pe 's%LA%La%g;s%TEX%TeX%g;s%(.*)%$$1%g' rme/ChkTeX/*.html + $(PERL5) -i -pe 's% %%gi;s%\s+([.,?!])%$$1%g;' rme/ChkTeX/*.html + $(LYNX) -dump rme/ChkTeX/ChkTeX.html > rme/ChkTeX.rme + cp $(srcdir)/Readme.header ChkTeX.readme + $(PERL5) -e 'undef $$/;$$_=<>;($$_)=/(.*INTRODUCTION(.|\n)*?)[ \t]+ABOUT THIS DOCUMENT/i;s/[ \t]+\n/\n/g;s/\n\n\n/\n/g;s/\[\d+\]//g;print;' rme/ChkTeX.rme >> ChkTeX.readme +else +html ChkTeX.readme: + @echo "latex2html is unavailable on this system, cant create target $@."; exit 1 +endif + +###################### AUTOCONF REMAKING ################################ + +$(srcdir)/configure: configure.in aclocal.m4 + cd $(srcdir) && autoconf + +#autoheader might not change config.h.in, so touch a stamp file. +$(srcdir)/config.h.in: stamp-h.in +$(srcdir)/stamp-h.in: configure.in aclocal.m4 + cd $(srcdir) && autoheader + echo timestamp > $(srcdir)/stamp-h.in + +config.h: stamp-h +stamp-h: config.h.in config.status + ./config.status + +MakeHTML Makefile: Makefile.in config.status + ./config.status + +config.status: configure + ./config.status --recheck + +###################### INDIVIDUAL DEPENDENCIES ########################## + +%.doc: %.1 + $(GROFF) $< > $@ + +ChkTeX.dvi: ChkTeX.tex +ifdef LATEX + $(LATEX) ChkTeX.tex +else + echo "No latex program found by configure" + false +endif + +ChkTeX.ps: ChkTeX.dvi + $(DVIPS) -o ChkTeX.ps ChkTeX.dvi + +ChkTeX.pdf: ChkTeX.ps + $(PS2PDF) $< $@ + +cover: + -./chktex -h + -./chktex Test.tex + -./chktex -v2 -t -o tmptmptmp (Baruch Even) +Uploader: (Baruch Even) +Type: text/tex +Replaces: text/tex/ChkTeX.lha +Version: 1.6.3 +URL: http://www.freesoftware.fsf.org/chktex + + + ##### ### ### ######## ### ## + ### ## ## ## ## ## # + @@ @@ @@@ @@ @@ @@ ####### @@ @ + @@ @@@ @@ @@ @@ @@ ## # @@ + && && && &&&& && @@ & && + &&& && && && && && && @@@@ & && + %%%%% %%% %%% %%% %%% %% && %%% %%% v1.6.3 + && & + %%%%%%% + --- chktex-1.6.3.orig/debian/dirs +++ chktex-1.6.3/debian/dirs @@ -0,0 +1,4 @@ +usr/bin +usr/share +usr/share/man/man1 +usr/share/emacs/site-lisp --- chktex-1.6.3.orig/debian/docs +++ chktex-1.6.3/debian/docs @@ -0,0 +1,2 @@ +ChkTeX.readme +ChkTeX.dvi --- chktex-1.6.3.orig/debian/control +++ chktex-1.6.3/debian/control @@ -0,0 +1,25 @@ +Source: chktex +Section: tex +Priority: optional +Maintainer: Baruch Even +Build-Depends: debhelper (>> 5.0.0), libncurses5-dev, tetex-bin, tetex-extra +Standards-Version: 3.7.2 + +Package: chktex +Architecture: any +Depends: ${shlibs:Depends} +Description: Finds typographic errors in LaTeX + ChkTeX finds typographic errors in LaTeX documents: + * Supports over 40 warnings. + * Supports ``\input'' command; both TeX and LaTeX version. Actually + includes the files. ``TEXINPUTS''-equivalent search path. + * Intelligent warning/error handling. The user may promote/mute + warnings to suit his preferences. You may also mute warnings in + the header of a file; thus killing much unwanted garbage. + * Supports both LaTeX 2.09 and LaTeX2e. + * Flexible output handling. Has some predefined formats and lets the + user specify his own format. Uses a ``printf()'' similar syntax. + ``lacheck'' compatible mode included for interfacing with the + AUC-TeX Emacs mode. + . + Homepage: http://baruch.ev-en.org/proj/chktex/ --- chktex-1.6.3.orig/debian/rules +++ chktex-1.6.3/debian/rules @@ -0,0 +1,96 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +INSTDIR=$(CURDIR)/debian/chktex + +CFLAGS = -Wall -g +INSTALL = install +INSTALL_FILE = $(INSTALL) -p -o root -g root -m 644 +INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755 +INSTALL_SCRIPT = $(INSTALL) -p -o root -g root -m 755 +INSTALL_DIR = $(INSTALL) -p -d -o root -g root -m 755 + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc \ + --enable-emacs-hack=\$${prefix}/share/emacs/site-lisp/ + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) CFLAGS="$(CFLAGS)" chktex ChkTeX.dvi ChkTeX.readme + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + -rm -f ChkTeX.dvi config.status + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/chktex. + $(MAKE) install DESTDIR=$(INSTDIR) + + mkdir -p $(INSTDIR)/usr/share/doc/chktex/html/ + cp $(CURDIR)/html/*.html $(CURDIR)/html/*.css $(INSTDIR)/usr/share/doc/chktex/html/ + + cp chktex.1 chkweb.1 $(INSTDIR)/usr/share/man/man1/ + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- chktex-1.6.3.orig/debian/changelog +++ chktex-1.6.3/debian/changelog @@ -0,0 +1,178 @@ +chktex (1.6.3-2) unstable; urgency=low + + * Apply patch to escape some \ characters, thanks to Nicolas François. + (Closes: #349863) + * Update Standards-Version to 3.7.2, no changes needed. + * Increase compat to 5 and use debhelper 5. + * Added a watch file. + + -- Baruch Even Wed, 1 Nov 2006 07:33:26 +0200 + +chktex (1.6.3-1) unstable; urgency=low + + * New upstream version + * Update homepage location + * Update license (author approved in private e-mail a while ago) + - This only removed the request for donations, the license is GPL v2 or + later now. + * Use DESTDIR since it was added in this version. + * Remove build-dep on hevea, upstream package comes with everything ready. + + -- Baruch Even Sat, 1 Jan 2005 20:26:11 +0000 + +chktex (1.6.2-4) unstable; urgency=low + + [Kaare Hviid] + * Add a hack to fix the build problem (Closes: bug#269073) + + -- Baruch Even Thu, 23 Sep 2004 11:35:29 +0100 + +chktex (1.6.2-3) unstable; urgency=low + + * Do not generate files in the clean target, this should make chktex build + on mips and mipsel. + + -- Baruch Even Tue, 7 Sep 2004 16:10:16 +0100 + +chktex (1.6.2-2) unstable; urgency=low + + * Remove dependency files on clean. (Closes: bug#269073) + + -- Baruch Even Tue, 31 Aug 2004 10:35:38 +0100 + +chktex (1.6.2-1) unstable; urgency=low + + * New upstream version. (Closes: bug#225199, bug#225213, bug#225223) + + -- Baruch Even Fri, 27 Aug 2004 11:47:15 +0100 + +chktex (1.6.1-3) unstable; urgency=low + + * Fix doc-base location. (Closes: bug#227040) + * Add link to homepage in package description. + * Add ChkTeX.dvi to the package. (Closes: bug#225218) + + -- Baruch Even Sat, 5 Jun 2004 08:45:48 +0300 + +chktex (1.6.1-2) unstable; urgency=low + + * Replaced latex2html with hevea since latex2html is now in non-free + (Closes: bug#221327) + * Added support for DEB_BUILD_OPTIONS as per policy, updating standard to + 3.6.1 + * Remove \textit from italic correction list, add \itshape + (Closes: bug#224935) + + -- Baruch Even Thu, 25 Dec 2003 08:41:48 +0200 + +chktex (1.6.1-1) unstable; urgency=low + + * New upstream version + + -- Baruch Even Tue, 3 Jun 2003 20:50:48 +0300 + +chktex (1.6-3) unstable; urgency=low + + * Switch to debhelper from debmake + * Also need tetex-extra for a4.sty + * Install HTML help files + + -- Baruch Even Mon, 23 Sep 2002 10:35:50 +0300 + +chktex (1.6-2) unstable; urgency=low + + * Add Build-Dep on tetex-bin (Closes: bug#161419) + + -- Baruch Even Mon, 23 Sep 2002 07:19:48 +0300 + +chktex (1.6-1) unstable; urgency=low + + * New upstream version + - Fixes memory access bug + + -- Baruch Even Mon, 16 Sep 2002 10:59:36 +0300 + +chktex (1.5-10) unstable; urgency=low + + * Add a README.Debian with a pointer to information on using chktex with + AuCTeX + + -- Baruch Even Sun, 8 Sep 2002 20:53:47 +0300 + +chktex (1.5-9) unstable; urgency=low + + * Avoid Lintian warning description-starts-with-leading-spaces by adding + a first line description before details, Formerly the long desc depended + on the short desc. + * Solve a problem running chktex from within Emacs, the TERM variable isn't + set and chktex gave out an error, it now continues. We only lose the + ReverseOn and ReverseOff markers. (Closes: bug#159007) + * Enable Emacs support file, it appears to have some users after all :-) + + -- Baruch Even Sat, 31 Aug 2002 21:00:14 +0300 + +chktex (1.5-8) unstable; urgency=low + + * Fix to handle \verb* as \verb (Thanks to Bernhard R. Link) + Closes: bug#140715 + + -- Baruch Even Fri, 17 May 2002 03:23:33 +0300 + +chktex (1.5-7) unstable; urgency=high + + * Adopted. closes: bug#142678 + * Added a build-dependency on libncurses5-dev, apparently it has some uses. + * Changed the description to be less verbose. + * Urgency high since there was no real change and I want this in woody. + + -- Baruch Even Fri, 19 Apr 2002 14:59:50 +0300 + +chktex (1.5-6) unstable; urgency=low + + * Orphaned. + + -- Clint Adams Sat, 13 Apr 2002 10:37:14 -0400 + +chktex (1.5-5) unstable; urgency=medium + + * Fix wrapping in extended description. closes: bug#131574. + * Updated to policy 3.5.6.0. + + -- Clint Adams Wed, 30 Jan 2002 22:13:35 -0500 + +chktex (1.5-4) unstable; urgency=medium + + * Remove \emph from ItalCmd in /etc/chktexrc. closes: bug#92923. + + -- Clint Adams Fri, 6 Apr 2001 18:18:41 -0400 + +chktex (1.5-3) unstable; urgency=medium + + * Updated to policy 3.5.2.0. + * Added manpages for chkweb and chktex. closes: bug#62809. + + -- Clint Adams Fri, 30 Mar 2001 14:56:47 -0500 + +chktex (1.5-2) unstable; urgency=low + + * Updated to policy 3.2.1.0. + * Moved from non-free to main. closes: bug#62801. + * Replaced old FSF address from copyright file with + a pointer to /usr/share/common-licenses/GPL. + * Fix permissions on /usr/share/man/man1/deweb.1.gz + * Move chktexrc to /etc, declare as conffile. + + -- Clint Adams Sat, 7 Oct 2000 16:26:49 -0400 + +chktex (1.05-1) non-free; urgency=low + + * Incremented version number to circumvent dinstall fussiness. + + -- Clint Adams Tue, 27 May 1997 16:36:07 -0400 + +chktex (1.05-0) non-free; urgency=low + + * Initial Release. + + -- Clint Adams Wed, 23 Apr 1997 00:58:59 -0400 + --- chktex-1.6.3.orig/debian/copyright +++ chktex-1.6.3/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Baruch Even on +Mon, 23 Sep 2002 10:16:23 +0300. + +It was downloaded from http://savannah.nongnu.org/download/chktex/ + +Copyright: + + ChkTeX, documentation, installations scripts, CWEB filters and other + materials provided are copyright © 1995-96 Jens T. Berger Thielemann, + unless explicitly stated otherwise. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + (/usr/share/common-licenses/GPL) + --- chktex-1.6.3.orig/debian/chktex.doc-base +++ chktex-1.6.3/debian/chktex.doc-base @@ -0,0 +1,9 @@ +Document: chktex +Title: ChkTeX Manual +Author: Jens Berger +Abstract: How to use ChkTeX to check for typographic errors in LaTeX documents. +Section: tex + +Format: HTML +Index: /usr/share/doc/chktex/html/ChkTeX.html +Files: /usr/share/doc/chktex/html/*.html --- chktex-1.6.3.orig/debian/compat +++ chktex-1.6.3/debian/compat @@ -0,0 +1 @@ +5 --- chktex-1.6.3.orig/debian/watch +++ chktex-1.6.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://baruch.ev-en.org/proj/chktex/ (?:.*/)?chktex-([\d+\.]+|\d+)\.tar.* debian uupdate --- chktex-1.6.3.orig/config.h +++ chktex-1.6.3/config.h @@ -0,0 +1,137 @@ +/* config.h. Generated by configure. */ +/* config.h.in. Generated from configure.in by autoheader. */ + +/* Define to 1 if you have the `access' function. */ +#define HAVE_ACCESS 1 + +/* Define to 1 if you have the `closedir' function. */ +#define HAVE_CLOSEDIR 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +#define HAVE_DIRENT_H 1 + +/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ +/* #undef HAVE_DOPRNT */ + +/* Define to 1 if you have the `fileno' function. */ +#define HAVE_FILENO 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `isatty' function. */ +#define HAVE_ISATTY 1 + +/* Define to 1 if you have the `termcap' library (-ltermcap). */ +#define HAVE_LIBTERMCAP 1 + +/* Define to 1 if you have the `termlib' library (-ltermlib). */ +/* #undef HAVE_LIBTERMLIB */ + +/* Define to 1 if you have the header file. */ +#define HAVE_LIMITS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. */ +/* #undef HAVE_NDIR_H */ + +/* Define to 1 if you have the `opendir' function. */ +#define HAVE_OPENDIR 1 + +/* Define to 1 if you have the `readdir' function. */ +#define HAVE_READDIR 1 + +/* Define to 1 if you have the `stat' function. */ +#define HAVE_STAT 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STAT_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_STDARG_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strcasecmp' function. */ +#define HAVE_STRCASECMP 1 + +/* Define to 1 if you have the `strdup' function. */ +#define HAVE_STRDUP 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strlwr' function. */ +/* #undef HAVE_STRLWR */ + +/* Define to 1 if you have the `strtol' function. */ +#define HAVE_STRTOL 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +/* #undef HAVE_SYS_DIR_H */ + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +/* #undef HAVE_SYS_NDIR_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_TERMCAP_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_TERMLIB_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `vprintf' function. */ +#define HAVE_VPRINTF 1 + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "ChkTeX" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "ChkTeX 1.6.3" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "chktex" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.6.3" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* "Strip debug info" */ +/* #undef STRIP_DEBUG */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +/* #undef inline */ +#endif + +/* Define to `unsigned' if does not define. */ +/* #undef size_t */