Update of /cvsroot/fxruby/FXRuby/ext/fox
In directory usw-pr-cvs1:/tmp/cvs-serv23115
Modified Files:
extconf.rb
Log Message:
Updated version to 1.1.13.
Index: extconf.rb
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/extconf.rb,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** extconf.rb 11 Jul 2002 13:33:08 -0000 1.28
--- extconf.rb 11 Jul 2002 16:39:50 -0000 1.29
***************
*** 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
--- 66,73 ----
# Verify version number for FOX from the installed header files
instMajor, instMinor, instLevel = getInstalledFOXVersion().split('.')
! thisMajor, thisMinor, thisLevel = "1.1.13".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.1.13)."
exit
end
|