[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mingw-cvs
Subject:    MinGW-cvs digest, Vol 1 #406 - 5 msgs
From:       mingw-cvs-request () lists ! sourceforge ! net
Date:       2004-05-01 3:04:23
Message-ID: E1BJkyV-0008Td-3g () sc8-sf-list1 ! sourceforge ! net
[Download RAW message or body]

Send MinGW-cvs mailing list submissions to
	mingw-cvs@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/mingw-cvs
or, via email, send a message with subject or body 'help' to
	mingw-cvs-request@lists.sourceforge.net

You can reach the person managing the list at
	mingw-cvs-admin@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of MinGW-cvs digest..."


This list will notify you of updates to the code stored in CVS.  Typically only \
developers with access to update the CVS are interested in this list.  However, this \
list can be beneficial to see what is happening with your changes.  If you wish to \
unsubscribe please do so at https://lists.sourceforge.net/lists/listinfo/mingw-cvs.

Today's Topics:

   1. msys/rt/src/winsup/cygwin ChangeLog.MSYS,1.66,1.67 Makefile.in,1.8,1.9 \
window.cc,1.4,1.5 (Earnie Boyd)  2. msys/rt/src/winsup/cygwin \
ChangeLog.MSYS,1.67,1.68 path.cc,1.44,1.45 (Earnie Boyd)  3. \
msys/packages/rxvt/2.7.2/W11/w32 Makefile,1.1.1.1,1.2 event.c,1.1.1.1,1.2 (Earnie \
Boyd)  4. msys/packages/rxvt/2.7.2/W11/wrap Makefile,1.1.1.1,1.2 (Earnie Boyd)
   5. msys/packages/rxvt/2.7.2/W11/xpm-3.4k/lib RdFToBuf.c,1.1.1.1,1.2 (Earnie Boyd)

--__--__--

Message: 1
From: Earnie Boyd <earnie@users.sourceforge.net>
To: mingw-cvs@lists.sourceforge.net
Date: Fri, 30 Apr 2004 12:42:51 +0000
Subject: [MinGW-cvs] msys/rt/src/winsup/cygwin ChangeLog.MSYS,1.66,1.67 \
Makefile.in,1.8,1.9 window.cc,1.4,1.5

Update of /cvsroot/mingw/msys/rt/src/winsup/cygwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32162

Modified Files:
	ChangeLog.MSYS Makefile.in window.cc 
Log Message:

	* Makefile.in (new-$(DLL_NAME)): Add -luser32 to link command.
	* window.cc: Add TRACE_IN throughout.
	(Winmain): Revert the changes from 04-22.  Add a FIXME MessageBox.



Index: ChangeLog.MSYS
===================================================================
RCS file: /cvsroot/mingw/msys/rt/src/winsup/cygwin/ChangeLog.MSYS,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** ChangeLog.MSYS	23 Apr 2004 02:11:57 -0000	1.66
--- ChangeLog.MSYS	30 Apr 2004 12:42:49 -0000	1.67
***************
*** 1,2 ****
--- 1,8 ----
+ 2004-04-30  Earnie Boyd  <earnie@users.sf.net>
+ 
+ 	* Makefile.in (new-$(DLL_NAME)): Add -luser32 to link command.
+ 	* window.cc: Add TRACE_IN throughout.
+ 	(Winmain): Revert the changes from 04-22.  Add a FIXME MessageBox.
+ 
  2004-04-22  Earnie Boyd  <earnie@users.sf.net>
  

Index: Makefile.in
===================================================================
RCS file: /cvsroot/mingw/msys/rt/src/winsup/cygwin/Makefile.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile.in	19 Apr 2003 01:03:46 -0000	1.8
--- Makefile.in	30 Apr 2004 12:42:49 -0000	1.9
***************
*** 202,206 ****
  	-e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o winver.o \
  	$(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) \
! 	-lstdc++ -lgcc -lshell32 -luuid -lkernel32 -lnetapi32
  
  dll_ofiles: $(DLL_OFILES)
--- 202,206 ----
  	-e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o winver.o \
  	$(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) \
! 	-lstdc++ -lgcc -lshell32 -luuid -lkernel32 -lnetapi32 -luser32
  
  dll_ofiles: $(DLL_OFILES)

Index: window.cc
===================================================================
RCS file: /cvsroot/mingw/msys/rt/src/winsup/cygwin/window.cc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** window.cc	23 Apr 2004 02:11:57 -0000	1.4
--- window.cc	30 Apr 2004 12:42:49 -0000	1.5
***************
*** 31,34 ****
--- 31,35 ----
  WndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
  {
+   TRACE_IN;
  #ifndef NOSTRACE
    strace.wm (uMsg, wParam, lParam);
***************
*** 73,76 ****
--- 74,78 ----
  Winmain (VOID *)
  {
+   TRACE_IN;
    MSG msg;
    WNDCLASS wc;
***************
*** 110,124 ****
      }
  
-   ShowWindow(ourhwnd, SW_SHOW);
-   UpdateWindow(ourhwnd);
- 
    /* Start the message loop. */
  
    while (GetMessage (&msg, ourhwnd, 0, 0) == TRUE)
      {
-       TranslateMessage (&msg);
        DispatchMessage (&msg);
      }
  
    return msg.wParam;
  }
--- 112,124 ----
      }
  
    /* Start the message loop. */
  
    while (GetMessage (&msg, ourhwnd, 0, 0) == TRUE)
      {
        DispatchMessage (&msg);
      }
  
+   /* FIXME: If this MessageBox never appears then this code is never executed */
+   MessageBox(ourhwnd, "If this MessageBox is visible send email \
to\nmingw-users@lists.sf.net with a submit of \"FIXME MB\"", "FIXME", 0);  return \
msg.wParam;  }
***************
*** 127,130 ****
--- 127,131 ----
  gethwnd ()
  {
+   TRACE_IN;
    if (ourhwnd != NULL)
      return ourhwnd;
***************
*** 151,154 ****
--- 152,156 ----
  window_terminate ()
  {
+   TRACE_IN;
    if (ourhwnd)
      SendMessage (ourhwnd, WM_DESTROY, 0, 0);
***************
*** 159,162 ****
--- 161,165 ----
  setitimer (int which, const struct itimerval *value, struct itimerval *oldvalue)
  {
+   TRACE_IN;
    UINT elapse;
  
***************
*** 204,207 ****
--- 207,211 ----
  getitimer (int which, struct itimerval *value)
  {
+   TRACE_IN;
    UINT elapse, val;
  
***************
*** 235,238 ****
--- 239,243 ----
  alarm (unsigned int seconds)
  {
+   TRACE_IN;
    int ret;
    struct itimerval newt, oldt;



--__--__--

Message: 2
From: Earnie Boyd <earnie@users.sourceforge.net>
To: mingw-cvs@lists.sourceforge.net
Date: Fri, 30 Apr 2004 22:42:35 +0000
Subject: [MinGW-cvs] msys/rt/src/winsup/cygwin ChangeLog.MSYS,1.67,1.68 \
path.cc,1.44,1.45

Update of /cvsroot/mingw/msys/rt/src/winsup/cygwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26607

Modified Files:
	ChangeLog.MSYS path.cc 
Log Message:

	* path.cc (msys_p2w): Add recognition of path after comma in switch.



Index: ChangeLog.MSYS
===================================================================
RCS file: /cvsroot/mingw/msys/rt/src/winsup/cygwin/ChangeLog.MSYS,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** ChangeLog.MSYS	30 Apr 2004 12:42:49 -0000	1.67
--- ChangeLog.MSYS	30 Apr 2004 22:42:33 -0000	1.68
***************
*** 4,7 ****
--- 4,8 ----
  	* window.cc: Add TRACE_IN throughout.
  	(Winmain): Revert the changes from 04-22.  Add a FIXME MessageBox.
+ 	* path.cc (msys_p2w): Add recognition of path after comma in switch.
  
  2004-04-22  Earnie Boyd  <earnie@users.sf.net>

Index: path.cc
===================================================================
RCS file: /cvsroot/mingw/msys/rt/src/winsup/cygwin/path.cc,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** path.cc	30 Mar 2004 12:31:56 -0000	1.44
--- path.cc	30 Apr 2004 22:42:33 -0000	1.45
***************
*** 2976,2979 ****
--- 2976,3000 ----
      }
    //
+   // Check for paths after commas, if string begins with a '-' character.
+   //
+   else if ((sspath = strchr(spath, ',')) && spath[0] == '-')
+     {
+       if (IsAbsWin32Path (sspath + 1)) {
+ 	debug_printf("returning: %s", path);
+ 	return (char *)path;
+       }
+       char *swin32_path = msys_p2w(sspath + 1);
+       if (swin32_path == (sspath + 1)) {
+ 	debug_printf("returning: %s", path);
+ 	return (char *)path;
+       }
+       *sspath = '\0';
+       retpathcpy (spath);
+       retpathcat (",");
+       retpathcat (swin32_path);
+       free (swin32_path);
+       return ScrubRetpath (retpath);
+     }
+   //
    // Check for POSIX path lists.
    // But we have to allow processing of quoted strings and switches first



--__--__--

Message: 3
From: Earnie Boyd <earnie@users.sourceforge.net>
To: mingw-cvs@lists.sourceforge.net
Date: Sat, 01 May 2004 02:14:12 +0000
Subject: [MinGW-cvs] msys/packages/rxvt/2.7.2/W11/w32 Makefile,1.1.1.1,1.2 \
event.c,1.1.1.1,1.2

Update of /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/w32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30291/w32

Modified Files:
	Makefile event.c 
Log Message:

	* w32/event.c (NT_handleMsg): Add a Sleep(0) for WM_SIZE to avoid event
	racing and deadlock.
	* w32/Makefile: Remove -mwin32 switch.
	* wrap/Makefile: Ditto.
	* xpm-3.4k/lib/RdFToBuf.c: Modify filters for system headers to allow
	compilation.
	* ChangeLog.MSYS: New file.



Index: Makefile
===================================================================
RCS file: /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/w32/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile	6 Dec 2002 23:08:03 -0000	1.1.1.1
--- Makefile	1 May 2004 02:14:10 -0000	1.2
***************
*** 10,23 ****
  
  xlib.o: xlib.c ntdef.h
! 	gcc -c xlib.c -O -I.. -mwin32
  
  ntutil.o: ntutil.c ntdef.h
! 	gcc -c ntutil.c -O -I.. -mwin32
  
  event.o: event.c ntdef.h
! 	gcc -c event.c -O -I.. -mwin32
  
  debug:
! 	gcc -c xlib.c -g -I.. -mwin32
  
  clean:
--- 10,23 ----
  
  xlib.o: xlib.c ntdef.h
! 	gcc -c xlib.c -O -I.. 
  
  ntutil.o: ntutil.c ntdef.h
! 	gcc -c ntutil.c -O -I.. 
  
  event.o: event.c ntdef.h
! 	gcc -c event.c -O -I.. 
  
  debug:
! 	gcc -c xlib.c -g -I.. 
  
  clean:

Index: event.c
===================================================================
RCS file: /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/w32/event.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** event.c	6 Dec 2002 23:08:03 -0000	1.1.1.1
--- event.c	1 May 2004 02:14:10 -0000	1.2
***************
*** 167,170 ****
--- 167,172 ----
      switch (message) {
  			/* we'll handle these, later */
+ 		case WM_SIZE:			
+ 			Sleep (0);
  		case WM_KILLFOCUS:
  		case WM_SETFOCUS:
***************
*** 183,187 ****
  		case WM_SIZING:
  #endif			
- 		case WM_SIZE:			
  			QEvent(wineventq,window,message,wParam,lParam);
  			break;
--- 185,188 ----



--__--__--

Message: 4
From: Earnie Boyd <earnie@users.sourceforge.net>
To: mingw-cvs@lists.sourceforge.net
Date: Sat, 01 May 2004 02:14:12 +0000
Subject: [MinGW-cvs] msys/packages/rxvt/2.7.2/W11/wrap Makefile,1.1.1.1,1.2

Update of /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/wrap
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30291/wrap

Modified Files:
	Makefile 
Log Message:

	* w32/event.c (NT_handleMsg): Add a Sleep(0) for WM_SIZE to avoid event
	racing and deadlock.
	* w32/Makefile: Remove -mwin32 switch.
	* wrap/Makefile: Ditto.
	* xpm-3.4k/lib/RdFToBuf.c: Modify filters for system headers to allow
	compilation.
	* ChangeLog.MSYS: New file.



Index: Makefile
===================================================================
RCS file: /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/wrap/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile	6 Dec 2002 23:08:03 -0000	1.1.1.1
--- Makefile	1 May 2004 02:14:10 -0000	1.2
***************
*** 10,14 ****
  
  wrap.o: wrap.c xwrappers.gen
! 	gcc -O -c wrap.c -I.. -mwin32
  
  rxvt_res.o: rxvt.rc
--- 10,14 ----
  
  wrap.o: wrap.c xwrappers.gen
! 	gcc -O -c wrap.c -I.. 
  
  rxvt_res.o: rxvt.rc



--__--__--

Message: 5
From: Earnie Boyd <earnie@users.sourceforge.net>
To: mingw-cvs@lists.sourceforge.net
Date: Sat, 01 May 2004 02:14:12 +0000
Subject: [MinGW-cvs] msys/packages/rxvt/2.7.2/W11/xpm-3.4k/lib RdFToBuf.c,1.1.1.1,1.2

Update of /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/xpm-3.4k/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30291/xpm-3.4k/lib

Modified Files:
	RdFToBuf.c 
Log Message:

	* w32/event.c (NT_handleMsg): Add a Sleep(0) for WM_SIZE to avoid event
	racing and deadlock.
	* w32/Makefile: Remove -mwin32 switch.
	* wrap/Makefile: Ditto.
	* xpm-3.4k/lib/RdFToBuf.c: Modify filters for system headers to allow
	compilation.
	* ChangeLog.MSYS: New file.



Index: RdFToBuf.c
===================================================================
RCS file: /cvsroot/mingw/msys/packages/rxvt/2.7.2/W11/xpm-3.4k/lib/RdFToBuf.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** RdFToBuf.c	6 Dec 2002 23:08:05 -0000	1.1.1.1
--- RdFToBuf.c	1 May 2004 02:14:10 -0000	1.2
***************
*** 40,44 ****
  #include "XpmI.h"
  #include <sys/stat.h>
! #if !defined(FOR_MSW) && !defined(WIN32)
  #include <unistd.h>
  #endif
--- 40,44 ----
  #include "XpmI.h"
  #include <sys/stat.h>
! #if (!defined(FOR_MSW) && !defined(WIN32)) || defined (_unix)
  #include <unistd.h>
  #endif
***************
*** 46,50 ****
  #include <fcntl.h>
  #endif
! #if defined(FOR_MSW) || defined(WIN32)
  #include <io.h>
  #define stat _stat
--- 46,50 ----
  #include <fcntl.h>
  #endif
! #if (defined(FOR_MSW) || defined(WIN32)) && !defined (_unix)
  #include <io.h>
  #define stat _stat




--__--__--

_______________________________________________
MinGW-cvs mailing list
MinGW-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-cvs


End of MinGW-cvs Digest


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic