This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\zdavatz\software\mod_ruby>make | |
gcc -shared -o mod_ruby.so apache_cookie.o apache_multipart_buffer.o apache_request.o apachelib.o array_header.o bucket.o connection.o cookie.o error.o mod_ruby | |
.o multival.o paramtable.o request.o ruby_config.o ruby_shared_stub.o server.o table.o upload.o uri.o -L"C:\Apache2.2\lib" -L"C:\Ruby-1.8.6-oniguruma\lib" -llib | |
apr-1 -llibaprutil-1 -llibhttpd -lmsvcrt-ruby18 | |
apache_request.o:apache_request.c:(.text+0x1815): undefined reference to `_imp__apr_month_snames' | |
apache_request.o:apache_request.c:(.text+0x1831): undefined reference to `_imp__apr_day_snames' | |
apachelib.o:apachelib.c:(.text+0x33a): undefined reference to `_imp__ap_server_root' | |
bucket.o:bucket.c:(.text+0x111): undefined reference to `_imp__apr_bucket_type_flush' | |
bucket.o:bucket.c:(.text+0x156): undefined reference to `_imp__apr_bucket_type_eos' | |
bucket.o:bucket.c:(.text+0x19b): undefined reference to `_imp__apr_bucket_type_file' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apache_request.o:apache_request.c:(.text+0x1a1b): undefined reference to `_imp__apr_month_snames' | |
apache_request.o:apache_request.c:(.text+0x1a3f): undefined reference to `_imp__apr_day_snames' | |
apachelib.o:apachelib.c:(.text+0x33a): undefined reference to `_imp__ap_server_root' | |
bucket.o:bucket.c:(.text+0x111): undefined reference to `_imp__apr_bucket_type_flush' | |
bucket.o:bucket.c:(.text+0x156): undefined reference to `_imp__apr_bucket_type_eos' | |
bucket.o:bucket.c:(.text+0x19b): undefined reference to `_imp__apr_bucket_type_file' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APACHE_ROOT=C:\Apache2.2 | |
RUBY_ROOT=C:\Ruby-1.8.6-oniguruma | |
SRCS = \ | |
apache_cookie.c \ | |
apache_multipart_buffer.c \ | |
apache_request.c \ | |
apachelib.c \ | |
array_header.c \ | |
bucket.c \ | |
connection.c \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Time/Date Thu Jan 01 01:00:00 1970 | |
Magic 0000 | |
MajorLinkerVersion 0 | |
MinorLinkerVersion 0 | |
SizeOfCode 00000000 | |
SizeOfInitializedData 00000000 | |
SizeOfUninitializedData 00000000 | |
AddressOfEntryPoint 00000000 | |
BaseOfCode 00000000 | |
BaseOfData 00000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APACHE_ROOT=C:/Apache2.2 | |
RUBY_ROOT=C:/Ruby-1.8.6-oniguruma | |
SRCS = \ | |
apache_cookie.c \ | |
apache_multipart_buffer.c \ | |
apache_request.c \ | |
apachelib.c \ | |
array_header.c \ | |
bucket.c \ | |
connection.c \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APACHE_ROOT=C:/Apache2.2 | |
RUBY_ROOT=C:/Ruby-1.8.6-oniguruma | |
SRCS = \ | |
apache_cookie.c \ | |
apache_multipart_buffer.c \ | |
apache_request.c \ | |
apachelib.c \ | |
array_header.c \ | |
bucket.c \ | |
connection.c \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\zdavatz\software\apr>httpd -M | |
Loaded Modules: | |
core_module (static) | |
win32_module (static) | |
mpm_winnt_module (static) | |
http_module (static) | |
so_module (static) | |
actions_module (shared) | |
alias_module (shared) | |
asis_module (shared) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Apache2.2\conf\extra>httpd -e debug | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module actions_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module alias_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module asis_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module auth_basic_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module authn_default_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module authn_file_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module authz_default_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module authz_groupfile_module | |
[Tue Feb 08 15:26:30 2011] [debug] mod_so.c(246): loaded module authz_host_module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Note: /usr/local/apache/libexec/mod_ruby.so is just an example. | |
# You should specify the correct path to mod_ruby.so. | |
LoadModule ruby_module modules/mod_ruby.so | |
# # If ClearModuleList is used in your httpd.conf, you should use AddModule | |
# # to activate the ruby module. | |
# AddModule mod_ruby.c | |
# If the ruby module is installed, this will be enabled. | |
<IfModule mod_ruby.c> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NameVirtualHost *:80 | |
<VirtualHost *:80> | |
ServerName de.oddb.win | |
DocumentRoot C:\Users\zdavatz\de.oddb.org\doc | |
DirectoryIndex index.rbx | |
RubyAddPath 'C:/Ruby-1.8.6-oniguruma/lib/ruby/gems/1.8/gems/de.oddb-2.0.0/lib' | |
RubyRequire 'sbsm/trans_handler' | |
SetHandler ruby-object | |
RubyTransHandler SBSM::ZoneTransHandler.instance |
OlderNewer