Daemon News Ezine BSD News BSD Mall BSD Support Forum BSD Advocacy BSD Updates

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

cvs commit: projects/csup attrstack.c config.c config.h diff.c keyword.c lister.c main.c misc.h pathcomp.c proto.c status.c stream.h



mux         2006-01-26 04:47:53 UTC

  FreeBSD projects repository

  Modified files:
    csup                 attrstack.c config.c config.h diff.c 
                         keyword.c lister.c main.c misc.h 
                         pathcomp.c proto.c status.c stream.h 
  Log:
  - In misc.h, if we're not compiling in a C99 environment, try to define
    the C99 uintXX_t types ourselves by aliasing them to the more portable
    u_intXX_t types, otherwise, just include stdint.h.
  - Stop including stdint.h everywhere else, and include misc.h if needed.
  - Remove many includes of sys/types.h that are not needed anymore; only
    keep the includes when we're going to include sys/stat.h afterwards.
  - Fix two places where we were include sys/queue.h instead of our
    queue.h include.
  
  With these fixes, the code builds under RELENG_4 again.
  
  Revision  Changes    Path
  1.2       +0 -2      projects/csup/attrstack.c
  1.35      +1 -1      projects/csup/config.c
  1.25      +1 -1      projects/csup/config.h
  1.18      +1 -2      projects/csup/diff.c
  1.21      +0 -2      projects/csup/keyword.c
  1.17      +0 -2      projects/csup/lister.c
  1.22      +0 -3      projects/csup/main.c
  1.18      +22 -0     projects/csup/misc.h
  1.2       +0 -2      projects/csup/pathcomp.c
  1.52      +2 -2      projects/csup/proto.c
  1.4       +1 -3      projects/csup/status.c
  1.18      +2 -0      projects/csup/stream.h