cvs commit: src/contrib/csup GNUmakefile Makefile README TODO attrstack.c attrstack.h config.c config.h csup.1 detailer.c detailer.h diff.c diff.h fattr.c fattr.h fattr_bsd.h fattr_posix.h fixups.c fixups.h fnmatch.c fnmatch.h globtree.c globtree.h ...

Maxime Henrion mux at FreeBSD.org
Mon May 15 06:40:54 PDT 2006


mux         2006-05-15 13:40:40 UTC

  FreeBSD src repository

  Added files:           (Branch: RELENG_6)
    contrib/csup         GNUmakefile Makefile README TODO 
                         attrstack.c attrstack.h config.c config.h 
                         csup.1 detailer.c detailer.h diff.c 
                         diff.h fattr.c fattr.h fattr_bsd.h 
                         fattr_posix.h fixups.c fixups.h fnmatch.c 
                         fnmatch.h globtree.c globtree.h idcache.c 
                         idcache.h keyword.c keyword.h lister.c 
                         lister.h main.c main.h misc.c misc.h 
                         mux.c mux.h parse.y pathcomp.c pathcomp.h 
                         proto.c proto.h queue.h status.c status.h 
                         stream.c stream.h threads.c threads.h 
                         token.h token.l updater.c updater.h 
  Log:
  MFC import of csup
  
  Revision     Changes    Path
  1.1.1.2.2.1  +63 -0     src/contrib/csup/GNUmakefile (new)
  1.1.1.2.2.1  +44 -0     src/contrib/csup/Makefile (new)
  1.1.1.1.2.1  +39 -0     src/contrib/csup/README (new)
  1.1.1.2.2.1  +31 -0     src/contrib/csup/TODO (new)
  1.1.1.1.2.1  +90 -0     src/contrib/csup/attrstack.c (new)
  1.1.1.1.2.1  +40 -0     src/contrib/csup/attrstack.h (new)
  1.1.1.2.2.1  +584 -0    src/contrib/csup/config.c (new)
  1.1.1.2.2.1  +126 -0    src/contrib/csup/config.h (new)
  1.1.1.2.2.1  +899 -0    src/contrib/csup/csup.1 (new)
  1.1.1.1.2.1  +339 -0    src/contrib/csup/detailer.c (new)
  1.1.1.1.2.1  +33 -0     src/contrib/csup/detailer.h (new)
  1.1.1.1.2.1  +214 -0    src/contrib/csup/diff.c (new)
  1.1.1.1.2.1  +50 -0     src/contrib/csup/diff.h (new)
  1.1.1.2.2.1  +938 -0    src/contrib/csup/fattr.c (new)
  1.1.1.1.2.1  +115 -0    src/contrib/csup/fattr.h (new)
  1.1.1.1.2.1  +52 -0     src/contrib/csup/fattr_bsd.h (new)
  1.1.1.1.2.1  +48 -0     src/contrib/csup/fattr_posix.h (new)
  1.1.1.1.2.1  +198 -0    src/contrib/csup/fixups.c (new)
  1.1.1.1.2.1  +48 -0     src/contrib/csup/fixups.h (new)
  1.1.1.1.2.1  +199 -0    src/contrib/csup/fnmatch.c (new)
  1.1.1.1.2.1  +58 -0     src/contrib/csup/fnmatch.h (new)
  1.1.1.2.2.1  +393 -0    src/contrib/csup/globtree.c (new)
  1.1.1.1.2.1  +45 -0     src/contrib/csup/globtree.h (new)
  1.1.1.1.2.1  +421 -0    src/contrib/csup/idcache.c (new)
  1.1.1.1.2.1  +41 -0     src/contrib/csup/idcache.h (new)
  1.1.1.1.2.1  +502 -0    src/contrib/csup/keyword.c (new)
  1.1.1.1.2.1  +53 -0     src/contrib/csup/keyword.h (new)
  1.1.1.2.2.1  +439 -0    src/contrib/csup/lister.c (new)
  1.1.1.1.2.1  +33 -0     src/contrib/csup/lister.h (new)
  1.1.1.2.2.1  +339 -0    src/contrib/csup/main.c (new)
  1.1.1.1.2.1  +29 -0     src/contrib/csup/main.h (new)
  1.1.1.3.2.1  +522 -0    src/contrib/csup/misc.c (new)
  1.1.1.2.2.1  +130 -0    src/contrib/csup/misc.h (new)
  1.1.1.1.2.1  +1201 -0   src/contrib/csup/mux.c (new)
  1.1.1.1.2.1  +45 -0     src/contrib/csup/mux.h (new)
  1.1.1.1.2.1  +91 -0     src/contrib/csup/parse.y (new)
  1.1.1.1.2.1  +182 -0    src/contrib/csup/pathcomp.c (new)
  1.1.1.1.2.1  +44 -0     src/contrib/csup/pathcomp.h (new)
  1.1.1.2.2.1  +1020 -0   src/contrib/csup/proto.c (new)
  1.1.1.1.2.1  +49 -0     src/contrib/csup/proto.h (new)
  1.1.1.2.2.1  +227 -0    src/contrib/csup/queue.h (new)
  1.1.1.1.2.1  +842 -0    src/contrib/csup/status.c (new)
  1.1.1.1.2.1  +72 -0     src/contrib/csup/status.h (new)
  1.1.1.1.2.1  +1080 -0   src/contrib/csup/stream.c (new)
  1.1.1.1.2.1  +72 -0     src/contrib/csup/stream.h (new)
  1.1.1.1.2.1  +176 -0    src/contrib/csup/threads.c (new)
  1.1.1.1.2.1  +38 -0     src/contrib/csup/threads.h (new)
  1.1.1.2.2.1  +49 -0     src/contrib/csup/token.h (new)
  1.1.1.2.2.1  +80 -0     src/contrib/csup/token.l (new)
  1.1.1.2.2.1  +1011 -0   src/contrib/csup/updater.c (new)
  1.1.1.1.2.1  +33 -0     src/contrib/csup/updater.h (new)


More information about the cvs-all mailing list