Mail Archives: cygwin/2002/07/16/08:28:04
JEB>> Obviously, when I #include <lmaccess.h>, the reported errors are in
JEB>> lmaccess.h. #including <lm.h> results in several files' errors. What
JEB>> am I doing wrong?
> Use #include <windows.h>, and then (if needed) #include <lm.h>
> Egor. mailto:deo AT logos-m DOT ru ICQ 5165414 FidoNet 2:5020/496.19
Egor, thank you very much. This worked perfectly. But, now I have a
bigger problem. My purpose for using <lmaccess.h> was for
setgroups(). And when I compile this code:
#include <unistd.h>
#include <windows.h>
#include <lm.h>
#include <lmaccess.h>
main() {
gid_t group;
group = 0;
setgroups(1,&group);
execl("/bin/sh","sh",NULL);
}
I get this result:
$ gcc cygwinsetgroups.c -lnetapi32
/cygdrive/c/WINDOWS/TEMP/ccX0aNd7.o(.text+0x27):cygwinsetgroups.c:
undefined reference to `setgroups'
collect2: ld returned 1 exit status
The only .a file I was able to find containing 'setgroups' is
libnetapi32.a. Help?
--
Jonathan E. Brickman http://joshuacorps.org
Live forever. If you don't know how, or aren't sure,
please ask, and I will tell you.
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
- Raw text -