Hi Stefan,
This seems to break trunk on Windows, prior revision builds fine.
--------------------Configuration: httpd - Win32 Release--------------------
Compiling resources...
Compiling...
main.c
E:\build\httpd-2.3.x-wrk\server\main.c(48) : warning C4273:
'core_module' : inconsistent dll linkage. dllexport assumed.
Linking...
main.obj : error LNK2001: unresolved external symbol _core_module
Release/httpd.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
Regards,
Gregg
sf@apache.org wrote:
> Author: sf
> Date: Sun Jun 6 16:59:50 2010
> New Revision: 951895
>
> URL: http://svn.apache.org/viewvc?rev=951895&view=rev
> Log:
> Use the new APLOG_USE_MODULE/AP_DECLARE_MODULE macros everywhere to take
> advantage of per-module loglevels
>
> Modified:
> ...
> httpd/httpd/trunk/server/main.c
>...
> URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/main.c?rev=951895&r1=951894&r2=951895&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/server/main.c (original)
> +++ httpd/httpd/trunk/server/main.c Sun Jun 6 16:59:50 2010
> @@ -45,6 +45,8 @@
> #include <unistd.h>
> #endif
>
> +APLOG_USE_MODULE(core);
> +
> /* WARNING: Win32 binds http_main.c dynamically to the server. Please place
> * extern functions and global data in another appropriate module.
> *
>
|