OS X patch
"Daniel E. Shipton" <[email protected]>
| Newsgroups | gmane.comp.graphics.chromium.user |
|---|---|
| Message-ID | <[email protected]> |
Here is a patch I needed to get Chromium to compile on OS X. -Dan -- Daniel E. Shipton Software Engineer, Infiscape Corp. ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Chromium-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/chromium-users
tcpip.patch
(text/x-patch, 440 B)
Index: tcpip.c
===================================================================
RCS file: /cvsroot/chromium/cr/util/tcpip.c,v
retrieving revision 1.85
diff -r1.85 tcpip.c
386,388c386,388
< #define MAX 100
< static int ports[MAX];
< static int sockets[MAX];
---
> #define MAX_ARRAY_SIZE 100
> static int ports[MAX_ARRAY_SIZE];
> static int sockets[MAX_ARRAY_SIZE];
489c489
< if (count == MAX) {
---
> if (count == MAX_ARRAY_SIZE) {