You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "William A. Rowe, Jr." <wr...@rowe-clan.net> on 2001/01/20 23:10:25 UTC

Perl v.s. 1.3.15

Folks,

  can anyone point me at the 'typical' values below for the CPAN build
of perl for win32, or ActiveState's, since Win32 users are reporting 
that they can never access the first user's auth record when they
create the dbm auth file from dbmmanage?

/*
 * sdbm - ndbm work-alike hashed database library
 * based on Per-Ake Larson's Dynamic Hashing algorithms. BIT 18 (1978).
 * author: oz@nexus.yorku.ca
 * status: public domain. 
 */
/* increase the block/page size and what can be inserted */
#if 1
#define DBLKSIZ 16384
#define PBLKSIZ 8192
#define PAIRMAX 8008   /* arbitrary on PBLKSIZ-N */
#else
#define DBLKSIZ 4096
#define PBLKSIZ 1024
#define PAIRMAX 1008   /* arbitrary on PBLKSIZ-N */
#endif