Buttons and text disappearing

Questions about Wine on Linux
Locked
r00t4rd3d
Newbie
Newbie
Posts: 4
Joined: Tue Jul 17, 2012 7:46 am

Buttons and text disappearing

Post by r00t4rd3d »

I use a program called Microcarve, its a CNC Router program that converts images to gcode to run on my CNC machine. Unfortunately its a Windows only program. I am using LinuxCNC, its a prepackaged Ubuntu 10.04 install designed for CNC work. The program Microcarve installs and loads fine under Wine but as soon as I move the mouse pointer all the buttons and text disappear from the program gui.

Anyone got some tips I can try to resolve this?

You can download the program for free here:
http://www.microcarve.com/softV4.html
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Post by DanKegel »

You've just hit http://bugs.winehq.org/show_bug.cgi?id=15232

See http://wiki.winehq.org/Developers about how to build wine, then
try this:

Code: Select all

cd ~/wine-git
git reset --hard b09d195bf3c1bd4fef208411ffdbd31b4f1031c
wget 'http://bugs.winehq.org/attachment.cgi?id=39856&action=diff&context=patch&collapsed=&headers=1&format=raw'
mv attachment.cgi\?id\=39856\&action\=diff\&context\=patch\&collapsed\=\&headers\=1\&format\=raw openglfoo.patch
patch -p0 < openglfoo.patch 
make
Works for me.
r00t4rd3d
Newbie
Newbie
Posts: 4
Joined: Tue Jul 17, 2012 7:46 am

Post by r00t4rd3d »

Dan, I am on Ubuntu so it says this for building :

sudo apt-get build-dep wine1.3

Then I enter the commands you posted?
User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Post by DanKegel »

First see http://wiki.winehq.org/GitWine to initialize ~/wine-git. e.g.
sudo apt-get install git
cd $HOME
git clone git://source.winehq.org/git/wine.git ~/wine-git
Then the commands I gave.

(If you're running 64 bit ubuntu 12.04, there are other flaming hoops
to jump through, see http://wiki.winehq.org/WineOn64bit )
r00t4rd3d
Newbie
Newbie
Posts: 4
Joined: Tue Jul 17, 2012 7:46 am

Post by r00t4rd3d »

Ok , I will go out to the machine and give it a try. Thanks!

Ubuntu version is 10.04, 32bit by the way.
r00t4rd3d
Newbie
Newbie
Posts: 4
Joined: Tue Jul 17, 2012 7:46 am

Post by r00t4rd3d »

DanKegel is the man!

Its working fine now, thanks! Is there a way I can pack up what Ive done here to share with other LinuxCNC users? If I just take my wine-git directory, zip it up and have people run ./config, make, sudo make install, would that work?


Image
User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Post by DanKegel »

A shell script that contains the commnds you used might be better.

Might be easier to grab a tarball of the release just before that
git revision, then people wouldn't need to futz with git.
Locked