You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2008/12/27 07:07:45 UTC

svn commit: r729607 - /httpd/mod_mbox/trunk/SConstruct

Author: pquerna
Date: Fri Dec 26 22:07:45 2008
New Revision: 729607

URL: http://svn.apache.org/viewvc?rev=729607&view=rev
Log:
We really do want it to be called 'mod_mbox.so', not 'libmod_mbox.so'

Modified:
    httpd/mod_mbox/trunk/SConstruct

Modified: httpd/mod_mbox/trunk/SConstruct
URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/SConstruct?rev=729607&r1=729606&r2=729607&view=diff
==============================================================================
--- httpd/mod_mbox/trunk/SConstruct (original)
+++ httpd/mod_mbox/trunk/SConstruct Fri Dec 26 22:07:45 2008
@@ -85,7 +85,7 @@
     mod_mbox_sitemap.c
 """)]
 
-module = env.LoadableModule(target = "mod_mbox.so", source = [modsources, libsources])
+module = env.LoadableModule(target = "mod_mbox.so", source = [modsources, libsources], SHLIBPREFIX='')
 
 lenv = env.Clone()
 lenv.ParseConfig(apr_config + ' --link-ld --libs')