Update of /cvsroot/fxruby/FXRuby/ext/fox
In directory usw-pr-cvs1:/tmp/cvs-serv22629/ext/fox
Modified Files:
Tag: release10
extconf.rb
Log Message:
Bumped the version number up to 1.0.11.
Index: extconf.rb
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/extconf.rb,v
retrieving revision 1.27.2.4
retrieving revision 1.27.2.5
diff -C2 -d -r1.27.2.4 -r1.27.2.5
*** extconf.rb 30 May 2002 13:58:02 -0000 1.27.2.4
--- extconf.rb 20 Jun 2002 14:18:47 -0000 1.27.2.5
***************
*** 66,73 ****
# Verify version number for FOX from the installed header files
instMajor, instMinor, instLevel = getInstalledFOXVersion().split('.')
! thisMajor, thisMinor, thisLevel = "1.0.10".split('.')
unless (instMajor == thisMajor) && (instMinor == thisMinor)
puts "The version number for this installation of FOX appears to be inconsistent"
! puts "with this release of FXRuby (1.0.10)."
exit
end
--- 66,73 ----
# Verify version number for FOX from the installed header files
instMajor, instMinor, instLevel = getInstalledFOXVersion().split('.')
! thisMajor, thisMinor, thisLevel = "1.0.11".split('.')
unless (instMajor == thisMajor) && (instMinor == thisMinor)
puts "The version number for this installation of FOX appears to be inconsistent"
! puts "with this release of FXRuby (1.0.11)."
exit
end
|