You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by solo turn <so...@yahoo.com> on 2004/04/28 17:52:13 UTC

solaris compile error: caused by mod_authz_svn change

one error is still bugging here, i cannot build a new solaris binary and still have no idea where
this might come from:

cd subversion/tests/libsvn_subr && /bin/bash /usr/src/svn/libtool --silent --mode=link cc  -g  -g 
-DNEON_ZLIB -DNEON_SSL  -R/usr/local/db42/lib    -L/usr/local/db42/lib
-L/usr/local/apache2-2.0.49/lib  -rpath /usr/local/svn11/lib -o target-test  target-test.o
../../../subversion/libsvn_subr/libsvn_subr-1.la /usr/local/apache2-2.0.49/lib/libaprutil-0.la
-ldb -lexpat /usr/local/apache2-2.0.49/lib/libapr-0.la -lsendfile -lrt -lm -lsocket -lnsl -lresolv
 -lpthread -ldl -lsocket
Undefined                       first referenced
 symbol                             in file
ap_hook_auth_checker                mod_authz_svn.lo
ap_set_file_slot                    mod_authz_svn.lo
dav_svn_split_uri                   mod_authz_svn.lo
ap_satisfies                        mod_authz_svn.lo
ap_some_auth_required               mod_authz_svn.lo
ap_hook_access_checker              mod_authz_svn.lo
ap_log_perror                       mod_authz_svn.lo
ap_note_auth_failure                mod_authz_svn.lo
ap_log_rerror                       mod_authz_svn.lo
ap_set_flag_slot                    mod_authz_svn.lo
ld: fatal: Symbol referencing errors. No output written to .libs/mod_authz_svn.so
make: *** [subversion/mod_authz_svn/mod_authz_svn.la] Error 1
make: *** Waiting for unfinished jobs....

what is new in mod_authz? is it a apache problem (need head tree or something?)



	
		
__________________________________
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs  
http://hotjobs.sweepstakes.yahoo.com/careermakeover 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: solaris compile error: caused by mod_authz_svn change

Posted by Justin Erenkrantz <ju...@erenkrantz.com>.
--On Wednesday, April 28, 2004 10:52 AM -0700 solo turn 
<so...@yahoo.com> wrote:

> one error is still bugging here, i cannot build a new solaris binary and
> still have no idea where this might come from:
>
> cd subversion/tests/libsvn_subr && /bin/bash /usr/src/svn/libtool
> --silent --mode=link cc  -g  -g  -DNEON_ZLIB -DNEON_SSL
> -R/usr/local/db42/lib    -L/usr/local/db42/lib
> -L/usr/local/apache2-2.0.49/lib  -rpath /usr/local/svn11/lib -o
> target-test  target-test.o
> ../../../subversion/libsvn_subr/libsvn_subr-1.la
> /usr/local/apache2-2.0.49/lib/libaprutil-0.la -ldb -lexpat
> /usr/local/apache2-2.0.49/lib/libapr-0.la -lsendfile -lrt -lm -lsocket
> -lnsl -lresolv  -lpthread -ldl -lsocket
> Undefined                       first referenced
>  symbol                             in file
> ap_hook_auth_checker                mod_authz_svn.lo
> ap_set_file_slot                    mod_authz_svn.lo
> dav_svn_split_uri                   mod_authz_svn.lo
> ap_satisfies                        mod_authz_svn.lo
> ap_some_auth_required               mod_authz_svn.lo
> ap_hook_access_checker              mod_authz_svn.lo
> ap_log_perror                       mod_authz_svn.lo
> ap_note_auth_failure                mod_authz_svn.lo
> ap_log_rerror                       mod_authz_svn.lo
> ap_set_flag_slot                    mod_authz_svn.lo
> ld: fatal: Symbol referencing errors. No output written to
> .libs/mod_authz_svn.so make: ***
> [subversion/mod_authz_svn/mod_authz_svn.la] Error 1
> make: *** Waiting for unfinished jobs....
>
> what is new in mod_authz? is it a apache problem (need head tree or
> something?)

Are you sure your output snippet is right here?  Why is target-test relying 
upon mod_authz_svn?  That makes no sense.  The error you see could be the 
error if you tried to build mod_authz_svn without using apxs.  -- justin

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: solaris compile error: caused by mod_authz_svn change

Posted by Joe Orton <jo...@manyfish.co.uk>.
On Wed, Apr 28, 2004 at 10:52:13AM -0700, solo turn wrote:
> one error is still bugging here, i cannot build a new solaris binary and still have no idea where
> this might come from:

The failure is caused by the change to link Apache modules with
-no-undefined, which will break on Unix platforms where -no-undefined is
not a noop e.g. Solaris.

...
> Undefined                       first referenced
>  symbol                             in file
> ap_hook_auth_checker                mod_authz_svn.lo
> ap_set_file_slot                    mod_authz_svn.lo
> dav_svn_split_uri                   mod_authz_svn.lo
> ap_satisfies                        mod_authz_svn.lo
> ap_some_auth_required               mod_authz_svn.lo
> ap_hook_access_checker              mod_authz_svn.lo
> ap_log_perror                       mod_authz_svn.lo
> ap_note_auth_failure                mod_authz_svn.lo
> ap_log_rerror                       mod_authz_svn.lo
> ap_set_flag_slot                    mod_authz_svn.lo
> ld: fatal: Symbol referencing errors. No output written to .libs/mod_authz_svn.so
> make: *** [subversion/mod_authz_svn/mod_authz_svn.la] Error 1
> make: *** Waiting for unfinished jobs....


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org