Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 229929D18 for ; Wed, 8 Aug 2012 20:49:06 +0000 (UTC) Received: (qmail 92417 invoked by uid 500); 8 Aug 2012 20:49:05 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 92398 invoked by uid 500); 8 Aug 2012 20:49:05 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 92389 invoked by uid 99); 8 Aug 2012 20:49:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2012 20:49:05 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of nkadel@gmail.com designates 209.85.160.43 as permitted sender) Received: from [209.85.160.43] (HELO mail-pb0-f43.google.com) (209.85.160.43) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2012 20:48:58 +0000 Received: by pbcwz7 with SMTP id wz7so3640214pbc.16 for ; Wed, 08 Aug 2012 13:48:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Ye34bndXAOY6MV/ZO32FIL9TP0sBvH028Ir8TQMdMvY=; b=hvFEKaVX53fyGbtXsiM0jI4ljApId1TB+N/yRJIvXPJiDI3Gg0R14jRXEFa3hVprAf JQtppjba20y86Oi1iC/GqonpSi96oV1MVm7fZe9U+ykXg+uSl1IKZnXu0ofvgZ7M/wvh Giu25zTEvdHx+l8AX5AOHh3jhfP/kOyCZ4OUCWzcXdcz7vvn1nO4VM+Mi7WQ5MDgeI3r NbbcCGTWx2FYCW+QHjn7Ehpj+AHOtjI2aK/SV9CphvnM1sawZ5DHoKqUUiChjTw5zWyz hLIPMKAkilww0HkD+S64N7j+VL7M7b4yQqR7k7AgqzYkdNIw5CvP1aRA0sTzZqF0bZ/3 Gn3w== MIME-Version: 1.0 Received: by 10.68.134.161 with SMTP id pl1mr1979978pbb.29.1344458917352; Wed, 08 Aug 2012 13:48:37 -0700 (PDT) Received: by 10.68.64.196 with HTTP; Wed, 8 Aug 2012 13:48:37 -0700 (PDT) In-Reply-To: <5876CF7B7F6E2D48B01C8CB7C3B46C3A0C4A881C@scrvm-ex01.st-claire.org> References: <5876CF7B7F6E2D48B01C8CB7C3B46C3A0C4A85EF@scrvm-ex01.st-claire.org> <5876CF7B7F6E2D48B01C8CB7C3B46C3A0C4A87CD@scrvm-ex01.st-claire.org> <5876CF7B7F6E2D48B01C8CB7C3B46C3A0C4A881C@scrvm-ex01.st-claire.org> Date: Wed, 8 Aug 2012 16:48:37 -0400 Message-ID: Subject: Re: Install SVN from YUM, change Sqlite3 library path From: Nico Kadel-Garcia To: "Tilsley, Jerry M." Cc: Les Mikesell , "users@subversion.apache.org" Content-Type: text/plain; charset=ISO-8859-1 On Wed, Aug 8, 2012 at 12:51 PM, Tilsley, Jerry M. wrote: > > -----Original Message----- > From: Les Mikesell [mailto:lesmikesell@gmail.com] > Sent: Wednesday, August 08, 2012 12:45 PM > To: Tilsley, Jerry M. > Cc: users@subversion.apache.org > Subject: Re: Install SVN from YUM, change Sqlite3 library path > > On Wed, Aug 8, 2012 at 11:27 AM, Tilsley, Jerry M. > wrote: >> The repository is the basic one for RHEL 6.2, I haven't added any others. >> The issue is that this is installed by root, so it finds one set of >> libraries and compiles for that. Then when my other user tries to commit I >> get the error that Sqlite was compiled for 3.6.20 but using 3.6.4. I need >> this to be installed and compiled with the 3.6.4, but I cannot figure out >> how to get yum to pull that one in. > > Sorry, I'm going by a Centos install which is usually the same but > maybe there is some difference. On Centos, sqlite 3.6.20 is the > current stock version and what other packages should expect. I'd > look at the problem the other way and figure out why your other user has > something out of date in his library path. > > The user has an out of date package because the user and package are part of > a large data interfacing system for a hospital. I would like for that user > to be able to check scripts in, but because of the vendor system relies on > the older version of sqlite, the user has to use that version. *Oh*. And their out of date package is not in an RPM, and is somewhere enforcing a LD_LIBRARY_PATH in the user's environment to get the SQLite libraries from that out of date package. There are a number of possible approaches. I'm assuming this happens only for this specific user, or only for users's who've enabled a LD_LIBRARY_PATH as part of the configuration for this out of date package. One approach is to use something like this in the user's .bashrc or .profile. alias svn='LD_LIBRARY_PATH="" /usr/bin/svn"