home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / threads / src / config_header.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  81 lines

  1. /* Copyright (C) 1992, the Florida State University
  2.    Distributed by the Florida State University under the terms of the
  3.    GNU Library General Public License.
  4.  
  5. This file is part of Pthreads.
  6.  
  7. Pthreads is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Library General Public
  9. License as published by the Free Software Foundation (version 2).
  10.  
  11. Pthreads is distributed "AS IS" in the hope that it will be
  12. useful, but WITHOUT ANY WARRANTY; without even the implied
  13. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. See the GNU Library General Public License for more details.
  15.  
  16. You should have received a copy of the GNU Library General Public
  17. License along with Pthreads; see the file COPYING.  If not, write
  18. to the Free Software Foundation, 675 Mass Ave, Cambridge,
  19. MA 02139, USA.
  20.  
  21. Report problems and direct all questions to:
  22.  
  23.   pthreads-bugs@ada.cs.fsu.edu
  24.  
  25.   @(#)config_header.c    2.5 4/12/95
  26.  
  27. */
  28.  
  29. /*
  30.  * Create configuration header files depending on compile options
  31.  */
  32.  
  33. main(argc, argv)
  34.      int argc;
  35.      char *argv[];
  36. {
  37.   short local = (argv[1][0] == '-' && argv[1][1] == 'l');
  38.  
  39.   printf("/* Copyright (C) 1992, the Florida State University\n");
  40.   printf("   Distributed by the Florida State University under the terms of the\n");
  41.   printf("   GNU Library General Public License.\n");
  42.   printf("\n");
  43.   printf("This file is part of Pthreads.\n");
  44.   printf("\n");
  45.   printf("Pthreads is free software; you can redistribute it and/or\n");
  46.   printf("modify it under the terms of the GNU Library General Public\n");
  47.   printf("License as published by the Free Software Foundation (version 2).\n");
  48.   printf("\n");
  49.   printf("Pthreads is distributed \"AS IS\" in the hope that it will be\n");
  50.   printf("useful, but WITHOUT ANY WARRANTY; without even the implied\n");
  51.   printf("warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
  52.   printf("See the GNU Library General Public License for more details.\n");
  53.   printf("\n");
  54.   printf("You should have received a copy of the GNU Library General Public\n");
  55.   printf("License along with Pthreads; see the file COPYING.  If not, write\n");
  56.   printf("to the Free Software Foundation, 675 Mass Ave, Cambridge,\n");
  57.   printf("MA 02139, USA.\n");
  58.   printf("\n");
  59.   printf("Report problems and direct all questions to:\n");
  60.   printf("\n");
  61.   printf("  pthreads-bugs@ada.cs.fsu.edu\n");
  62.   printf("\n");
  63.   printf("  %@(#)config_header.c    2.5% %4/12/95%\n");
  64.   printf("*/\n");
  65.   printf("\n");
  66.  
  67.   printf("/*\n");
  68.   printf(" * configuration header file to identify compile options\n");
  69.   printf(" */\n");
  70.   printf("\n");
  71.  
  72.   for (argc--; argc; argc--)
  73.     if (argv[argc][0] == '-' && argv[argc][1] == 'D') {
  74.       printf("#ifndef %s%s\n", &argv[argc][2], local ? "" : "_NP");
  75.       printf("#define %s%s\n", &argv[argc][2], local ? "" : "_NP");
  76.       printf("#endif\n\n");
  77.     }
  78.  
  79.   return(0);
  80. }
  81.