I have visual studio 6 service pack 5 installed. I have the processor
packs installed. I have set APACHE1_HOME to my apache_1.3.33 source
directory. I have set JAVA_HOME to my JDK directory. APACHE_HOME is set
to the apache installation directory. A colleague advised me to change
these two lines in the mod_jk.dsp file from 

ADD CPP /nologo /MD /W3 /O2 /Zi /I "..\common" /I
"$(APACHE1_HOME)\include" /I "$(APACHE1_HOME)\src\include" /I
"$(APACHE1_HOME)\src\os\win32" /I "$(JAVA_HOME)\include" /I
"$(JAVA_HOME)\include\win32" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D
"_MBCS" /D "_USRDLL" /D "MOD_JK_EXPORTS" /Fd"Release\mod_jk_src" /FD /

to

ADD CPP /nologo /MD /W3 /O2 /Zi /I "..\common" /I
"$(APACHE1_HOME)\include" /I "$(APACHE1_HOME)\src\include" /I
"$(APACHE1_HOME)\src\os\win32" /I "$(JAVA_HOME)\include" /I
"$(JAVA_HOME)\include\win32" /D "EAPI" /D "WIN32" /D "NDEBUG" /D
"_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MOD_JK_EXPORTS"
/Fd"Release\mod_jk_src" /FD /

Note the only change is the addition of /D "EAPI". I did this in the
release and debug sections, and of course uncommented those lines. I'm
expecting this to produce a DLL. However I get 19 errors when I run
``MSDEV mod_jk.dsp /MAKE ALL''. Here are the errors from the Release
build:

--------------------Configuration: mod_jk - Win32
Release--------------------
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp_c
ommon.c(
32): Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp_c
ommon.c(
35): Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Could not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_md5.c
(421): C
ould not find the file httpd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_md5.c
(422): C
ould not find the file http_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_md5.c
(426): C
ould not find the file apr_md5.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_md5.c
(434): C
ould not find the file ap_md5.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(31)
: Could not find the file httpd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(32)
: Could not find the file http_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(33)
: Could not find the file http_request.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(34)
: Could not find the file http_core.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(35)
: Could not find the file http_protocol.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(36)
: Could not find the file http_main.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(37)
: Could not find the file http_log.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(38)
: Could not find the file util_script.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(39)
: Could not find the file util_date.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(40)
: Could not find the file http_conf_globals.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(53)
: Could not find the file jk_global.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(54)
: Could not find the file jk_util.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(55)
: Could not find the file jk_map.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(56)
: Could not find the file jk_pool.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(57)
: Could not find the file jk_service.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(58)
: Could not find the file jk_worker.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod_
jk.c(59)
: Could not find the file jk_uri_worker_map.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_map.c
(24): Co
uld not find the file apr_xlate.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
25): Could not find the file dlfcn.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
28): Could not find the file jni.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
35): Could not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
37): Could not find the file bits/signum.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
42): Could not find the file dlfcn.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
44): Could not find the file nwthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
45): Could not find the file nwadv.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_conne
ct.c(33)
: Could not find the file apr_network_io.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_conne
ct.c(34)
: Could not find the file apr_errno.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_conne
ct.c(35)
: Could not find the file apr_general.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_mt.h(
59): Cou
ld not find the file pthread.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp12
_worker.
c(31): Could not find the file util_ebcdic.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(47):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(51):
 Could not find the file ap_config.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(52):
 Could not find the file apr_strings.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(53):
 Could not find the file apr_lib.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66):
 Could not find the file unistd.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(68):
 Could not find the file novsock2.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(75):
 Could not find the file netdb.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(76):
 Could not find the file netinet/in.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(77):
 Could not find the file sys/socket.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(80):
 Could not find the file netinet/tcp.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(81):
 Could not find the file arpa/inet.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(82):
 Could not find the file sys/un.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(84):
 Could not find the file sys/socketvar.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(87):
 Could not find the file sys/select.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(91):
 Could not find the file sys/time.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(92):
 Could not find the file sys/ioctl.h.
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(172)
: Could not find the file util_ebcdic.h.
Compiling...
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for
80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
cl /ML /Fo"Release/"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp1
2_wor
ker.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp1
3.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp1
3_wor
ker.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_conn
ect.c
"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_
worke
r.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_lb_w
orker
.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_map.
c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_msg_
buff.
c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_pool
.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_sock
buf.c
"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_uri_
worke
r_map.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_util
.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_work
er.c"

 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\apache-1.3\mod
_jk.c
"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp1
4.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp1
4_wor
ker.c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_md5.
c"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_cont
ext.c
"
 
"C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_ajp_
commo
n.c"
jk_ajp12_worker.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_ajp13.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_ajp13_worker.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_connect.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_jni_worker.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_jni_w
orker.c(
25) : fatal error C1083: Cannot open include file: 'dlfcn.h': No such
file or di
rectory
jk_lb_worker.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_map.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_msg_buff.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_pool.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_sockbuf.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or direc
tory
jk_uri_worker_map.c
C:\sandbox\jakarta-tomcat-connectors-1.2.8-src\jk\native\common\jk_globa
l.h(66)
: fatal error C1083: Cannot open include file: 'unistd.h': No such file
or directory
jk_util.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
jk_worker.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
mod_jk.c
C:\sandbox\jakarta-tomcat-connectors-
 : fatal error C1083: Cannot open inc
tory
jk_ajp14.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
jk_ajp14_worker.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
jk_md5.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
jk_context.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
jk_ajp_common.c
C:\sandbox\jakarta-tomcat-connectors-
: fatal error C1083: Cannot open incl
tory
Generating Code...
Error executing cl.exe.

mod_jk.so - 19 error(s), 0 warning(s)

----
Charles H. Baker
O: 864.422.5349 C: 864.201.8456
[EMAIL PROTECTED] 
If you do what you've always done, you'll get what you've always gotten!
-- Paul J. Meyer


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to