I've tried using wine --winver win98 --hl.exe -console and wine spits out the
help telling me what arguments I can use. Is winever no longer
available?I've tried using wine --winver win98 --hl.exe -console and wine
spits out the
help telling me what arguments I can use. Is winever no longer available?
On December 19, 2003 03:19 pm, Flameeyes wrote:
> I hope this one is good.
> I also removed the leading '?' list.
A ChangeLog entry explaining what your changes are
doing would also be good :)
--
Dimi.
"Flameeyes" <dgp85(a)users.sourceforge.net> wrote:
> I hope this one is good.
Not really. Please review your patch for similar problems
in other places.
--
Dmitry.
Hi,
I used to write applications for windows with Borland C++ Builder 6. The
problem is that wine, either from cvs or release, froze when linking
programs with ilink32.
I fixed the problem with older releases using this patch:
Index: dlls/ntdll/virtual.c
===================================================================
RCS file: /home/wine/wine/dlls/ntdll/virtual.c,v
retrieving revision 1.9
diff -u -3 -r1.9 virtual.c
--- dlls/ntdll/virtual.c 12 Aug 2003 23:50:55 -0000 1.9
+++ dlls/ntdll/virtual.c 17 Aug 2003 11:15:57 -0000
@@ -1203,6 +1203,8 @@
return STATUS_ACCESS_DENIED;
}
+ VirtualAlloc( 0x80000000, 0x1000, MEM_RESERVE | MEM_SYSTEM,
PAGE_EXECUTE_READWRITE );
+
base = ROUND_ADDR( addr, page_mask );
/* Find the view containing the address */
@@ -1255,6 +1257,8 @@
info->BaseAddress = (LPVOID)base;
info->AllocationBase = (LPVOID)alloc_base;
info->RegionSize = size - (base - alloc_base);
+ if ((info->BaseAddress + info->RegionSize) > 0xc0000000)
+ info->RegionSize = 0xc0000000 - (DWORD)info->BaseAddress;
if (res_len) *res_len = sizeof(*info);
return STATUS_SUCCESS;
}
the problem is that now the patch doesn't apply on wine.
How can I do to continue working with BCB under wine?
Thanks.
--
Flameeyes <dgp85(a)users.sf.net>
http://flameeyes.web.ctonet.it/
Trying to download the rpm for release 20031212 for Redhat 9. The
release notes say that a RH9 version is available, but it's not listed
in the files. Could someone direct me?
Thanks,
Paul
--
Paul Kopacz <pkopacz(a)uoguelph.ca>
It appears that using %HOME% in a drive spec may not work well. I know
winecheck says it can't find the drive but if I put in /home/myhome winecheck
is happy. Wine doesn't seem to complain about it. Is this a winecheck or
Wine problem?
Hello,
wrc does not seem to grok IDC_STATIC. Isn't it supposed to
work out of the box? It is defined to -1 in the MinGW
headers. Sorry if I'm talking nonsense, first steps in
Win32 GUI programming...
Feri.
Looks like Nullsoft has released the Winamp 3 code as open source.
I have no idea what their build process is like, but maybe porting
it could be added to the Winelib page?
http://www.wasabidev.org/
-brian
hello:
I am insterested in poring the Fluke Networks Linkware to Linux.
I get the following when I issue the commands when I am in teh directory
where I want to port the app from:
[princessangry@localhost system]$ winemaker --lower-uppercase .
Winemaker 0.5.9
Copyright 2000 Francois Gouget <fgouget(a)codeweavers.com> for CodeWeavers
Scanning the source directories...
Fixing the source files...
Generating project files...
.
[princessangry@localhost system]$ ./configure
--with-wine=/princessangry/.wine
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking for sqrt in -lm... yes
checking for iswalnum in -lw... no
checking for gethostbyname... yes
checking for connect... yes
checking for gcc strength-reduce bug... no
checking whether we can build a Linux dll... yes
checking whether we need to define __i386__... checking for egrep... grep -E
no
checking whether we need to define __sparc__... no
checking whether we need to define __sun__... no
checking whether we need to define __powerpc__... no
checking for g++ -fpermissive option... yes
checking for g++ -fno-for-scope option... yes
checking for windef.h... configure: error: Could not find the Wine
headers (windef.h)
I cna not find the windef.h file anywhere!!! Please help!!!
thanks
PrincessAngry