delorie.com/archives/browse.cgi | search |
X-Spam-Check-By: | sourceware.org |
To: | cygwin AT cygwin DOT com |
From: | DEMARCHE <bruno DOT demarche AT sgcib DOT com> |
Subject: | struct passwd problem : running on XP |
Date: | Tue, 16 Jan 2007 08:53:47 +0000 (UTC) |
Lines: | 42 |
Message-ID: | <loom.20070116T095321-153@post.gmane.org> |
Mime-Version: | 1.0 |
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: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
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/
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |