search for: wxgtk

Displaying 20 results from an estimated 80 matches for "wxgtk".

2006 Aug 22
1
Problem after installing audacity
...b-1.2.el4.rf set to be updated --> Running transaction check --> Processing Dependency: libid3tag.so.0 for package: audacity --> Processing Dependency: libwx_gtk-2.4.so.0 for package: audacity --> Processing Dependency: libsndfile.so.1 for package: audacity --> Processing Dependency: wxGTK >= 2.4.0 for package: audacity --> Processing Dependency: libsndfile.so.1(libsndfile.so.1.0) for package: audacity --> Processing Dependency: libwx_gtk-2.4.so.0(WXGTK_2.4) for package: audacity --> Restarting Dependency Resolution with new changes. --> Populating transaction set wi...
2008 Sep 19
1
Update troubles for wxGTK apps
Hi, I have a CentOS 5.2 desktop with the RPMForge repo enabled. I just ran 'yum update', and there seems to be some trouble with the wxGTK apps. A simple 'yum update' gives this error message: --8<-------------------------------------------------------------------- --> Finished Dependency Resolution Error: Missing Dependency: libwx_gtk2u_adv-2.6.so.0 is needed by package audacity Error: Missing Dependency: libwx_gtk2u...
2009 Jan 11
11
mp3 to wav converter
What is there available for Centos? Now that Audacity is no longer available to us... I do have Audacity on an XP system, so I do have the option to shuffle files between systems....
2004 Jun 25
4
wxruby 0.4.0 won''t compile [linux]
Has anyone run across this: /usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.2/../../../../i686-pc-linux-gnu/bin/ld: wxruby.so: undefined versioned symbol name wxBitmapButtonBase::SetMargins(int, int)@@WXGTK2_2.4 /usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.2/../../../../i686-pc-linux-gnu/bin/ld: failed to set dynamic section sizes: Bad value collect2: ld returned 1 exit status make: *** [wxruby.so] Error 1 rm mdiclientwindow.cpp mdichildframe.cpp Any ideas? (linux-2.4.x, gtk2, ruby-1.8, wxruby-0.4.0) Tha...
2010 Dec 08
0
[LLVMdev] Fwd: wxGTK sample app compiled by llvm crashes on arm
---------- Forwarded message ---------- From: Anton Korobeynikov <anton at korobeynikov.info> Date: Wed, Dec 8, 2010 at 16:31 Subject: Re: [LLVMdev] wxGTK sample app compiled by llvm crashes on arm To: ankur jain <samyak3 at gmail.com> Hello, > I still have a query. Using llvm-gcc as cross-arm compiler will generate > bytecode specific to arm. > These bytecodes will work only on arm based platforms.Is it so ?? Yes, as you already ch...
2008 Jan 03
0
[ wxruby-Feature Requests-16788 ] Support Dynamic wxgtk libraries in Linux
...at 2008-01-03 07:25 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=221&aid=16788&group_id=35 Category: API improvement Group: User request Status: Open Priority: 3 Submitted By: Nobody (None) Assigned to: Kevin Smith (qualitycode) Summary: Support Dynamic wxgtk libraries in Linux Initial Comment: As per e-mail discussion with Alex Fenton: Please enable support for dynamic rather than static builds in for wxruby Linux builds. =begin e-mail It''s something we''ve been discussing recently and would like to do. I think the Linux build of w...
2005 Jun 05
0
wxRuby patch for work with wxGtk
I write patch for wxRuby 0.6 for work with wxGTK (in attachment). Known bugs: - You can''t use *_PEN, *_BRUSH, *_CURSOR, *_FONT, and color pointer constants before create application object. - Don''t work app.end_main_loop function - Tree object causes many DeleteObject errors, but sometimes work. But most of it working!...
2007 Dec 27
4
build problems, part III, and runtime problems, part I
After decoding the unresolved symbols from wxruby2.so using c++filt, and comparing with the symbols provided by wxGTK, it became clear that wxGTK was using wchar_t whereas wxruby2.so was using char. So I rebuilt wxGTK, turning off unicode. That worked. No more unresolved symbols. What gives? Should the wxruby code have been built using wchar_t, and if so, how? However, now I get the following: % ruby -rub...
2010 Dec 03
2
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
* *Hello, I am using llvm-2.7 to run a native(executable) on a arm processor. I have built my wxGtk sample app with llvm-gcc as frontend . I am using llvm-2.7 and llvm-gcc-4.2. I built llvm-2.7 with: ../llvm-2.7/configure --prefix=/home/install-llvm --enable-optimized --enable-assertions and llvm gcc with: ../llvm-gcc-4.2-2.7.source/configure --prefix=/home//gcc-disable-shared --enable-la...
2010 Dec 03
0
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
> I am using llvm-2.7 to run a native(executable) on a arm processor. ARM was pretty much broken in 2.7. Consider using at least 2.8 > ../llvm-gcc-4.2-2.7.source/configure --prefix=/home//gcc-disable-shared --enable-languages=c++,c --enable-checking --enable-llvm=/home/ llvm-objects --disable-bootstrap --disable-multilib You have to configure llvm-gcc as cross-arm compiler. > Step 1.
2010 Dec 06
0
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
> memory. AsĀ  I mentioned earlier, If I explicitly allocate memory using new > operation then everything works fine. Please let me know why do we actually > fail without using new, that to a arbitrary pointer which is never used in > the program. x86 and ARM have different ABIs, so you was just lucky. You can read e.g. http://llvm.org/docs/FAQ.html#platformindependent for more
2010 Dec 06
0
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
> You said that, You have to configure llvm-gcc as cross-arm compiler. > I am not clear what does it actually mean ?? > For us , intel is the host machine and arm is the target machine . For this you need the cross-compiler (same as for normal gcc). So, basically configure llvm-gcc as a cross-compiler for your target platform the same way as you're doing this with the ordinary gcc.
2010 Apr 03
2
wxwidgets RPM for Centos?
Anyone know of a wxwidgets RPM for Centos 5? Thanks! -- ---- Fred Smith -- fredex at fcshome.stoneham.ma.us ----------------------------- But God demonstrates his own love for us in this: While we were still sinners, Christ died for us. ------------------------------- Romans 5:8 (niv) ------------------------------
2010 Dec 06
4
[LLVMdev] wxGTK sample app compiled by llvm crashes on arm
Thanx for a prompt reply. I will definitely try llvm 2.8 as per your suggestion. However Step 1 and Step 2 are working for me in case of a simple hello world program on arm processor . Similarly I am able to run a GTK application on arm. However while running wxGTKwidget app it crashes while allocation of memory. As I mentioned earlier, If I explicitly allocate memory using new operation then everything works fine. Please let me know why do we actually fail without using new, that to a arbitrary pointer which is never used in the program. On Fri, Dec 3, 201...
2009 Oct 25
1
Problems in 64bit Ubuntu 8.10
I''ve installed wxgtk 2.8.10 and wxruby 2.0.0. When I try to run any scripts I get the following: /var/lib/gems/1.8/gems/wxruby-2.0.0-x86_64-linux/lib/wxruby2.so: /var/lib/gems/1.8/gems/wxruby-2.0.0-x86_64-linux/lib/wxruby2.so: symbol _ZN13wxAuiNotebook7SetFontERK6wxFont, version WXU_2.8.5 not defined in file libwx_gt...
2005 Oct 22
6
wxruby.so error with weft-qda
...39;'ve been trying to get wxruby-based weft-qda 0.9.6 running on a linux from scratch 6.1 system (this list had a discussion about weft-qda last year and alex fenton''s also been trying to help me out - no luck so far). I get stuck with wxruby 0.60 (I think). I compiled wxruby against wxGTK 2.4.2 (without gtk2, without unicode - gtk+ version is 1.2.10) - after manually moving htmlproc.h and xml.h from the wxGTK make to the appropriate directories. I get the following error on running ruby weft-qda.rb: /usr/lib/ruby/1.8/i686-linux/wxruby.so: /usr/lib/ruby/1.8/i686-linux/wxruby.so: u...
2004 Apr 24
2
Re: wxRuby problem...
Michael S. Jessop wrote: > > This may belong elsewhere... but I downloaded and and installed wxGTK on > Fedora Core 2 (I know I know, beta software) then downloaded and built > wxRuby successfully (at least I didn''t get any errors - extconf.rb, make, > make install). Whenever I try to run a sample program I get... > > [mike@zootoo minimal]$ ruby minimal.rb > /usr/lib/...
2007 Dec 28
0
[ wxruby-Bugs-16672 ] Compile error on Linux with URLDataObject.cpp
...None Status: Open Resolution: None Priority: 3 Submitted By: Alex Fenton (brokentoy) Assigned to: Alex Fenton (brokentoy) Summary: Compile error on Linux with URLDataObject.cpp Initial Comment: % gcc --version gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-59) g++ -c -I/home/rwa/linux-packages/wxGTK- 2.8.7-static/lib/wx/include/gtk2-ansi-release-static-2.8 -I/home/rwa/linux-packages/wxGTK-2.8.7-static/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D_LARGEFILE_SOURCE=1 -D__WXGTK__ -g -O2 -Wno-unused-function -I /home/rwa/linux-packages/gems/rake- 0.8.0/bin -I /home/rwa/linux-packages/...
2007 Jun 29
3
Audacity
Just wondering, if there is Audacity package which runs in centos 5 somewhere? Have googled, but not found any. Any help? Jarmo
2006 Sep 17
2
yum update dependency problem centos 4.4
...peeds from cached hostfile Reading repository metadata in from local files Excluding Packages from CentOS.Karan.Org-EL4 - Stable Finished 131 packages excluded due to repository protections Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Package wxGTK.i386 0:2.6.2-0.2.2.fc4 set to be updated ---> Package libXvMCW.i386 0:0.9.3-1.2.fc4 set to be updated ---> Package sylpheed-claws.i386 0:2.0.0-1.2.fc4 set to be updated --> Running transaction check --> Processing Dependency: libwx_gtk-2.4.so.0(WXGTK_2.4) for package: audacity --> Pr...