Message240176
| Author |
chaselton |
| Recipients |
chaselton, ethan.furman, freakboy3742, r.david.murray, refi64, vstinner |
| Date |
2015年04月06日.20:07:30 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1428350850.97.0.311319663522.issue23496@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Thanks Ryan, the patch worked.
Latest error (when building Modules/pwdmodule.c:)
^
./Modules/pwdmodule.c:86:2: error: stray '#' in program
+#endif
^
./Modules/pwdmodule.c:86:3: error: 'endif' undeclared (first use in this function)
+#endif
^
./Modules/pwdmodule.c:86:3: note: each undeclared identifier is reported only once for each function it appears in
./Modules/pwdmodule.c:75:21: error: expected ';' before 'sets'
#define SETS(i,val) sets(v, i, val)
^
./Modules/pwdmodule.c:87:5: note: in expansion of macro 'SETS'
SETS(setIndex++, p->pw_dir);
^
./Modules/pwdmodule.c: At top level:
./Modules/pwdmodule.c:81:0: error: unterminated #else
#ifdef HAVE_PASSWD_GECOS_FIELD
^
make: *** [Modules/pwdmodule.o] Error 1
/bld/python/cpython-master $ |
|