aboutsummaryrefslogtreecommitdiff
path: root/fixincludes/README
AgeCommit message (Collapse)AuthorFilesLines
2015-01-28checksums and test-textBruce Korb1-21/+23
* fixincl.tpl: add a check sum acceptance test * fixlib.h: enumerate it * fixincl.c: handle it * README: document it and document the handling of test_text From-SVN: r220215
2014-12-06clarificationBruce Korb1-1/+3
From-SVN: r218448
2012-10-29Omit testing wrap and replacement fixes during testing.Bruce Korb1-0/+3
This exposes a missing result and tests a test that got hidden before. From-SVN: r192952
2012-03-15README (EXAMPLES OF FIXES): Update.Tristan Gingold1-1/+1
2012-03-15 Tristan Gingold <gingold@adacore.com> * README (EXAMPLES OF FIXES): Update. From-SVN: r185416
2010-03-12Add comment about changing directory references.Bruce Korb1-1/+1
From-SVN: r157401
2010-03-12the fixinc directory is now "fixincludes"Bruce Korb1-2/+2
From-SVN: r157398
2009-09-08sed portability fixes in fixincludesRalf Wildenhues1-6/+7
fixincludes/: PR testsuite/29737 PR bootstrap/35938 PR testsuite/39655 * check.tpl: Fix typos. * README: Likewise. Also, document that 'select' uses ERE. * mkheaders.in: Update copyright years in --version output. * inclhack.def (sco_math): Add missing final newline in sed script 'a', 'c', or 'i' commands, for BSD sed. (sco_math): In the text of 'a', 'c', or 'i' sed commands, prepend leading white space with a backslash to avoid the whitespace to be removed by BSD sed. (sco_math): Match plain 'C++' instead of 'C\+\+' in sed regex. (x11_new): Fix sed expression, for BSD sed. (glibc_mutex_init): Fix newlines in sed 's' command replacement part, for GNU sed 3.02 and Solaris sed. (glibc_mutex_init): Replace unportable \+ sed regex operator with \{1,\}. (glibc_c99_inline_2, glibc_mutex_init): Avoid unportable sed alternation \| regex operator. (solaris_complex): Remove superfluous backslashes from replacement string. Replace \+ operator with \{1,\}. * tests/base/Xm/Traversal.h: This is fixed for BSD sed now. * fixincl.x: Regenerate. From-SVN: r151518
2009-08-28README (files): Describe files entry.Bruce Korb1-0/+5
2009-08-28 Bruce Korb <bkorb@gnu.org> Steve Ellcey <sje@cup.hp.com> * README (files): Describe files entry. * inclhack.def (hpux_stdint_least): Remove. (hpux_stdint_fast): Remove. (hpux_stdint_fast): Remove. (hpux_stdint_least_fast): New. (hpux_inttype_int_least8_t): Remove. (hpux_inttype_int8_t): Modify. * fixincl.x: Regenerate. * tests/base/stdint.h: Update. * tests/base/sys/_inttypes.h: Update. Co-Authored-By: Steve Ellcey <sje@cup.hp.com> From-SVN: r151178
2008-01-15Clarify the second argument usage for "c-fix"-es.Bruce Korb1-5/+5
From-SVN: r131550
2008-01-15Clarify the second argument usage for "c-fix"-es.Bruce Korb1-5/+6
From-SVN: r131549
2007-01-06Use fnmatch for name matching.Bruce Korb1-14/+16
Co-Authored-By: Daniel Franke <franke.daniel@gmail.com> From-SVN: r120528
2006-09-28Clarify the fix application testsBruce Korb1-7/+26
From-SVN: r117270
2006-09-24Clarify how tests are handledBruce Korb1-0/+4
From-SVN: r117185
2006-05-14README: Fix typo.Bernhard Fischer1-1/+1
2006-05-14 Bernhard Fischer <aldot@gcc.gnu.org> * README: Fix typo. From-SVN: r113757
2004-08-31Made fixincludes a toplevel build module.Paolo Bonzini1-0/+299
toplevel: 2004-08-31 Paolo Bonzini <bonzini@gnu.org> * Makefile.def (build_modules): Add fixincludes. (dependencies): Make gcc depend on fixincludes. * configure.in (build_tools): Add fixincludes. (build_configdirs): Always include build_libs. * Makefile.in: Regenerate. * configure: Regenerate. contrib: 2004-08-04 Paolo Bonzini <bonzini@gnu.org> * gcc_update: Add fixincludes. fixincludes: 2004-08-31 Paolo Bonzini <bonzini@gnu.org> * .cvsignore: New. * Makefile.in: From gcc/fixinc/Makefile.in, making it fully autoconfiscated. * configure.ac: New. * config.h.in: Generate. * configure: Generate. * aclocal.m4: New. * fixlib.h: Remove inclusions of gcc files. * system.h: New. Other files copied from gcc/fixinc. gcc: 2004-08-31 Paolo Bonzini <bonzini@gnu.org> * Makefile.in (build_subdir): New substitution. (fixinc.sh): Simplify heavily since fixincludes is already built. (stmp-fixinc): Depend on specs.ready. (install-mkheaders): Use new location of fixincludes. (clean): Do not descend into fixinc. (FORBUILD): Replace with ../$(build_subdir). * configure.ac (build_subdir): Substitute. (FORBUILD): Do not set. (all_outputs): Remove fixinc/Makefile. (default commands): Do not create links in fixinc. * mkfixinc.sh: New, from fixinc/mkfixinc.sh without the fixincludes configuration steps and substituting @FIXINCL@ in fixinc.in. * fixinc.in: New, from fixinc/fixincl.sh. * fixinc/*: Removed. From-SVN: r86824