http://bugs.winehq.org/show_bug.cgi?id=15134
--- Comment #5 from André Pirard A.Pirard@ulg.ac.be 2008-09-08 06:46:47 --- Now determined to try to help doing regression. At worst, I'll do one compile each night.
Unfortunately, I spent much time already (got an addon CD in the way) I need help. I enabled Ubuntu's and WineHQ's source depots. I downloaded, bisected, ... and I reached this :
~/wine-git$ CC="ccache gcc" ./configure --verbose configure: error: no suitable flex found. Please install the 'flex' package. configure: error: no suitable bison found. Please install the 'bison' package. configure: error: X development files not found. Wine will be built without X support, which probably isn't what you want. You will need to install development packages of Xlib/Xfree86 at the very least. Use the --without-x option if you really want this.
Doing then one by one and the last one is fuzzy, isn't it? Is it possible to install the whole of the development packages at once? In a apt-get autoremove able way? (Not manually)
~/wine-git$ sudo apt-get build-dep wine-dev Reading package lists... Donep@papou-ubuntu: Building dependency tree Reading state information... Done E: Build-dependencies for wine-dev could not be satisfied.
p@papou-ubuntu:~/wine-git$ sudo apt-get install wine-dev Reading package lists... Done Building dependency tree Reading state information... Done wine-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
(wich, btw, is 1.1.4 and the problem is still there)
"To do this, pass CFLAGS="-g -O0" on the commandline when you run configure."
Does that mean CC="ccache gcc" CFLAGS="-g -O0" ./configure ./configure CFLAGS="-g -O0" ???
patch -p1 < disable_test.diff && CC="ccache gcc" ./configure && make clean && make depend && make && patch -p1 -R < disable_test.diff
What is "disable_test.diff" ?
Thanks. André.