This is the mail archive of the cygwin-patches@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Thread.h failure on


Is this patch needed to solve

In file included from ../../../../../src/winsup/cygwin/dtable.h:14,
                 from ../../../../../src/winsup/cygwin/cygheap.cc:19:
../../../../../src/winsup/cygwin/thread.h:57: field `_grp' has incomplete type
make: *** [cygheap.o] Error 1

or is something else wrong?

Index: thread.h
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/thread.h,v
retrieving revision 1.33
diff -u -p -r1.33 thread.h
--- thread.h    2002/02/10 13:50:13     1.33
+++ thread.h    2002/02/28 14:37:02
@@ -42,7 +42,7 @@ extern "C"
 #include <pthread.h>
 #include <signal.h>
 #include <pwd.h>
-#include <grp.h>
+#include <cygwin/grp.h>
 #define _NOMNTENT_FUNCS
 #include <mntent.h>

Rob


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]