Hi,

I still getting the "Somewhere_deep_inside" error ( I run linux 2.0/ 
Slackware).
Somewhere_deep_inside...: /usr/local/htdig/db/db.words.db: unexpected 
file format 
htmerge: Unable to create/open the word database

I did apply the following patch from Leo Bergolth 
and i got a compilation error:
    // Create the database. 
    // 
    // <LEO> strange error opening existing database files 
    //if ((errno = db_open(filename, DB_BTREE, DB_CREATE, mode, dbenv, 
    // &dbinfo, &dbp)) == 0) 
    if (access(filename, F_OK) == 0) 
      errno = db_open(filename, DB_BTREE, 0, 0, dbenv, &dbinfo, &dbp); 
    else 
      errno = db_open(filename, DB_BTREE, DB_CREATE, mode, dbenv, 
&dbinfo, 
&dbp); 
    if (errno == 0) 
    // </LEO> 

The error i got:

DB2_db.cc: In method `int DB2_db::OpenReadWrite(char *, int = 420)':
DB2_db.cc:81: warning: implicit declaration of function `int 
access(...)'
DB2_db.cc:81: `F_OK' undeclared (first use this function)
DB2_db.cc:81: (Each undeclared identifier is reported only once
DB2_db.cc:81: for each function it appears in.)

Can anyone help solving this problem. I would like to use the new htdig 
but i can't make it to work...

Thanks,
Mike

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
----------------------------------------------------------------------
To unsubscribe from the htdig mailing list, send a message to
[EMAIL PROTECTED] containing the single word "unsubscribe" in
the body of the message.

Reply via email to