Displaying 20 results from an estimated 3000 matches similar to: "installing from src on OS X"
2004 Oct 19
9
News for OS X Users
Sorry things have gone silent on the release front, but I have some good
news: I''ve gotten wxruby-swig to build as a OS X framework. This has a
couple of ramifications
1) wxruby for the Mac will finally exactly like its Linux and PC
counterparts, menu bar and all.
2) Bundling wxruby applications becomes a lot easier.
3) The next binary installer should be able to support darwinports,
2004 Aug 16
3
RE: wxRuby
STEVE: Yes, wxRuby is being used on OS X. The wxRuby-user''s ML is the best
place to go for help. I''ll cross post this and any responses if you don''t
want to subscribe.
WXRUBY-USERS: Steve is the guy who is working on the One-Click Ruby
Installer for OS X. Can anyone spot what his problem is here?
Thanks,
Curt
Stephen Steiner wrote:
>
> I''ve tried
2005 Jul 20
1
wxr2 build error CVS HEAD on OS x
Hi
I''m getting a build error with the current cvs HEAD of wxruby-swig. Perh
something to do with the unicode changes?
OS X 10.3
WxMAC 2.6.0
ruby 1.8.2
thanks
alex
g++ -c -I/usr/local/lib/wx/include/mac-ansi-release-static-2.6
-I/usr/local/include/wx-2.6 -D__WXMAC__ -D_FILE_OFFSET_BITS=64
-D_LARGE_FILES -DNO_GCC_PRAGMA -O2 -fno-common -pipe -fno-common -x
objective-c++ -I
2006 Jul 11
2
Ferret 0.9.4 C extensions and Macbook Pro
Hello,
I am developing on a MacBook Pro.
I had installed make and the gcc compiler in order to
take advantage of the C extensions, and I installed the ferret 0.9.4
gem.
When I installed the gem, it compiled the C extensions as part of the
installation
process for the gem, and I received this output:
Attempting remote installation of ''ferret''
Building native extensions. This
2005 Jul 26
10
Patch for wxRuby2
Ok so I made a lot of changes and the controls sample works pretty good now.
What I changed or added:
- Got all my modifications meshed into wxRuby2.
- Added constructors to wxIcon.h
- Changed Xrc.i to XmlResource.i and changed wxXrc to wxXmlResource
within the file.
I also had to change Xrc to XmlResource in rakewx.rb.
- For backwards compatability with wxRuby 0.6 I added the subclass methods
2004 Aug 06
12
0.4.0 Compiling Under Mingw
> I am compiling wxRuby 0.4.0 on WinXP Home under MingW and MSYS 1.0. I
can
> compile wxWindows and Ruby fine and I get about 20 minutes into the
wxRuby
> compile and it quits, It says:
[snip]
>
C:\mingw\bin\..\lib\gcc-lib\mingw32\3.2.3\..\..\..\..\mingw32\bin\ld.exe
:
> cannot find -lwxmsw241d
> make: *** [wxruby.so] Error 1
> I replaced the $LIBS in the extconf.rb file
2005 Aug 02
8
Rake patch
This patch fixes the following:
- You can now use rake to build on Windows.
- You can now use rake install to install the lib, no more extconf.rb
needed! This should be cross platform, I took some code for installing
from the Makefile that extconf.rb generated as a basis. I have tested
it on OS X and will test tomorrow on Windows, I am 95% it will work
cross platform.
- I did get Windows
2004 Aug 29
6
wxRuby Compile Problems on Gentoo eBuild
Can you guys take a look at this and help Tom out?
Thanks,
Curt
-----Original Message-----
From: Tom Payne [mailto:twp@gentoo.org]
Sent: Sunday, August 29, 2004 10:53 AM
To: Curt Hibbs
Subject: Re: FW: [ANN] wxRuby 0.5.0 has been released!
On Thu, Aug 26, 2004 at 11:54:52AM -0500, Curt Hibbs wrote:
> Hi Tom, I just wanted to inform you that we just released a new version
> wxRuby if you
2004 Nov 21
7
wxRuby 0.6.0 is released!
wxRuby 0.6.0 has been released and is now available for
download from RubyForge at http://wxruby.rubyforge.org/
This release includes binary builds for Max OS X and
MS Windows.
Changes in this release include:
* Additional widget support in XRC (thanks to Marshall Elfstrand)
* Addition of wxScrollbar (thanks to Hans Harmon of Pinnacle
Technologies Inc)
* Addition of wxGrid event handlers (thanks
2004 Sep 24
7
wxRuby build problems
I''ve just tried to build wxRuby on a debian/unstable (i386) platform.
I went to rubyforge.org and downloaded wxruby-0.5-src.tar.gz.
<http://rubyforge.org/frs/download.php/1254/wxruby-0.5-src.tar.gz>
I have ruby 1.8.2 installed on my system. I needed to install the
debian package ruby1.8-dev in order to get mkmf.rb. That solved my
first problem. So then i ran "ruby
2007 Dec 27
1
Wx::SplashScreen, and events
I have the following code:
#time = 7000
class TimeSplash < Wx::SplashScreen
PATH_MAIN = 1
PATH_SETUP = 0
def initialize(time, path=PATH_MAIN)
splash_bitmap = Wx::Bitmap.new(''timefly.png'', Wx::BITMAP_TYPE_PNG)
super(splash_bitmap,
Wx::SPLASH_CENTRE_ON_SCREEN|Wx::SPLASH_TIMEOUT, time, nil, -1)
evt_close() {|evt| on_close_window(evt, path)}
end
2004 Dec 12
3
Re: Problem building wxRuby: htmlproc.h not found
I''ve heard of this before. Try running this line and send me the output
ruby -e "p RUBY_PLATFORM"
Nick
Andreas Schwarz wrote:
> I''m trying to build wxRuby 6.0 on Linux (Ubuntu). When I run make I get
> an error because htmlproc.h is not found (it does not exist in the Linux
> version of wxWidgets). I see that the html* object files are removed
> from
2007 Dec 28
1
Wx:Wizard, Wx::WizardPageSimple
Ok, here is my class:
#====================================
class SetupWizard < Wx::Wizard
def initialize(timefly, title)
setup_image = Wx::Bitmap.new("wizard_side.png", Wx::BITMAP_TYPE_PNG)
super(nil, -1, title, setup_image)
@timefly = timefly
step_one = Wx::WizardPageSimple.new()
setup_page_one(step_one)
step_two = Wx::WizardPageSimple.new(nil,
2005 Jul 19
5
More wxruby-swig changes
I just checked in several changes from Sean Long that should make
wxruby-swig work with wx 2.6 as well as 2.5.
I also committed his changes to extconf.rb. But could someone please
explain to me why anyone would prefer to use extconf.rb instead of rake?
It just seems like one more piece of code to maintain, and I don''t like
extra code.
Sean: The other diffs in the patch you sent were
2005 Jul 26
3
Wx::Html* widgets
Hello,
I''m having problems using the widgets Wx::Http*, such as
Wx::HtmlWindow, Wx::HtmlEasyPrinting, etc..
The error I got is "uninitialized constant Wx::HtmlWindow". The code
is correct since I''m trying to execute samples in the html/ directory.
All other samples work. I can''t even see that widgets doing
require ''wxruby'';
2005 May 03
4
Wx::HtmlWindow.on_link_clicked
Hello, wxruby-users.
This is an addition which implement wrapper for
overloading wxHtmlWindow::OnLinkClicked method. Unfortunately, it was
impossible to make it correctly without ugly hack to wxpp.rb, but i`m
hope it does not broke it.
Please look at attachment for a patch for htmlwindow.t and wxpp.rb and
additional file htmllinkinfo.t (need to be added to $objs array in
extconf.rb).
Sample
2004 Apr 27
15
Building wxruby on Solaris 9
Hi all,
Ruby 1.8.1
Solaris 9
wxwindows 2.4.2 (package from blastwave.org)
wxruby 0.3.0
I''m having trouble getting this sucker to build on my Solaris box.
Here''s how I''m building:
ruby extconf.rb --with-xrc-dir=/opt/csw
--with-xrc-include=/opt/csw/lib/wx
The include directive I added because the setup.h file is there (for
whatever reason). And yes, /opt/csw/bin and
2004 Aug 26
18
wxRuby 0.5.0 has been released!
wxRuby 0.5.0 has been released and is now available for
download from RubyForge at http://wxruby.rubyforge.org/
This release includes binary builds for Max OS X and
MS Windows.
Please report any bugs or feature requests here:
http://rubyforge.org/tracker/?group_id=35
Changes in this release include:
* Added XRC (Xml Resource File) support.
* Added totally awesome HTML widget from Tobi
2004 Jul 12
28
Windows compilation problems
Last week I was struggling to get xrc built into wxRuby and finally got
it to compile. The problem I am now having is that the normal samples
are not working at all (have not even tried any xrc stuff yet). So to
test if it is a problem with xrc or my build process I tried compiling
wxRuby without XRC, this caused the same error to be printed out as the
failed XRC build.
The output (in both
2005 Jul 24
11
Official name change to wxruby2
The CVS module has been renamed from wxruby-swig to wxruby2, and I have
checked in the related changes to reflect the name change. Anyone with a
CVS tree will need to re-checkout from CVS because of the module name
change.
There is now a wx.rb in the lib/ directory, which loads the wxruby2
shared library that gets built.
I have tagged this as 0.0.22.
Next steps:
- Apply Choice.i patch from