-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pbdb_NEW_failure: #32
Comments
From [email protected]This report has been registered with perlbug. -----Ursprüngliche Nachricht----- This is a build failure report for perl from hansmu@xs4all.nl, 5.005_57 doesn't compile on NeXT. There are three problems: 1. util.c assumes that a platfrom that has fcntl and SETFD must also have The patch below assumes that the value 1 will work on all platforms 2. Andy Dougherty's my_fflush_all() patch contains too many '#'s. Gcc sez: util.c:3340: undefined or invalid # directive 3. NDBM_File tries to #define dbm_error and dbm_clearerr. This fails on After applying the patch below, _57 passes all tests. -- HansM Files affected: ext/NDBM_File/NDBM_File.xs Index: util.c #endif +#if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC) /* NOTE: Do not call the next three routines directly. Use the macros -#define dbm_error(db) dbm_error(db->dbp) -#define dbm_clearerr(db) dbm_clearerr(db->dbp) #define setFilter(type) \ Site configuration information for perl 5.00557: Configured by hansm at Wed May 26 20:58:02 MET DST 1999. Summary of my perl5 (revision 5.0 version 5 subversion 57) configuration: Locally applied patches: @INC for perl 5.00557: Environment for perl 5.00557: PATH=/Users/hansm/bin:/usr/local/bin:/usr/games:/usr/ucb:/bin:/usr/bin:/usr/ |
From [Unknown Contact. See original ticket]Perlbugtron missed this, I shall fix this immediately. perl -v This report has been registered with perlbug. -----Ursprüngliche Nachricht----- This is a build failure report for perl from hansmu@xs4all.nl, 5.005_57 doesn't compile on NeXT. There are three problems: 1. util.c assumes that a platfrom that has fcntl and SETFD must also have The patch below assumes that the value 1 will work on all platforms 2. Andy Dougherty's my_fflush_all() patch contains too many '#'s. Gcc sez: util.c:3340: undefined or invalid # directive 3. NDBM_File tries to #define dbm_error and dbm_clearerr. This fails on After applying the patch below, _57 passes all tests. -- HansM Files affected: ext/NDBM_File/NDBM_File.xs Index: util.c #endif +#if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC) /* NOTE: Do not call the next three routines directly. Use the macros -#define dbm_error(db) dbm_error(db->dbp) -#define dbm_clearerr(db) dbm_clearerr(db->dbp) #define setFilter(type) \ Site configuration information for perl 5.00557: Configured by hansm at Wed May 26 20:58:02 MET DST 1999. Summary of my perl5 (revision 5.0 version 5 subversion 57) configuration: Locally applied patches: @INC for perl 5.00557: Environment for perl 5.00557: PATH=/Users/hansm/bin:/usr/local/bin:/usr/games:/usr/ucb:/bin:/usr/bin:/usr/ |
Migrated from rt.perl.org#832 (status was 'resolved')
Searchable as RT832$
The text was updated successfully, but these errors were encountered: