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. begin
  53. end.
  54. {
  55. $Log$
  56. Revision 1.5 1998-12-23 14:02:01 peter
  57. * daniels patches against the latest versions
  58. Revision 1.3 1998/12/15 10:23:34 peter
  59. + -iSO, -iSP, -iTO, -iTP
  60. Revision 1.2 1998/12/14 12:58:45 peter
  61. * version 0.99.11
  62. + globtype,tokens,version unit splitted from globals
  63. }