On Thu, 2004-07-29 at 18:29, Dimitrie O. Paun wrote:
On Thu, Jul 29, 2004 at 01:50:20PM +0300, sergio ojalvo wrote:
Hi I'm working on Debian Linux. I just install the wine packages and download sources for trying the test driver. Running Winemaker to winemine test project I note: that configure script was not created and Makefile is created instead of Makefile.in. (like wrote in the web page) I think is a new feature... I'm wrong?
It is a new feature, it's true.
Anyway, I try to run make after that and that is the output:
winebuild -o winemine.exe.dbg.c --debug -C. dialog.c main.c winegcc -c -mno-cygwin -I. -o winemine.exe.dbg.o winemine.exe.dbg.c winegcc -c -mno-cygwin -I. -o dialog.o dialog.c winegcc -c -mno-cygwin -I. -o main.o main.c wrc -I. -foEn.res En.rc En.rc:23:22: Error: syntax error
That means there's something around line 23 in the En.rc file that wrc doesn't understand. Can you send us a copy of the file?
I get the tar files with the sources from sourceforge and didn't change this file. Anyway attached find the En.rc file.
After that I try with another 2 projects (win32 code) and I receive a lot of compilation errors like:
In file included from /usr/include/c++/3.3/iosfwd:46, from /usr/include/c++/3.3/ios:44, from /usr/include/c++/3.3/ostream:45, from /usr/include/c++/3.3/iostream:45, from midi2nokia.cpp:4: /usr/include/c++/3.3/i486-linux/bits/c++locale.h:53: error: `uselocale' was not declared in this scope
Using the std C++ lib is still a problem if you need to use msvcrt. Try to use wineg++ (instead of winegcc) *without* the -mno-cygwin flag.
Can you explain exactly what to do? I'm newbie on this project. I just do: $ winemaker --mfc -Imydir . $ make
Thanks in advance,