version.pas 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 = '13';
  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.8 1999-06-27 15:49:19 michael
  59. Updated patchnumber
  60. Revision 1.7 1999/06/18 11:03:11 peter
  61. * merged
  62. Revision 1.6.2.2 1999/06/18 10:55:34 peter
  63. * version fixes
  64. * EXTRAUNITS to set extra units that are build and needs to be cleaned
  65. Revision 1.6.2.1 1999/06/18 09:54:48 peter
  66. + minorpatch which is 'a' for 0.99.12a
  67. Revision 1.6 1999/06/08 12:52:38 peter
  68. * 0.99.12
  69. Revision 1.5 1998/12/23 14:02:01 peter
  70. * daniels patches against the latest versions
  71. Revision 1.3 1998/12/15 10:23:34 peter
  72. + -iSO, -iSP, -iTO, -iTP
  73. Revision 1.2 1998/12/14 12:58:45 peter
  74. * version 0.99.11
  75. + globtype,tokens,version unit splitted from globals
  76. }