X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: DEMARCHE Subject: struct passwd problem : running on XP Date: Tue, 16 Jan 2007 08:53:47 +0000 (UTC) Lines: 42 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit User-Agent: Loom/3.14 (http://gmane.org/) X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Here is the history ; Gcc compiled correctly my program with default options. "gcc -c mqutils.c ". I wanted to have my program independant of the Cygwin environment using -mno- cygwin option. "gcc -mno-cygwin -c mqutils.c ". My aim was to deploy my program onto Windows Operating system wihtout cygwin installed. Here is the result : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - gcc -mno-cygwin -g -I. -I"/cygdrive/c/Program Files/IBM/WebSphere MQ/Tools/c/include" -c mqutils.c In file included from mqutils.c:34: /usr/include/pwd.h:53: error: parse error before "uid_t" /usr/include/pwd.h:53: warning: no semicolon at end of struct or union /usr/include/pwd.h:54: warning: data definition has no type or storage class /usr/include/pwd.h:59: error: parse error before '}' token /usr/include/pwd.h:62: warning: parameter names (without types) in function declaration /usr/include/pwd.h:66: error: parse error before "struct" mqutils.c: In function `PutMsg': mqutils.c:106: error: dereferencing pointer to incomplete type make: *** [mqutils.o] Error 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Here is my program : line 100 if(strlen(userId) == 0) { line 101 struct passwd *pwd; line 102 line 103 memset(userId, 0, sizeof(userId)); line 104 pwd = getpwuid(getuid()); line 105 if(pwd) line 106 strcpy(userId, pwd->pw_name); line 107 } line 108 I hope these information will help you. Regards Bruno D. ================================================================== -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/