fpc/rtl/inc/version.inc
peter e64becf81c * moved getopts to inc/, all supported OS's need argc,argv exported
+ strpas, strlen are now exported in the systemunit
  * removed logs
  * removed $ifdef ver_above
1998-05-12 10:42:41 +00:00

159 lines
3.0 KiB
PHP

{------------------------------------------------------------------------------
Define VER_ABOVE_xx For easier Version support
------------------------------------------------------------------------------}
{$IFDEF VER0_99_0}
{$DEFINE VER_ABOVE0_99_0}
{$ENDIF VER0_99_0}
{$IFDEF VER0_99}
{$DEFINE VER_ABOVE0_99}
{$ENDIF VER0_99}
{$IFDEF VER0_9_8}
{$DEFINE VER_ABOVE0_9_8}
{$ENDIF VER0_9_8}
{$IFDEF VER0_9_7}
{$DEFINE VER_ABOVE0_9_7}
{$ENDIF VER0_9_7}
{$IFDEF VER0_9_6}
{$DEFINE VER_ABOVE0_9_6}
{$ENDIF VER0_9_6}
{$IFDEF VER0_9_5}
{$DEFINE VER_ABOVE0_9_5}
{$ENDIF VER0_9_5}
{$IFDEF VER0_9_4}
{$DEFINE VER_ABOVE0_9_4}
{$ENDIF VER0_9_4}
{$IFDEF VER0_9_3}
{$DEFINE VER_ABOVE0_9_3}
{$ENDIF VER0_9_3}
{$IFDEF VER0_9_2}
{$DEFINE VER_ABOVE0_9_2}
{$ENDIF VER0_9_2}
{$IFDEF VER0_9_1}
{$DEFINE VER_ABOVE0_9_1}
{$ENDIF VER0_9_1}
{$IFDEF VER0_9}
{$DEFINE VER_ABOVE0_9}
{$ENDIF VER0_9}
{$IFDEF VER0_6_6}
{$DEFINE VER_ABOVE0_6_6}
{$ENDIF VER0_6_6}
{$IFDEF VER0_6_5}
{$DEFINE VER_ABOVE0_6_5}
{$ENDIF VER0_6_5}
{$IFDEF VER0_6_4}
{$DEFINE VER_ABOVE0_6_4}
{$ENDIF VER0_6_4}
{$IFDEF VER0_6_3}
{$DEFINE VER_ABOVE0_6_3}
{$ENDIF VER0_6_3}
{$IFDEF VER0_6_2}
{$DEFINE VER_ABOVE0_6_2}
{$ENDIF VER0_6_2}
{$IFDEF VER0_6_1}
{$DEFINE VER_ABOVE0_6_1}
{$ENDIF VER0_6_1}
{$IFDEF VER0_6}
{$DEFINE VER_ABOVE0_6}
{$ENDIF VER0_6}
{------------------------------------------------------------------------------
Higher versions always include lower versions, so define them also
------------------------------------------------------------------------------}
{$IFDEF VER_ABOVE0_99_0}
{$DEFINE VER_ABOVE0_99}
{$ENDIF VER_ABOVE0_99_0}
{$IFDEF VER_ABOVE0_99}
{$DEFINE VER_ABOVE0_9_8}
{$ENDIF VER_ABOVE0_99}
{$IFDEF VER_ABOVE0_9_8}
{$DEFINE VER_ABOVE0_9_7}
{$ENDIF VER_ABOVE0_9_8}
{$IFDEF VER_ABOVE0_9_7}
{$DEFINE VER_ABOVE0_9_6}
{$ENDIF VER_ABOVE0_9_7}
{$IFDEF VER_ABOVE0_9_6}
{$DEFINE VER_ABOVE0_9_5}
{$ENDIF VER_ABOVE0_9_6}
{$IFDEF VER_ABOVE0_9_5}
{$DEFINE VER_ABOVE0_9_4}
{$ENDIF VER_ABOVE0_9_5}
{$IFDEF VER_ABOVE0_9_4}
{$DEFINE VER_ABOVE0_9_3}
{$ENDIF VER_ABOVE0_9_4}
{$IFDEF VER_ABOVE0_9_3}
{$DEFINE VER_ABOVE0_9_2}
{$ENDIF VER_ABOVE0_9_3}
{$IFDEF VER_ABOVE0_9_2}
{$DEFINE VER_ABOVE0_9_1}
{$ENDIF VER_ABOVE0_9_2}
{$IFDEF VER_ABOVE0_9_1}
{$DEFINE VER_ABOVE0_9}
{$ENDIF VER_ABOVE0_9_1}
{$IFDEF VER_ABOVE0_9}
{$DEFINE VER_ABOVE0_6_6}
{$ENDIF VER_ABOVE0_9}
{$IFDEF VER_ABOVE0_6_6}
{$DEFINE VER_ABOVE0_6_5}
{$ENDIF VER_ABOVE0_6_6}
{$IFDEF VER_ABOVE0_6_5}
{$DEFINE VER_ABOVE0_6_4}
{$ENDIF VER_ABOVE0_6_5}
{$IFDEF VER_ABOVE0_6_4}
{$DEFINE VER_ABOVE0_6_3}
{$ENDIF VER_ABOVE0_6_4}
{$IFDEF VER_ABOVE0_6_3}
{$DEFINE VER_ABOVE0_6_2}
{$ENDIF VER_ABOVE0_6_3}
{$IFDEF VER_ABOVE0_6_2}
{$DEFINE VER_ABOVE0_6_1}
{$ENDIF VER_ABOVE0_6_2}
{$IFDEF VER_ABOVE0_6_1}
{$DEFINE VER_ABOVE0_6}
{$ENDIF VER_ABOVE0_6_1}
{
$Log$
Revision 1.2 1998-05-12 10:42:46 peter
* moved getopts to inc/, all supported OS's need argc,argv exported
+ strpas, strlen are now exported in the systemunit
* removed logs
* removed $ifdef ver_above
}