[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Patch for back/Tools/gpbs.m on Win32
From: |
christian |
Subject: |
Patch for back/Tools/gpbs.m on Win32 |
Date: |
Mon, 31 Jan 2005 13:56:07 +0900 (JST) |
User-agent: |
SquirrelMail/1.4.3a |
I found that the current version of the GNUstep "back" package doesn't
build on Win32. There is a bug in the code where the #endif for Win32 is
one line off, and removes a needed end-bracket.
(I just checked out the code from Anonymous CVS today, 2005/01/31)
Here is a patch. Hope this helps. Please let me know if there's a better
way to contribute.
Regards,
christian
$ cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/gnustep co -p
back/Tools/gpbs.m | diff -u - back/Tools/gpbs.m
===================================================================
Checking out back/Tools/gpbs.m
RCS: /cvsroot/gnustep/gnustep/core/back/Tools/gpbs.m,v
VERS: 1.18
***************
--- - 2005-01-31 13:39:06.301086000 +0900
+++ back/Tools/gpbs.m 2005-01-31 13:37:53.576513600 +0900
@@ -1274,8 +1274,8 @@
gpbs_log(LOG_CRIT);
exit(EXIT_FAILURE);
}
- }
#endif
+ }
/*
* Make gpbs logging go to syslog unless overridden by user.
This is the CVS diff
$ cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/gnustep diff
back/Tools/gpbs.m
Index: back/Tools/gpbs.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/back/Tools/gpbs.m,v
retrieving revision 1.18
diff -r1.18 gpbs.m
1277d1276
< }
1278a1278
> }
- Patch for back/Tools/gpbs.m on Win32,
christian <=