Yepp,
make clean
svn up
./buildconf
./configure
make
sudo make install

Cheers
Mario

On 1 March 2013 17:24, Jim Jagielski <j...@jagunet.com> wrote:
> Did you do a fresh build?
>
> On Mar 1, 2013, at 11:18 AM, Mario Brandt <jbl...@gmail.com> wrote:
>
>> Hi Jim,
>> the compiling runs fine, but the module does not load
>>
>> httpd: Syntax error on line 109 of /opt/apache25/conf/httpd.conf:
>> Cannot load modules/mod_mpm_eventopt.so into server:
>> /opt/apache25/modules/mod_mpm_eventopt.so: undefined symbol:
>> ap_skiplist_insert
>>
>>
>> Cheers
>> Mario
>>
>> On 1 March 2013 16:36,  <j...@apache.org> wrote:
>>> Author: jim
>>> Date: Fri Mar  1 15:36:00 2013
>>> New Revision: 1451620
>>>
>>> URL: http://svn.apache.org/r1451620
>>> Log:
>>> And now make aware... compile/build again :)
>>>
>>> Modified:
>>>    httpd/httpd/trunk/include/ap_skiplist.h
>>>    httpd/httpd/trunk/server/mpm/eventopt/config3.m4
>>>    httpd/httpd/trunk/server/mpm/eventopt/eventopt.c
>>>    httpd/httpd/trunk/server/skiplist.c
>>>
>>> Modified: httpd/httpd/trunk/include/ap_skiplist.h
>>> URL: 
>>> http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_skiplist.h?rev=1451620&r1=1451619&r2=1451620&view=diff
>>> ==============================================================================
>>> --- httpd/httpd/trunk/include/ap_skiplist.h (original)
>>> +++ httpd/httpd/trunk/include/ap_skiplist.h Fri Mar  1 15:36:00 2013
>>> @@ -14,8 +14,8 @@
>>>  * limitations under the License.
>>>  */
>>>
>>> -#ifndef _SKIPLIST_P_H
>>> -#define _SKIPLIST_P_H
>>> +#ifndef _AP_SKIPLIST_P_H
>>> +#define _AP_SKIPLIST_P_H
>>>
>>> #include "apr.h"
>>> #include "apr_portable.h"
>>>
>>> Modified: httpd/httpd/trunk/server/mpm/eventopt/config3.m4
>>> URL: 
>>> http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/eventopt/config3.m4?rev=1451620&r1=1451619&r2=1451620&view=diff
>>> ==============================================================================
>>> --- httpd/httpd/trunk/server/mpm/eventopt/config3.m4 (original)
>>> +++ httpd/httpd/trunk/server/mpm/eventopt/config3.m4 Fri Mar  1 15:36:00 
>>> 2013
>>> @@ -8,7 +8,7 @@ if test "$ac_cv_serf" = yes ; then
>>> fi
>>> APACHE_SUBST(MOD_MPM_EVENTOPT_LDADD)
>>>
>>> -APACHE_MPM_MODULE(eventopt, $enable_mpm_eventopt, eventopt.lo fdqueue.lo 
>>> equeue.lo skiplist.lo,[
>>> +APACHE_MPM_MODULE(eventopt, $enable_mpm_eventopt, eventopt.lo fdqueue.lo 
>>> equeue.lo ,[
>>>     AC_CHECK_FUNCS(pthread_kill)
>>> ], , [\$(MOD_MPM_EVENTOPT_LDADD)])
>>>
>>>
>>> Modified: httpd/httpd/trunk/server/mpm/eventopt/eventopt.c
>>> URL: 
>>> http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/eventopt/eventopt.c?rev=1451620&r1=1451619&r2=1451620&view=diff
>>> ==============================================================================
>>> --- httpd/httpd/trunk/server/mpm/eventopt/eventopt.c (original)
>>> +++ httpd/httpd/trunk/server/mpm/eventopt/eventopt.c Fri Mar  1 15:36:00 
>>> 2013
>>> @@ -97,7 +97,7 @@
>>>
>>>
>>> #include "equeue.h"
>>> -#include "skiplist.h"
>>> +#include "ap_skiplist.h"
>>>
>>> #if HAVE_SERF
>>> #include "mod_serf.h"
>>>
>>> Modified: httpd/httpd/trunk/server/skiplist.c
>>> URL: 
>>> http://svn.apache.org/viewvc/httpd/httpd/trunk/server/skiplist.c?rev=1451620&r1=1451619&r2=1451620&view=diff
>>> ==============================================================================
>>> --- httpd/httpd/trunk/server/skiplist.c (original)
>>> +++ httpd/httpd/trunk/server/skiplist.c Fri Mar  1 15:36:00 2013
>>> @@ -23,7 +23,7 @@
>>>  *  can removed if/when needed.
>>>  */
>>>
>>> -#include "skiplist.h"
>>> +#include "ap_skiplist.h"
>>>
>>> #ifndef MIN
>>> #define MIN(a,b) ((a<b)?(a):(b))
>>>
>>>
>>
>

Reply via email to