home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / nn.tar / nn-6.5.1 / conf / s-aux1-1.h < prev    next >
C/C++ Source or Header  |  1995-04-29  |  741b  |  35 lines

  1. /*
  2.  *    This version is for A/UX 1.1 (approx. System V Release 3.1)
  3.  */
  4.  
  5. #define NO_DIRENT_H
  6. #include "s-sys5.h"
  7.  
  8. /*
  9.  *    Define if your system has BSD like job control (SIGTSTP works)
  10.  */
  11.  
  12. #define HAVE_JOBCONTROL            /* */
  13.  
  14. /*
  15.  *    Define if your system provides the "directory(3X)" access routines
  16.  *
  17.  *    If true, include the header file(s) required by the package below
  18.  *    (remember that <sys/types.h> or equivalent is included above)
  19.  *    Also typedef Direntry to the proper struct type.
  20.  */
  21.  
  22. #define    HAVE_DIRECTORY            /* */
  23.  
  24. #include <sys/dir.h>            /* A/UX */
  25.  
  26. typedef struct direct Direntry;        /* System V */
  27.  
  28. /*
  29.  *    Define HAVE_MULTIGROUP if system has simultaneous multiple group
  30.  *    membership capability (BSD style).
  31.  */
  32.  
  33. #define HAVE_MULTIGROUP
  34.  
  35.