Return-Path: Delivered-To: apmail-httpd-modules-dev-archive@locus.apache.org Received: (qmail 86740 invoked from network); 26 Apr 2007 15:48:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Apr 2007 15:48:43 -0000 Received: (qmail 50886 invoked by uid 500); 26 Apr 2007 15:48:49 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 50861 invoked by uid 500); 26 Apr 2007 15:48:48 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Delivered-To: moderator for modules-dev@httpd.apache.org Received: (qmail 91768 invoked by uid 99); 26 Apr 2007 15:17:30 -0000 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: 128.253.83.142 is neither permitted nor denied by domain of hy93@cornell.edu) Message-Id: <6.2.1.2.2.20070426105750.03c59c80@postoffice7.mail.cornell.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Thu, 26 Apr 2007 11:16:57 -0400 To: modules-dev@httpd.apache.org From: Hong Ye Subject: namespace collisions Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Checked: Checked by ClamAV on apache.org Hi, I have an Apache module which makes calls to functions in Kerberos library. On the redHat server that I build my Apache module, there is kerberos library that come with redHat. But I don't want to use that one since it is too old. So I compiled and installed a newer version of kerberos library in my own directory. In my build script, I specified to use the kerberos library in my own directory for linking. After my Apache module is loaded, I found there are namespace collisions. There are global symbols with the same name, one is from the kerberos library I installed, the other one is from the kerberos library that come with redHat. Can someone help me out? Thanks a lot. Hong