⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 关于Berkelay数据库的共享源码
💻
📖 第 1 页 / 共 2 页
字号:
built with the Sun C compiler, but you are using gcc to build this module.When Perl builds modules that need a C compiler, it will attempt to usethe same C compiler and command line options that was used to build perlitself. In this case "-KPIC" is a valid option for the Sun C compiler,but not for gcc. The equivalent option for gcc is "-fPIC".The solution is either:    1. Build both Perl and this module with the same C compiler, either       by using the Sun C compiler for both or gcc for both.    2. Try generating the Makefile for this module like this perl           perl Makefile.PL CC=gcc CCCDLFLAGS=-fPIC OPTIMIZE=" " LD=gcc           make test       This second option seems to work when mixing a Perl binary built       with the Sun C compiler and this module built with gcc. Your       mileage may vary.Network Drive-------------BerkeleyDB seems to have built correctly, but you get a series of errorslike this when you run the test harness:t/btree........NOK 178Can't call method "txn_begin" on an undefined value at t/btree.t line 637.t/btree........dubious                                                               Test returned status 11 (wstat 2816, 0xb00)DIED. FAILED tests 28, 178-244        Failed 68/244 tests, 72.13% okayt/db-3.0.......NOK 2Can't call method "set_mutexlocks" on an undefined value at t/db-3.0.t line 39.t/db-3.0.......dubious                                                               Test returned status 11 (wstat 2816, 0xb00)DIED. FAILED tests 2-14        Failed 13/14 tests, 7.14% okayt/db-3.1.......ok                                                            t/db-3.2.......NOK 5Can't call method "set_flags" on an undefined value at t/db-3.2.t line 62.t/db-3.2.......dubious                                                               Test returned status 11 (wstat 2816, 0xb00)DIED. FAILED tests 3, 5-6        Failed 3/6 tests, 50.00% okayt/db-3.3.......ok                  This pattern of errors happens if you have built the module in a directorythat is network mounted (e.g. NFS ar AFS).The solution is to use a local drive. Berkeley DB doesn't supportnetwork drives.Berkeley DB library configured to support only DB_PRIVATE environments----------------------------------------------------------------------BerkeleyDB seems to have built correctly, but you get a series of errorslike this when you run the test harness:  t/btree........ok 27/244  # : Berkeley DB library configured to support only DB_PRIVATE environments  t/btree........ok 177/244  # : Berkeley DB library configured to support only DB_PRIVATE environments  t/btree........NOK 178Can't call method "txn_begin" on an undefined value at t/btree.t line 638.  t/btree........dubious          Test returned status 2 (wstat 512, 0x200)  Scalar found where operator expected at (eval 153) line 1, near "'int'  $__val"        (Missing operator before   $__val?)  DIED. FAILED tests 28, 178-244          Failed 68/244 tests, 72.13% okaySome versions of Redhat Linux, and possibly some other Linuxdistributions, include a seriously restricted build of theBerkeley DB library that is incompatible with this module. Seehttps://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=91933 for anexhaustive discussion on the reasons for this.Solution:You will have to build a private copy of the Berkeley DB library anduse it when building this Perl module.Linux Notes-----------Some versions of Linux (e.g. RedHat 6, SuSe 6) ship with a C librarythat has version 2.x of Berkeley DB linked into it. This makes itdifficult to build this module with anything other than the version ofBerkeley DB that shipped with your Linux release. If you do try to usea different version of Berkeley DB you will most likely get the errordescribed in the "Incompatible versions of db.h and libdb" section ofthis file.To make matters worse, prior to Perl 5.6.1, the perl binary itself*always* included the Berkeley DB library.If you want to use a newer version of Berkeley DB with this module, theeasiest solution is to use Perl 5.6.1 (or better) and Berkeley DB 3.x(or better).There are two approaches you can use to get older versions of Perl towork with specific versions of Berkeley DB. Both have their advantagesand disadvantages.The first approach will only work when you want to build a version ofPerl older than 5.6.1 along with Berkeley DB 3.x. If you want to useBerkeley DB 2.x, you must use the next approach. This approach involvesrebuilding your existing version of Perl after applying an unofficialpatch. The "patches" directory in the this module's source distributioncontains a number of patch files. There is one patch file for everystable version of Perl since 5.004. Apply the appropriate patch to yourPerl source tree before re-building and installing Perl from scratch.For example, assuming you are in the top-level source directory forPerl 5.6.0, the command below will apply the necessary patch. Rememberto replace the path shown below with one that points to this module'spatches directory.    patch -p1 -N </path/to/BerkeleyDB/patches/5.6.0Now rebuild & install perl. You should now have a perl binary that canbe used to build this module. Follow the instructions in "BUILDING THEMODULE", remembering to set the INCLUDE and LIB variables in config.in.The second approach will work with Berkeley DB 2.x or better.Start by building Berkeley DB as a shared library. This is fromthe Berkeley DB build instructions:    Building Shared Libraries for the GNU GCC compiler    If you're using gcc and there's no better shared library example for    your architecture, the following shared library build procedure will    probably work.    Add the -fpic option to the CFLAGS value in the Makefile.    Rebuild all of your .o files. This will create a Berkeley DB library    that contains .o files with PIC code. To build the shared library,    then take the following steps in the library build directory:    % mkdir tmp    % cd tmp    % ar xv ../libdb.a    % gcc -shared -o libdb.so *.o    % mv libdb.so ..    % cd ..    % rm -rf tmp    Note, you may have to change the gcc line depending on the    requirements of your system.    The file libdb.so is your shared libraryOnce you have built libdb.so, you will need to store it somewhere safe.    cp libdb.so /usr/local/BerkeleyDB/libIf you now set the LD_PRELOAD environment variable to point to thisshared library, Perl will use it instead of the version of Berkeley DBthat shipped with your Linux distribution.    export LD_PRELOAD=/usr/local/BerkeleyDB/lib/libdb.soFinally follow the instructions in "BUILDING THE MODULE" to build,test and install this module. Don't forget to set the INCLUDE and LIBvariables in config.in.Remember, you will need to have the LD_PRELOAD variable set anytime youwant to use Perl with Berkeley DB. Also note that if you have LD_PRELOADpermanently set it will affect ALL commands you execute. This may be aproblem if you run any commands that access a database created by theversion of Berkeley DB that shipped with your Linux distribution.Solaris 2.5 Notes-----------------If you are running Solaris 2.5, and you get this error when you run theBerkeleyDB test harness:    libc internal error: _rmutex_unlock: rmutex not held.you probably need to install a Sun patch. It has been reported thatSun patch 103187-25 (or later revisions) fixes this problem.To find out if you have the patch installed, the command "showrev -p"will display the patches that are currently installed on your system.Solaris 2.7 Notes-----------------If you are running Solaris 2.7 and all the tests in the test harnessgenerate a core dump, try applying Sun patch 106980-09 (or better).To find out if you have the patch installed, the command "showrev -p"will display the patches that are currently installed on your system.HP-UX Notes-----------Some people running HP-UX 10 have reported getting an error like thiswhen building this module with the native HP-UX compiler.    ld: (Warning) At least one PA 2.0 object file (BerkeleyDB.o) was detected.    The linked output may not run on a PA 1.x system.    ld: Invalid loader fixup for symbol "$000000A5".If this is the case for you, Berkeley DB needs to be recompiled withthe +z or +Z option and the resulting library placed in a .sl file. Thefollowing steps should do the trick:  1: Configure the Berkeley DB distribution with the +z or +Z C compiler     flag:        env "CFLAGS=+z" ../dist/configure ...  2: Edit the Berkeley DB Makefile and change:        "libdb= libdb.a" to "libdb= libdb.sl".  3: Build and install the Berkeley DB distribution as usual.FreeBSD Notes-------------On FreeBSD 4.x through 6.x, the default db.h is for version 1. The buildwill fail with an error similar to:BerkeleyDB.xs:74: #error db.h is from Berkeley DB 1.x - need at leastBerkeley DB 2.6.4Later versions of Berkeley DB are usually installed from ports.The available versions can be found by running a find(1) command:    %  find /usr/local/include -name 'db.h'    /usr/local/include/db3/db.h    /usr/local/include/db4/db.h    /usr/local/include/db41/db.h    /usr/local/include/db42/db.h    /usr/local/include/db43/db.hThe desired version of the library must be specified on the command line orvia the config.in file. Make sure both values point to the same version:    INCLUDE = /usr/local/include/db43    LIB     = /usr/local/lib/db43FEEDBACK--------General feedback/questions/bug reports can be sent to me at pmqs@cpan.org.Alternatively, if you have Usenet access, you can try thecomp.databases.berkeley-db or comp.lang.perl.modules groups.How to report a problem with BerkeleyDB.----------------------------------------To help me help you, I need of the following information: 1. The version of Perl and the operating system name and version you    are running. The complete output from running "perl -V" will tell    me all I need to know.      If your perl does not understand the "-V" option is too old.    BerkeleyDB needs Perl version 5.004_04 or better. 2. The version of BerkeleyDB you have. If you have successfully    installed BerkeleyDB, this one-liner will tell you:       perl -MBerkeleyDB -e 'print qq{BerkeleyDB ver $BerkeleyDB::VERSION\n}'    If you are running windows use this       perl -MBerkeleyDB -e "print qq{BerkeleyDB ver $BerkeleyDB::VERSION\n}"    If you haven't installed BerkeleyDB then search BerkeleyDB.pm for a    line like this:      $VERSION = "1.20" ; 3. The version of Berkeley DB you have installed. If you have    successfully installed BerkeleyDB, this one-liner will tell you:        perl -MBerkeleyDB -e 'print BerkeleyDB::DB_VERSION_STRING.qq{\n}'    If you are running windows use this        perl -MBerkeleyDB -e "print BerkeleyDB::DB_VERSION_STRING.qq{\n}"    If you haven't installed BerkeleyDB then search db.h for a line    like this:      #define DB_VERSION_STRING 4. If you are having problems building BerkeleyDB, send me a complete    log of what happened. 5. Now the difficult one. If you think you have found a bug in    BerkeleyDB and you want me to fix it, you will *greatly* enhance    the chances of me being able to track it down by sending me a small    self-contained Perl script that illustrates the problem you are    encountering. Include a summary of what you think the problem is    and a log of what happens when you run the script, in case I can't    reproduce your problem on my system. If possible, don't have the    script dependent on an existing 20Meg database. If the script you    send me can create the database itself then that is preferred.    I realise that in some cases this is easier said than done, so if    you can only reproduce the problem in your existing script, then    you can post me that if you want. Just don't expect me to find your    problem in a hurry, or at all. :-)CHANGES-------See the Changes file.Paul Marquess <pmqs@cpan.org>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -