version.pas 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. $Id$
  3. Copyright (C) 1993-98 by Florian Klaempfl
  4. Version/target constants
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit version;
  19. interface
  20. const
  21. { word version for ppu file }
  22. wordversion = (0 shl 11)+99;
  23. { version string }
  24. version_nr = '0';
  25. release_nr = '99';
  26. patch_nr = '11';
  27. version_string = version_nr+'.'+release_nr+'.'+patch_nr;
  28. { date string }
  29. {$ifdef FPC}
  30. date_string = {$I %DATE%};
  31. {$else}
  32. date_string = 'N/A';
  33. {$endif}
  34. { target cpu string }
  35. {$ifdef i386}
  36. target_cpu_string = 'i386';
  37. {$endif}
  38. {$ifdef m68k}
  39. target_cpu_string = 'm68k';
  40. {$endif}
  41. {$ifdef alpha}
  42. target_cpu_string = 'alpha';
  43. {$endif}
  44. { source cpu string }
  45. {$ifdef cpu86}
  46. source_cpu_string = 'i386';
  47. {$endif}
  48. {$ifdef cpu68}
  49. source_cpu_string = 'm68k';
  50. {$endif}
  51. implementation
  52. end.
  53. {
  54. $Log$
  55. Revision 1.1 2000-07-13 09:48:33 michael
  56. + Initial import
  57. Revision 1.1 1999/01/28 19:56:12 peter
  58. * moved to include compiler/gdb independent of each other
  59. Revision 1.1 1998/12/22 14:27:54 peter
  60. * moved
  61. Revision 1.2 1998/12/18 17:17:06 peter
  62. * updated with new versions from compiler
  63. }