You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Günter Knauf <ef...@gmx.net> on 2003/03/28 22:40:10 UTC

missing exports on Win32

Win32 doesnt export these symbols as on other platforms:

mod_authn_mysql.obj : error LNK2001: Nichtaufgeloestes externes Symbol __imp__apr_reslist_acquire@8
mod_authn_mysql.obj : error LNK2001: Nichtaufgeloestes externes Symbol __imp__apr_reslist_release@8
mod_authn_mysql.obj : error LNK2001: Nichtaufgeloestes externes Symbol __imp__apr_reslist_create@40

found that apr_reslist.c isnt compiled with Win32; so I added it to aprutil.dsp:

--- aprutil.dsp.orig	Fri Feb 07 00:48:29 2003
+++ aprutil.dsp	Wed Feb 19 04:31:39 2003
@@ -225,6 +225,10 @@
 # End Source File
 # Begin Source File
 
+SOURCE=.\misc\apr_reslist.c
+# End Source File
+# Begin Source File
+
 SOURCE=.\misc\apr_rmm.c
 # End Source File
 # End Group

but aprutil.lib still doesnt export the above symbols...

Guenter.