version.pas 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 12)+99;
  23. { version string }
  24. version_nr = '0';
  25. release_nr = '99';
  26. patch_nr = '12';
  27. minorpatch = 'a';
  28. version_string = version_nr+'.'+release_nr+'.'+patch_nr;
  29. full_version_string = version_nr+'.'+release_nr+'.'+patch_nr+minorpatch;
  30. { date string }
  31. {$ifdef FPC}
  32. date_string = {$I %DATE%};
  33. {$else}
  34. date_string = 'N/A';
  35. {$endif}
  36. { target cpu string }
  37. {$ifdef i386}
  38. target_cpu_string = 'i386';
  39. {$endif}
  40. {$ifdef m68k}
  41. target_cpu_string = 'm68k';
  42. {$endif}
  43. {$ifdef alpha}
  44. target_cpu_string = 'alpha';
  45. {$endif}
  46. { source cpu string }
  47. {$ifdef cpu86}
  48. source_cpu_string = 'i386';
  49. {$endif}
  50. {$ifdef cpu68}
  51. source_cpu_string = 'm68k';
  52. {$endif}
  53. implementation
  54. begin
  55. end.
  56. {
  57. $Log$
  58. Revision 1.7 1999-06-18 11:03:11 peter
  59. * merged
  60. Revision 1.6.2.2 1999/06/18 10:55:34 peter
  61. * version fixes
  62. * EXTRAUNITS to set extra units that are build and needs to be cleaned
  63. Revision 1.6.2.1 1999/06/18 09:54:48 peter
  64. + minorpatch which is 'a' for 0.99.12a
  65. Revision 1.6 1999/06/08 12:52:38 peter
  66. * 0.99.12
  67. Revision 1.5 1998/12/23 14:02:01 peter
  68. * daniels patches against the latest versions
  69. Revision 1.3 1998/12/15 10:23:34 peter
  70. + -iSO, -iSP, -iTO, -iTP
  71. Revision 1.2 1998/12/14 12:58:45 peter
  72. * version 0.99.11
  73. + globtype,tokens,version unit splitted from globals
  74. }