Thanks, didn't notice the mak files, because trunk doesn't have them.

I just noticed that the RSC_PROJ lines in the mak files also contain include directories but not the one for "generators", in nove of the cache module mak files. I have no idea what RSC_PROJ is used for but it looks suspicious to only contain parts of the include path.

Example line:

RSC_PROJ=/l 0x409 /fo"$(INTDIR)\mod_socache_memcache.res" /i "../../include" /i "../../srclib/apr/include" /d "NDEBUG" /d BIN_NAME="mod_socache_memcache.so" /d LONG_NAME="socache_memcache_module for Apache"

Regards,

Rainer

Am 16.12.2016 um 19:48 schrieb [email protected]:
Author: wrowe
Date: Fri Dec 16 18:48:49 2016
New Revision: 1774650

URL: http://svn.apache.org/viewvc?rev=1774650&view=rev
Log:
Fix exported .mak output of mod_socache_memcache for '../generators' dependency

Modified:
    httpd/httpd/branches/2.4.x/modules/cache/mod_socache_memcache.mak

Modified: httpd/httpd/branches/2.4.x/modules/cache/mod_socache_memcache.mak
URL: 
http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/cache/mod_socache_memcache.mak?rev=1774650&r1=1774649&r2=1774650&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/cache/mod_socache_memcache.mak (original)
+++ httpd/httpd/branches/2.4.x/modules/cache/mod_socache_memcache.mak Fri Dec 
16 18:48:49 2016
@@ -62,7 +62,7 @@ CLEAN :
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

 CPP=cl.exe
-CPP_PROJ=/nologo /MD /W3 /Zi /O2 /Oy- /I "../../srclib/apr-util/include" /I "../../srclib/apr/include" /I "../../include" /D 
"NDEBUG" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_socache_memcache_src" /FD /c
+CPP_PROJ=/nologo /MD /W3 /Zi /O2 /Oy- /I "../../srclib/apr-util/include" /I "../../srclib/apr/include" /I "../../include" /I 
"../generators" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_socache_memcache_src" 
/FD /c

 .c{$(INTDIR)}.obj::
    $(CPP) @<<
@@ -166,7 +166,7 @@ CLEAN :
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

 CPP=cl.exe
-CPP_PROJ=/nologo /MDd /W3 /Zi /Od /I "../../srclib/apr-util/include" /I "../../srclib/apr/include" /I "../../include" /D 
"_DEBUG" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_socache_memcache_src" /FD /EHsc /c
+CPP_PROJ=/nologo /MDd /W3 /Zi /Od /I "../../srclib/apr-util/include" /I "../../srclib/apr/include" /I "../../include" /I 
"../generators" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_socache_memcache_src" 
/FD /EHsc /c

 .c{$(INTDIR)}.obj::
    $(CPP) @<<

Reply via email to