http://bugs.winehq.com/show_bug.cgi?id=1706
Summary: make depend fails
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: voiceoftheunderground(a)hotmail.com
I downloaded the latest CVS on September 8th. Configure runs fine, however, when
I "make depend" I get the following output:
"Makefile is older than configure, please rerun ./configure
make: *** [Makefile] Error 1"
In the file Makefile, under the comment # Rules for Makefile there is the
following function:
"Makefile: Makefile.in $(TOPSRCDIR)/configure
@echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
@exit 1"
I get the same error when ./tools/wineinstall hits the make depend stage too.
And the only thing I edited in wineinstall was commenting out the root check so
I could install it as root since my normal users don't have gcc access.
The files Make.rules and Make.rules.in both have the same line in them as well.
So I downloaded the stable source from the ftp to tide me over until this issue
is fixed. I'll keep the CVS tree on my comp just in case there is anything else
you want me to test with my system. Just let me know if there is anything I can
do to help you with this issue, I'm not an advanced coder, but I'm not ignorant
either :)
Cory
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1358
------- Additional Comments From Speeddymon(a)yahoo.com 2003-08-09 18:16 -------
have you tried using wineconsole and/or wcmd? please try either of those and
let us know what happens when you use them.. if anything I can always submit
the patch mentioned above and see if alexandre commits it..
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1699
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-08-09 17:33 -------
Ok, checked patch, looks good, but you need to send it in unified diff..
(diff -u) please resubmit in proper format..
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1699
igorg(a)cadlink.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From igorg(a)cadlink.com 2003-08-09 16:11 -------
Solved !
Problem was in TreeView control (dll/comctl32/treeview.c) all the time.
TreeView was not handling WM_CREATE properly - it did not forward CREATESTRUCT
(in lParam) to TREEVIEW_Create function and that function was setting
hwndNotify window to GetParent(hwnd) instead window handle given in
CREATESTRUCT.
I fixed this for TreeView control (patch sent to wine-patches) but same problem
can be expected for other controls which use WS_POPUP style and then set notify
window handler to GetParent(hwnd)
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Solved !
Problem was in TreeView control (dll/comctl32/treeview.c) all the time.
TreeView was not handling WM_CREATE properly - it did not forward
CREATESTRUCT (in lParam) to TREEVIEW_Create function and that function
was setting hwndNotify window to GetParent(hwnd) instead window handle
given in CREATESTRUCT.
Igor
> -----Original Message-----
> From: Wine Bugs [mailto:wine-bugs@winehq.com]
> Sent: September 8, 2003 4:47 PM
> To: igorg(a)cadlink.com
> Subject: [Bug 1699] TreeView sending message to wrong window
>
>
> http://bugs.winehq.com/show_bug.cgi?id=1699
>
>
>
>
>
> ------- Additional Comments From Speeddymon(a)yahoo.com
> 2003-08-09 15:47 -------
> > However if I use --dll comctl32=n and owner is set to
> > GetAncestor( cs->hwndParent, GA_ROOT )
> > everything works OK - popup is on top and CView receives
> WM_NOTIFY from it.
>
> What happens with --dll comctl32=n and owner set to
> WIN_GetFullHandle(cs->hwndParent)?
>
> I would think the same because comctl32=n sets it to use
> native, so it wouldnt
> use any of our code.. I think the relevant part is just the
> fact that
> getancestor is causing it to do one thing that doesnt work
> the way it should
> while win_getfullhandle is causing it to do another thing
> that doesnt quite
> work the way it should either..
>
> --
> Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>
http://bugs.winehq.com/show_bug.cgi?id=1699
------- Additional Comments From Speeddymon(a)yahoo.com 2003-08-09 15:47 -------
> However if I use --dll comctl32=n and owner is set to
> GetAncestor( cs->hwndParent, GA_ROOT )
> everything works OK - popup is on top and CView receives WM_NOTIFY from it.
What happens with --dll comctl32=n and owner set to
WIN_GetFullHandle(cs->hwndParent)?
I would think the same because comctl32=n sets it to use native, so it wouldnt
use any of our code.. I think the relevant part is just the fact that
getancestor is causing it to do one thing that doesnt work the way it should
while win_getfullhandle is causing it to do another thing that doesnt quite
work the way it should either..
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1358
------- Additional Comments From stein(a)ir.iit.edu 2003-08-09 14:46 -------
I have a number of Windows commandline programs that I use regularly.
I often find it necessary to use them over SSH. Since they
are not graphical, I do not need x11drv. ttydrv inserts a bunch
of extra characters, which is annoying, prevents the output from
being seen, and causes it to be mis-formatted. (One of the
utilities is a simple stdin -> stdout, which means that I
need to remove those characters in an additional step.)
For the moment, I am using
"GraphicsDriver" = "none"
and just removing the top line, which is working okay.
It would be very handy if none was an actual driver that worked,
was documented, and did not have the error line.
The proposed code changes would be very helpful.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1682
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
------- Additional Comments From spetreolle(a)yahoo.fr 2003-07-09 09:51 -------
seems that you forgot to configure Wine's registry.
run "regedit winedefault.reg" into windows source directory.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1703
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From spetreolle(a)yahoo.fr 2003-07-09 07:13 -------
Explorer.exe isnt really a simple application and should be avoided, since it
does many other things than just displaying the current directory in a window.
If you really want that, better use winefile.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1583
------- Additional Comments From spetreolle(a)yahoo.fr 2003-07-09 07:04 -------
1/ reconfigure your A: drive to specify an existing location or create /mnt/fd0.
2/ 'wine autorun.inf' cannot work, it isnt an executable file but text.
3/ - verify that you can hear midi music under Linux.
- please attach winecheck results to ensure music is correctly configured in
Wine.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.