[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

undefined symbol ap_casecmpstr error while enabling mod_cern_meta module

From: Manchala Rajesh <manchala.r_at_commonfloor.com>
Date: Mon, 14 Dec 2015 12:50:38 +0530

Hello,

We have downloaded the *mod_cern_meta* module from svn, few months back and
it got worked with Apache version 2.4.

When we try to download the same module from svn again and try to enable
the module, we received the following error.

====
undefined symbol: ap_casecmpstr
====

As a temporary fix, we have edited the below lines on *mod_cern_meta.c*
from the old file which we have on different machine.

====

From:
if (!ap_casecmpstr(w, "Content-type")) {

To:

 if (!strcasecmp(w, "Content-type")) {

From:

else if (!ap_casecmpstr(w, "Status")) {

To:
else if (!strcasecmp(w, "Status")) {
====

Could you please review the recent changes on svn on this file and let us
know whether any modification that we can do from our end to get rid of
this error.

Thanks,
Rajesh

-- 
Using a smartphone? Try our app for property search 
<http://www.commonfloor.com/mobile> and app for residential communities 
<http://groups.commonfloor.com/mobile>.
------------------------------------------------------------------------------------------------------------------
This e-mail and any files transmitted with it may contain confidential and 
privileged information are for the sole use of the intended recipient(s) . 
If you are not the intended recipient, please appraise the sender by reply 
e-mail and destroy all copies and the original message. Any unauthorized 
disclosure, dissemination, forwarding, printing or copying of this email or 
any action taken on this e-mail is strictly prohibited and may be unlawful. 
Received on 2015-12-14 08:31:07 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.