From: Dan Scott Date: Thu, 21 Jul 2011 22:39:06 +0000 (-0400) Subject: Provide Fedora-friendly instructions for the DBD libraries X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e308ef5c89d40fb3ce7fab6379918cd2ec901f00;p=working%2FEvergreen.git Provide Fedora-friendly instructions for the DBD libraries We had only provided the Debian / Ubuntu location of the libdbi-libdbd libraries, so add the Fedora location as well. Signed-off-by: Dan Scott --- diff --git a/README b/README index 4e62264459..6570d21821 100644 --- a/README +++ b/README @@ -50,14 +50,22 @@ Note: `centos` and `rhel` are less tested than the `debian`, `fedora`, and `ubuntu` options. Your patches and suggestions for improvement are welcome! + -6. Add `/usr/local/lib/dbd` to the system dynamic library path by issuing - the following commands as the root user: +6. Add the libdbi-libdbd libraries to the system dynamic library path by + issuing the following commands as the root user: + +.Debian / Ubuntu [source, bash] ------------------------------------------------------------------------------ echo "/usr/local/lib/dbd" > /etc/ld.so.conf.d/eg.conf ldconfig ------------------------------------------------------------------------------ ++ +.Fedora +[source, bash] +------------------------------------------------------------------------------ +echo "/usr/lib64/dbd" > /etc/ld.so.conf.d/eg.conf +ldconfig +------------------------------------------------------------------------------ Configuration and compilation instructions: -------------------------------------------