# HG changeset patch # User Andrew Bachmann # Date 1167802820 28800 # Node ID 95ffa36d1d2a072a5a57f6caf7cd9e770e09e5a1 # Parent e916bc0dfdd6f0f2529ef69827b38e77efd392c4 BeOS compatibility support diff -r e916bc0dfdd6 -r 95ffa36d1d2a mercurial/bdiff.c --- a/mercurial/bdiff.c Sun Feb 11 18:37:23 2007 +0100 +++ b/mercurial/bdiff.c Tue Jan 02 21:40:20 2007 -0800 @@ -33,7 +33,11 @@ } #else #include +#ifdef __BEOS__ +#include +#else #include +#endif #include #endif diff -r e916bc0dfdd6 -r 95ffa36d1d2a mercurial/mpatch.c --- a/mercurial/mpatch.c Sun Feb 11 18:37:23 2007 +0100 +++ b/mercurial/mpatch.c Tue Jan 02 21:40:20 2007 -0800 @@ -42,7 +42,11 @@ #else /* not windows */ # include -# include +# ifdef __BEOS__ +# include +# else +# include +# endif # include #endif