home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / src / version.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  734b  |  30 lines

  1. /*
  2.  * Copyright (c) 1994 david d `zoo' zuhn
  3.  * Copyright (c) 1994 Free Software Foundation, Inc.
  4.  * Copyright (c) 1992, Brian Berliner and Jeff Polk
  5.  * Copyright (c) 1989-1992, Brian Berliner
  6.  * 
  7.  * You may distribute under the terms of the GNU General Public License as
  8.  * specified in the README file that comes with this  CVS source distribution.
  9.  * 
  10.  * version.c - the CVS version number
  11.  */
  12.  
  13. #include "cvs.h"
  14.  
  15. char *version_string = "\nConcurrent Versions System (CVS) 1.8.7";
  16.  
  17. #ifdef CLIENT_SUPPORT
  18. #ifdef SERVER_SUPPORT
  19. char *config_string = " (client/server)\n";
  20. #else
  21. char *config_string = " (client)\n";
  22. #endif
  23. #else
  24. #ifdef SERVER_SUPPORT
  25. char *config_string = " (server)\n";
  26. #else
  27. char *config_string = "\n";
  28. #endif
  29. #endif
  30.