I''m at a definite loss here. I downloaded foxGUIb v0.7. I unzipped the files. (Windows XP pro) I ran ruby install.rb in the libGUIb directory. I switched to the foxGUIb directory I tried running foxGUIb_win32.rbw Nothing happened. I tried running ruby foxGUIb.rb I get the following error. please install libGUIb!! no such file to load -- fox16 Here is the text in the installed files C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb I have other fox gui''s that run fine with require ''fox16'' Anyone have a clue as to what has gone wrong? Ernie
On 2/19/07, Ernest Ellingson <erne at powernav.com> wrote:> I''m at a definite loss here. I downloaded foxGUIb v0.7. I unzipped the > files. (Windows XP pro) > I ran ruby install.rb in the libGUIb directory. > I switched to the foxGUIb directory > I tried running foxGUIb_win32.rbw > Nothing happened. > > I tried running ruby foxGUIb.rb > I get the following error. > > > please install libGUIb!! > no such file to load -- fox16 >all i can say is that libGUIb16.rb is there, gets called and fails in its very first line trying to require fox16. i got no clue about what is going wrong... what happens when you do require "fox16" in irb? what exception stacktrace do you get when you launch libGUIb16.rb directly?> > Here is the text in the installed files > C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb > C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb > > I have other fox gui''s that run fine with require ''fox16'' > > Anyone have a clue as to what has gone wrong? > > Ernie >
Meinrad Recheis wrote:> On 2/19/07, Ernest Ellingson <erne at powernav.com> wrote: > >> I''m at a definite loss here. I downloaded foxGUIb v0.7. I unzipped the >> files. (Windows XP pro) >> I ran ruby install.rb in the libGUIb directory. >> I switched to the foxGUIb directory >> I tried running foxGUIb_win32.rbw >> Nothing happened. >> >> I tried running ruby foxGUIb.rb >> I get the following error. >> >> >> please install libGUIb!! >> no such file to load -- fox16 >> >> > all i can say is that libGUIb16.rb is there, gets called and fails in > its very first line trying to require fox16. i got no clue about what > is going wrong... > > what happens when you do > > require "fox16" > > in irb? > what exception stacktrace do you get when you launch libGUIb16.rb directly? > > >> Here is the text in the installed files >> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb >> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb >> >> I have other fox gui''s that run fine with require ''fox16'' >> >> Anyone have a clue as to what has gone wrong? >> >> Ernie >> >> > _______________________________________________ > fxruby-users mailing list > fxruby-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/fxruby-users >Thanks for the response. I figured out what was going wrong and just now have it working. My fxruby was installed as a gem. When I upgraded Ruby to 1.8.5 windows one click installer, It failed to set the Environmental Variable RUBYOPT. with out that environmental variable, you have to require ''rubygems''. I haven''t tried the foxGUI in Linux yet. However, I know fxruby was installed there as a gem as well. So the foxGUI.rb script will have to have a require ''rubygems" in it in order for it to function correctly. I like the gui though. It''s very handy. I''m giving a presentation on fxruby to the Atlanta Ruby user''s group in March. I will be using the gui to explain how the layout manager works. It''s also nice to have all the events available for a widget as well. Very nice job. Ernie
I, too, installed fxruby as a gem on a 64-bit machine running Fedora 
Core 6.  I have not yet been able to run Fox with Ruby and get the same 
error message.  Following Ernie''s lead, I modified foxGUIb.rb, adding
    require "rubygems"
just before
    require "version"
It appears that I crashing on the first code in this file
    begin
      require FOXGUIB_LIBRARY
    rescue LoadError
      puts "please install libGUIb!!"
      puts $!
      exit
    end
I don''t know enough about this code to know what FOXGUIB_LIBRARY 
contains, or what it''s supposed to contain, but I do know that I have a
successful install of the library.
Can someone advise me of the next step in resolving this problem?  Thanks.
Ernest Ellingson wrote:> Meinrad Recheis wrote:
>   
>> On 2/19/07, Ernest Ellingson <erne at powernav.com> wrote:
>>   
>>     
>>> I''m at a definite loss here.  I downloaded foxGUIb v0.7. 
I unzipped the
>>> files.  (Windows XP pro)
>>> I ran ruby install.rb in the libGUIb directory.
>>> I switched to the foxGUIb directory
>>> I tried running foxGUIb_win32.rbw
>>> Nothing happened.
>>>
>>> I tried running ruby foxGUIb.rb
>>> I get the following error.
>>>
>>>
>>> please install libGUIb!!
>>> no such file to load -- fox16
>>>
>>>     
>>>       
>> all i can say is that libGUIb16.rb is there, gets called and fails in
>> its very first line trying to require fox16. i got no clue about what
>> is going wrong...
>>
>> what happens when you do
>>
>> require "fox16"
>>
>> in irb?
>> what exception stacktrace do you get when you launch libGUIb16.rb
directly?
>>
>>   
>>     
>>> Here is the text in the installed files
>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb
>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb
>>>
>>> I have other fox gui''s that run fine with require
''fox16''
>>>
>>> Anyone have a clue as to what has gone wrong?
>>>
>>> Ernie
>>>
>>>     
>>>       
>> _______________________________________________
>> fxruby-users mailing list
>> fxruby-users at rubyforge.org
>> http://rubyforge.org/mailman/listinfo/fxruby-users
>>   
>>     
> Thanks for the response.  I figured out what was going wrong and just 
> now have
> it working.  My fxruby was installed as a gem.  When I upgraded Ruby to 
> 1.8.5
> windows one click installer, It failed to set the Environmental Variable 
> RUBYOPT.
> with out that environmental variable, you have to require
''rubygems''.  I
> haven''t tried the
> foxGUI in Linux yet.  However, I know fxruby was installed there as a 
> gem as well.  So
> the foxGUI.rb script will have to have a require ''rubygems"
in it in
> order for it to function
> correctly. 
>      I like the gui though.  It''s very handy.  I''m giving
a presentation
> on fxruby to the Atlanta
> Ruby user''s group in March.  I will be using the gui to explain
how the
> layout manager works.
> It''s also nice to have all the events available for a widget as
well.
> Very nice job.
>
> Ernie
> _______________________________________________
> fxruby-users mailing list
> fxruby-users at rubyforge.org
> http://rubyforge.org/mailman/listinfo/fxruby-users
>
>
Alan Lake wrote:> I, too, installed fxruby as a gem on a 64-bit machine running Fedora > Core 6. I have not yet been able to run Fox with Ruby and get the same > error message. Following Ernie''s lead, I modified foxGUIb.rb, adding > require "rubygems" > just before > require "version" > It appears that I crashing on the first code in this file > begin > require FOXGUIB_LIBRARY > rescue LoadError > puts "please install libGUIb!!" > puts $! > exit > end > I don''t know enough about this code to know what FOXGUIB_LIBRARY > contains, or what it''s supposed to contain, but I do know that I have a > successful install of the library. > > Can someone advise me of the next step in resolving this problem? Thanks. > > Ernest Ellingson wrote: > >> Meinrad Recheis wrote: >> >> >>> On 2/19/07, Ernest Ellingson <erne at powernav.com> wrote: >>> >>> >>> >>>> I''m at a definite loss here. I downloaded foxGUIb v0.7. I unzipped the >>>> files. (Windows XP pro) >>>> I ran ruby install.rb in the libGUIb directory. >>>> I switched to the foxGUIb directory >>>> I tried running foxGUIb_win32.rbw >>>> Nothing happened. >>>> >>>> I tried running ruby foxGUIb.rb >>>> I get the following error. >>>> >>>> >>>> please install libGUIb!! >>>> no such file to load -- fox16 >>>> >>>> >>>> >>>> >>> all i can say is that libGUIb16.rb is there, gets called and fails in >>> its very first line trying to require fox16. i got no clue about what >>> is going wrong... >>> >>> what happens when you do >>> >>> require "fox16" >>> >>> in irb? >>> what exception stacktrace do you get when you launch libGUIb16.rb directly? >>> >>> >>> >>> >>>> Here is the text in the installed files >>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb >>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb >>>> >>>> I have other fox gui''s that run fine with require ''fox16'' >>>> >>>> Anyone have a clue as to what has gone wrong? >>>> >>>> Ernie >>>> >>>> >>>> >>>> >>> _______________________________________________ >>> fxruby-users mailing list >>> fxruby-users at rubyforge.org >>> http://rubyforge.org/mailman/listinfo/fxruby-users >>> >>> >>> >> Thanks for the response. I figured out what was going wrong and just >> now have >> it working. My fxruby was installed as a gem. When I upgraded Ruby to >> 1.8.5 >> windows one click installer, It failed to set the Environmental Variable >> RUBYOPT. >> with out that environmental variable, you have to require ''rubygems''. I >> haven''t tried the >> foxGUI in Linux yet. However, I know fxruby was installed there as a >> gem as well. So >> the foxGUI.rb script will have to have a require ''rubygems" in it in >> order for it to function >> correctly. >> I like the gui though. It''s very handy. I''m giving a presentation >> on fxruby to the Atlanta >> Ruby user''s group in March. I will be using the gui to explain how the >> layout manager works. >> It''s also nice to have all the events available for a widget as well. >> Very nice job. >> >> Ernie >> _______________________________________________ >> fxruby-users mailing list >> fxruby-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/fxruby-users >> >> >> > _______________________________________________ > fxruby-users mailing list > fxruby-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/fxruby-users >Have you installed the Fox Gui itself? Are you able to run any of the examples in the examples directory of the fox gem? Ernie
Have you installed the Fox Gui  itself?  Yes
Are you able to run any of the examples in the examples directory of the fox
gem? I just tried hello.rb, figuring that if that wouldn''t run, then
nothing else would.
/usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/examples/hello.rb:3:in 
`require'': no such file to load -- fox16 (LoadError)
        from /usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/examples/hello.rb:3
However, I have
/usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/lib/fox16
/usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/ext/fox16
I also have a syntax problem with my .bash_profile export of RUBYOPT.  I 
wish to set both "w" and "rubygems".  I seem to be able to
set either,
but not both.  Can you give me the correct syntax, please?
Ernest Ellingson wrote:> Alan Lake wrote:
>   
>> I, too, installed fxruby as a gem on a 64-bit machine running Fedora 
>> Core 6.  I have not yet been able to run Fox with Ruby and get the same
>> error message.  Following Ernie''s lead, I modified foxGUIb.rb,
adding
>>     require "rubygems"
>> just before
>>     require "version"
>> It appears that I crashing on the first code in this file
>>     begin
>>       require FOXGUIB_LIBRARY
>>     rescue LoadError
>>       puts "please install libGUIb!!"
>>       puts $!
>>       exit
>>     end
>> I don''t know enough about this code to know what
FOXGUIB_LIBRARY
>> contains, or what it''s supposed to contain, but I do know that
I have a
>> successful install of the library.
>>
>> Can someone advise me of the next step in resolving this problem? 
Thanks.
>>
>> Ernest Ellingson wrote:
>>   
>>     
>>> Meinrad Recheis wrote:
>>>   
>>>     
>>>       
>>>> On 2/19/07, Ernest Ellingson <erne at powernav.com>
wrote:
>>>>   
>>>>     
>>>>       
>>>>         
>>>>> I''m at a definite loss here.  I downloaded foxGUIb
v0.7.  I unzipped the
>>>>> files.  (Windows XP pro)
>>>>> I ran ruby install.rb in the libGUIb directory.
>>>>> I switched to the foxGUIb directory
>>>>> I tried running foxGUIb_win32.rbw
>>>>> Nothing happened.
>>>>>
>>>>> I tried running ruby foxGUIb.rb
>>>>> I get the following error.
>>>>>
>>>>>
>>>>> please install libGUIb!!
>>>>> no such file to load -- fox16
>>>>>
>>>>>     
>>>>>       
>>>>>         
>>>>>           
>>>> all i can say is that libGUIb16.rb is there, gets called and
fails in
>>>> its very first line trying to require fox16. i got no clue
about what
>>>> is going wrong...
>>>>
>>>> what happens when you do
>>>>
>>>> require "fox16"
>>>>
>>>> in irb?
>>>> what exception stacktrace do you get when you launch
libGUIb16.rb directly?
>>>>
>>>>   
>>>>     
>>>>       
>>>>         
>>>>> Here is the text in the installed files
>>>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb
>>>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb
>>>>>
>>>>> I have other fox gui''s that run fine with require
''fox16''
>>>>>
>>>>> Anyone have a clue as to what has gone wrong?
>>>>>
>>>>> Ernie
>>>>>
>>>>>     
>>>>>       
>>>>>         
>>>>>           
>>>> _______________________________________________
>>>> fxruby-users mailing list
>>>> fxruby-users at rubyforge.org
>>>> http://rubyforge.org/mailman/listinfo/fxruby-users
>>>>   
>>>>     
>>>>       
>>>>         
>>> Thanks for the response.  I figured out what was going wrong and
just
>>> now have
>>> it working.  My fxruby was installed as a gem.  When I upgraded
Ruby to
>>> 1.8.5
>>> windows one click installer, It failed to set the Environmental
Variable
>>> RUBYOPT.
>>> with out that environmental variable, you have to require
''rubygems''.  I
>>> haven''t tried the
>>> foxGUI in Linux yet.  However, I know fxruby was installed there as
a
>>> gem as well.  So
>>> the foxGUI.rb script will have to have a require
''rubygems" in it in
>>> order for it to function
>>> correctly. 
>>>      I like the gui though.  It''s very handy. 
I''m giving a presentation
>>> on fxruby to the Atlanta
>>> Ruby user''s group in March.  I will be using the gui to
explain how the
>>> layout manager works.
>>> It''s also nice to have all the events available for a
widget as well.
>>> Very nice job.
>>>
>>> Ernie
>>> _______________________________________________
>>> fxruby-users mailing list
>>> fxruby-users at rubyforge.org
>>> http://rubyforge.org/mailman/listinfo/fxruby-users
>>>
>>>   
>>>     
>>>       
>> _______________________________________________
>> fxruby-users mailing list
>> fxruby-users at rubyforge.org
>> http://rubyforge.org/mailman/listinfo/fxruby-users
>>   
>>     
> Have you installed the Fox Gui  itself?  Are you able to run any of the 
> examples in the
> examples directory of the fox gem? 
>
> Ernie
> _______________________________________________
> fxruby-users mailing list
> fxruby-users at rubyforge.org
> http://rubyforge.org/mailman/listinfo/fxruby-users
>
>
Alan Lake wrote:> Have you installed the Fox Gui itself? Yes > Are you able to run any of the examples in the examples directory of the fox gem? I just tried hello.rb, figuring that if that wouldn''t run, then nothing else would. > > /usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/examples/hello.rb:3:in > `require'': no such file to load -- fox16 (LoadError) > from /usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/examples/hello.rb:3 > However, I have > /usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/lib/fox16 > /usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/ext/fox16 > > I also have a syntax problem with my .bash_profile export of RUBYOPT. I > wish to set both "w" and "rubygems". I seem to be able to set either, > but not both. Can you give me the correct syntax, please? > > Ernest Ellingson wrote: > >> Alan Lake wrote: >> >> >>> I, too, installed fxruby as a gem on a 64-bit machine running Fedora >>> Core 6. I have not yet been able to run Fox with Ruby and get the same >>> error message. Following Ernie''s lead, I modified foxGUIb.rb, adding >>> require "rubygems" >>> just before >>> require "version" >>> It appears that I crashing on the first code in this file >>> begin >>> require FOXGUIB_LIBRARY >>> rescue LoadError >>> puts "please install libGUIb!!" >>> puts $! >>> exit >>> end >>> I don''t know enough about this code to know what FOXGUIB_LIBRARY >>> contains, or what it''s supposed to contain, but I do know that I have a >>> successful install of the library. >>> >>> Can someone advise me of the next step in resolving this problem? Thanks. >>> >>> Ernest Ellingson wrote: >>> >>> >>> >>>> Meinrad Recheis wrote: >>>> >>>> >>>> >>>> >>>>> On 2/19/07, Ernest Ellingson <erne at powernav.com> wrote: >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>> I''m at a definite loss here. I downloaded foxGUIb v0.7. I unzipped the >>>>>> files. (Windows XP pro) >>>>>> I ran ruby install.rb in the libGUIb directory. >>>>>> I switched to the foxGUIb directory >>>>>> I tried running foxGUIb_win32.rbw >>>>>> Nothing happened. >>>>>> >>>>>> I tried running ruby foxGUIb.rb >>>>>> I get the following error. >>>>>> >>>>>> >>>>>> please install libGUIb!! >>>>>> no such file to load -- fox16 >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> all i can say is that libGUIb16.rb is there, gets called and fails in >>>>> its very first line trying to require fox16. i got no clue about what >>>>> is going wrong... >>>>> >>>>> what happens when you do >>>>> >>>>> require "fox16" >>>>> >>>>> in irb? >>>>> what exception stacktrace do you get when you launch libGUIb16.rb directly? >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>> Here is the text in the installed files >>>>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb14.rb >>>>>> C:/ruby/lib/ruby/site_ruby/1.8//libGUIb16.rb >>>>>> >>>>>> I have other fox gui''s that run fine with require ''fox16'' >>>>>> >>>>>> Anyone have a clue as to what has gone wrong? >>>>>> >>>>>> Ernie >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> _______________________________________________ >>>>> fxruby-users mailing list >>>>> fxruby-users at rubyforge.org >>>>> http://rubyforge.org/mailman/listinfo/fxruby-users >>>>> >>>>> >>>>> >>>>> >>>>> >>>> Thanks for the response. I figured out what was going wrong and just >>>> now have >>>> it working. My fxruby was installed as a gem. When I upgraded Ruby to >>>> 1.8.5 >>>> windows one click installer, It failed to set the Environmental Variable >>>> RUBYOPT. >>>> with out that environmental variable, you have to require ''rubygems''. I >>>> haven''t tried the >>>> foxGUI in Linux yet. However, I know fxruby was installed there as a >>>> gem as well. So >>>> the foxGUI.rb script will have to have a require ''rubygems" in it in >>>> order for it to function >>>> correctly. >>>> I like the gui though. It''s very handy. I''m giving a presentation >>>> on fxruby to the Atlanta >>>> Ruby user''s group in March. I will be using the gui to explain how the >>>> layout manager works. >>>> It''s also nice to have all the events available for a widget as well. >>>> Very nice job. >>>> >>>> Ernie >>>> _______________________________________________ >>>> fxruby-users mailing list >>>> fxruby-users at rubyforge.org >>>> http://rubyforge.org/mailman/listinfo/fxruby-users >>>> >>>> >>>> >>>> >>>> >>> _______________________________________________ >>> fxruby-users mailing list >>> fxruby-users at rubyforge.org >>> http://rubyforge.org/mailman/listinfo/fxruby-users >>> >>> >>> >> Have you installed the Fox Gui itself? Are you able to run any of the >> examples in the >> examples directory of the fox gem? >> >> Ernie >> _______________________________________________ >> fxruby-users mailing list >> fxruby-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/fxruby-users >> >> >> > _______________________________________________ > fxruby-users mailing list > fxruby-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/fxruby-users >Just to clear up some confusion. I believed I had installed fxruby as a gem on my linux (ubuntu) box, I did not. I downloaded the tarball and compiled fxruby on that machine. Thus no need to require rubygems when running foxGUIb.rb. It runs fine on the linux box with no alterations. I''m not sure what is installed on a linux box when you install the fxruby gem. Although looking at the size of the gem file, there must be a precompiled version of Fox included in that gem. As for your problem. Try putting in a require ''rubygems'' in the example files. Does that allow you to run foxGUIb? Since I don''t have the linux gem installed, I can''t help you much other than to suggest making sure the ruby application knows where required files are located. Usually if libraries are installed in Ruby the ruby knows about all the locations of those libraries. When you require ''rubygems'', rubygems is in one of those locations. rubygems will know where to find fox16. Ernie
On 2/20/07, Alan Lake <alan.lake at lakeinfoworks.com> wrote:> I also have a syntax problem with my .bash_profile export of RUBYOPT. I > wish to set both "w" and "rubygems". I seem to be able to set either, > but not both. Can you give me the correct syntax, please?This should work: export RUBYOPT="-w -rubygems" and if the -rubygems thing isn''t set, then yeah, it''s not going to see a gem-based installation of FXRuby (or any of your other gems, for that matter).
On 2/20/07, Ernest Ellingson <erne at powernav.com> wrote:> I''m not sure what is installed on a linux box when you install the > fxruby gem.When you install the fxruby gem on Linux (or any other non-Windows platform), it will first compile the FXRuby extension source code, and this may take several minutes. Then it will install that code to your /usr/lib/ruby/1.8/gems/whatever directory as usual.> Although looking at the size of the gem file, there must be a precompiled version > of Fox included in that gem.No. We only provide precompiled versions of FOX and FXRuby in the FXRuby gem for Windows. So there are two gems: the "binary" gem for Win32, which is a pretty quick install (because everything''s already compiled), and the "source" gem for any other platform, which compiles FXRuby as it installs.
I began adding comments with my problem to Ernie Ellingson''s post, 
Problem using foxGUIb, because my problem is very similar to his.  The 
difference is that I''m running Fedora Core 6 (x86_64) and he''s
running
Ubuntu.  However, I''m totally confused because of the mix up that I 
caused.  I''d like to start this new thread to separate our posts. 
I hope that this statement of how I installed the separate packages may 
yield a clue of why I can''t run the fox GUI:
fox-1.6.21 -- This installed correctly
  make clean
  export LDFLAGS="-L/usr/lib64 -L/usr/X11R6/lib64 -L/lib64"
  ./configure --enable-release
  make
  make install
  make docs
fxruby-1.6.6.gem
  foxGUIb-0.7.1
    ruby install.rb -- This installed correctly
  I copied the foxGUIb directory to ~/Software/
In .bash_profile, I have
  export RUBYOPT="w"
  I have tried to add "rubygems" to the above statement, but I
can''t
guess the correct syntax.
 
First test: (I''m repeating the tests as I write this)
  cd ~/Software/foxGUIb;ruby foxGUIb.rb
  This yielded:
    /usr/lib/ruby/site_ruby/1.8/libGUIb16.rb:833: warning: `*'' 
interpreted as argument prefix
    please install libGUIb!!
    no such file to load -- fox16
Second test:
  I modified ~/Software/foxGUIb/foxGUIb.rb to include
    require "rubygems"
    but this made no difference
Third test:
  It seems that the line "please install libGUIb!!" is generated by
the
following code in foxGUIb.rb:
    begin
      require FOXGUIB_LIBRARY
    rescue LoadError
      puts "please install libGUIb!!"
      puts $!
      exit
    end
  I added the following line at the beginning of this program:
    puts "FOXGUIB_LIBRARY = #{FOXGUIB_LIBRARY}"
  My test gave:
    FOXGUIB_LIBRARY = libGUIb16
    prior to the messages above
I have these files:
/usr/lib/ruby/site_ruby/1.8/libGUIb16.rb
/usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/lib/fox16
/usr/lib64/ruby/gems/1.8/gems/fxruby-1.6.6/ext/fox16
I created symbolic links to the lib64 directories from /usr/lib/ruby..., 
but that didn''t help, so I removed the links.
Can you suggest what I might try next?
On 2/21/07, Alan Lake <alan.lake at lakeinfoworks.com> wrote:> I hope that this statement of how I installed the separate packages may > yield a clue of why I can''t run the fox GUI: > > fox-1.6.21 -- This installed correctly > make clean > export LDFLAGS="-L/usr/lib64 -L/usr/X11R6/lib64 -L/lib64" > ./configure --enable-release > make > make install > make docsOK.> fxruby-1.6.6.gem > foxGUIb-0.7.1 > ruby install.rb -- This installed correctlyJust to be clear: How do you know that this installed correctly? Can you run any of the FXRuby examples?> In .bash_profile, I have > export RUBYOPT="w" > I have tried to add "rubygems" to the above statement, but I can''t > guess the correct syntax.Did you try my previous suggestion? export RUBYOPT="-w -rubygems" I want to hold off on any more comments until we confirm that FXRuby is installed and working...