This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

db2/Versions missing



I noticed that the awk command to regenerate the *.map files is
executed at every rebuild.  Further investigation showed that make
can't find libdb.map and therefore regenerates all map files.

I do think we need either to fix the map generation or add
db2/Versions.

I'm adding a first version of db2/Versions as plain file.  Could
somebody with more detailed knowledge of the different db interface
please check it?

The following functions are also defined as weak:
delete; fetch; firstkey; nextkey; store

I didn't add them to the Versions file.  Could somebody check, if
they're needed or not?

Thanks,
Andreas


1998-07-06  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* db2/Versions: New file.


libdb {
  GLIBC_2.1 {
    # db.2.x interface
    # Constants
    db_rw_conflicts; db_riw_conflicts;
    # Functions
    db_appexit; db_appinit; db_jump_set; db_open; db_value_set;
    db_version; 
    lock_close; lock_detect; lock_get; lock_id; lock_open; lock_put;
    lock_stat; lock_unlink; lock_vec; log_archive; log_close;
    log_compare; log_file; log_flush; log_get; log_open; log_put;
    log_register; log_stat; log_unlink; log_unregister;

    memp_close; memp_fclose; memp_fget; memp_fopen; memp_fput;
    memp_fset; memp_fsync; memp_open; memp_register; memp_stat;
    memp_sync; memp_trickle; memp_unlink;

    txn_abort; txn_begin; txn_checkpoint; txn_close; txn_commit;
    txn_id; txn_open; txn_prepare; txn_stat; txn_unlink;

    # compatibility interface for ndbm
    __db_ndbm_clearerr; __db_ndbm_close; __db_ndbm_delete;
    __db_ndbm_dirfno; __db_ndbm_error; __db_ndbm_fetch;
    __db_ndbm_firstkey; __db_ndbm_nextkey; __db_ndbm_open;
    __db_ndbm_pagfno; __db_ndbm_rdonly; __db_ndbm_store;

    # compatibility interface for dbm
    __db_dbm_delete; __db_dbm_fetch; __db_dbm_firstkey; __db_dbm_init; 
    __db_dbm_nextkey; __db_dbm_store;
  }
  GLIBC_2.0 {
    # db 1.85 interface
    dbopen; __dbopen;

    # The compatibility functions.
    dbm_clearerr; dbm_close; dbm_delete; dbm_dirfno; dbm_error;
    dbm_fetch; dbm_firstkey; dbminit; dbm_nextkey; dbm_open;
    dbm_pagfno; dbm_store;

  }
}

-- 
 Andreas Jaeger   aj@arthur.rhein-neckar.de    jaeger@informatik.uni-kl.de
  for pgp-key finger ajaeger@alma.student.uni-kl.de


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]