home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / kpathsea / config.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  51 lines

  1. /* config.h: master configuration file, included first by all compilable
  2.    source files (not headers).
  3.  
  4. Copyright (C) 1993 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef KPATHSEA_CONFIG_H
  21. #define KPATHSEA_CONFIG_H
  22.  
  23. /* System dependencies that are figured out by `configure'.  If we are
  24.    compiling standalone, we get our c-auto.h.  Otherwise, the package
  25.    containing us must provide this (unless it can somehow generate ours
  26.    from c-auto.h.in).  We use <...> instead of "..." so that the current
  27.    cpp directory (i.e., kpathsea/) won't be searched. */
  28. #include <c-auto.h>
  29.  
  30. /* ``Standard'' system headers.  */
  31. #include <kpathsea/c-std.h>
  32.  
  33. /* Macros to discard or keep prototypes.  */
  34. #include <kpathsea/c-proto.h>
  35.  
  36. /* Our own definitions of supposedly always-useful stuff.  */
  37. #include <kpathsea/lib.h>
  38. #include <kpathsea/types.h>
  39.  
  40. /* Support extra runtime tracing.  */
  41. #include <kpathsea/debug.h>
  42.  
  43. /* If you want to find subdirectories in a directory with non-Unix
  44.    semantics (specifically, if a directory with no subdirectories does
  45.    not have exactly two links), define this.  */
  46. #if !defined (DOS) && !defined (VMS) && !defined (VMCMS)
  47. #define UNIX_ST_NLINK
  48. #endif /* not DOS and not VMS and not VMCMS */
  49.  
  50. #endif /* not KPATHSEA_CONFIG_H */
  51.