rev 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ 0.2.4:
2
+
3
+ * Ugh, botched my first release from the git repo. Oh well. Try, try again.
4
+
1
5
  0.2.3:
2
6
 
3
7
  * Initial Windows support
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  GEMSPEC = Gem::Specification.new do |s|
4
4
  s.name = "rev"
5
- s.version = "0.2.3"
5
+ s.version = "0.2.4"
6
6
  s.authors = "Tony Arcieri"
7
7
  s.email = "tony@medioh.com"
8
8
  s.date = "2009-02-01"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Arcieri
@@ -25,7 +25,6 @@ extra_rdoc_files:
25
25
  - README
26
26
  - CHANGES
27
27
  files:
28
- - lib/http11_client.bundle
29
28
  - lib/rev
30
29
  - lib/rev/async_watcher.rb
31
30
  - lib/rev/dns_resolver.rb
@@ -40,20 +39,14 @@ files:
40
39
  - lib/rev/ssl.rb
41
40
  - lib/rev/timer_watcher.rb
42
41
  - lib/rev.rb
43
- - lib/rev_ext.bundle
44
42
  - lib/revem.rb
45
43
  - ext/http11_client
46
44
  - ext/http11_client/ext_help.h
47
45
  - ext/http11_client/extconf.rb
48
- - ext/http11_client/http11_client.bundle
49
46
  - ext/http11_client/http11_client.c
50
- - ext/http11_client/http11_client.o
51
47
  - ext/http11_client/http11_parser.c
52
48
  - ext/http11_client/http11_parser.h
53
- - ext/http11_client/http11_parser.o
54
49
  - ext/http11_client/http11_parser.rl
55
- - ext/http11_client/Makefile
56
- - ext/http11_client/mkmf.log
57
50
  - ext/libev
58
51
  - ext/libev/Changes
59
52
  - ext/libev/ev.c
@@ -75,28 +68,16 @@ files:
75
68
  - ext/rev/ev_wrap.h
76
69
  - ext/rev/extconf.rb
77
70
  - ext/rev/libev.c
78
- - ext/rev/libev.o
79
- - ext/rev/Makefile
80
- - ext/rev/mkmf.log
81
71
  - ext/rev/rev.h
82
72
  - ext/rev/rev_buffer.c
83
- - ext/rev/rev_buffer.o
84
- - ext/rev/rev_ext.bundle
85
73
  - ext/rev/rev_ext.c
86
- - ext/rev/rev_ext.o
87
74
  - ext/rev/rev_io_watcher.c
88
- - ext/rev/rev_io_watcher.o
89
75
  - ext/rev/rev_loop.c
90
- - ext/rev/rev_loop.o
91
76
  - ext/rev/rev_ssl.c
92
- - ext/rev/rev_ssl.o
93
77
  - ext/rev/rev_timer_watcher.c
94
- - ext/rev/rev_timer_watcher.o
95
78
  - ext/rev/rev_utils.c
96
- - ext/rev/rev_utils.o
97
79
  - ext/rev/rev_watcher.c
98
80
  - ext/rev/rev_watcher.h
99
- - ext/rev/rev_watcher.o
100
81
  - examples/echo_client.rb
101
82
  - examples/echo_server.rb
102
83
  - examples/google.rb
@@ -1,149 +0,0 @@
1
-
2
- SHELL = /bin/sh
3
-
4
- #### Start of system configuration section. ####
5
-
6
- srcdir = .
7
- topdir = /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0
8
- hdrdir = $(topdir)
9
- VPATH = $(srcdir):$(topdir):$(hdrdir)
10
- prefix = $(DESTDIR)/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr
11
- exec_prefix = $(prefix)
12
- sitedir = $(DESTDIR)/Library/Ruby/Site
13
- rubylibdir = $(libdir)/ruby/$(ruby_version)
14
- docdir = $(datarootdir)/doc/$(PACKAGE)
15
- dvidir = $(docdir)
16
- datarootdir = $(prefix)/share
17
- archdir = $(rubylibdir)/$(arch)
18
- sbindir = $(exec_prefix)/sbin
19
- psdir = $(docdir)
20
- localedir = $(datarootdir)/locale
21
- htmldir = $(docdir)
22
- datadir = $(datarootdir)
23
- includedir = $(prefix)/include
24
- infodir = $(DESTDIR)/usr/share/info
25
- sysconfdir = $(prefix)/etc
26
- mandir = $(DESTDIR)/usr/share/man
27
- libdir = $(exec_prefix)/lib
28
- sharedstatedir = $(prefix)/com
29
- oldincludedir = $(DESTDIR)/usr/include
30
- pdfdir = $(docdir)
31
- sitearchdir = $(sitelibdir)/$(sitearch)
32
- bindir = $(exec_prefix)/bin
33
- localstatedir = $(prefix)/var
34
- sitelibdir = $(sitedir)/$(ruby_version)
35
- libexecdir = $(exec_prefix)/libexec
36
-
37
- CC = gcc
38
- LIBRUBY = $(LIBRUBY_SO)
39
- LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
40
- LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
41
- LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)
42
-
43
- RUBY_EXTCONF_H =
44
- CFLAGS = -fno-common -arch ppc -arch i386 -Os -pipe -fno-common
45
- INCFLAGS = -I. -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I.
46
- CPPFLAGS =
47
- CXXFLAGS = $(CFLAGS)
48
- DLDFLAGS = -L. -arch ppc -arch i386
49
- LDSHARED = cc -arch ppc -arch i386 -pipe -bundle -undefined dynamic_lookup
50
- AR = ar
51
- EXEEXT =
52
-
53
- RUBY_INSTALL_NAME = ruby
54
- RUBY_SO_NAME = ruby
55
- arch = universal-darwin9.0
56
- sitearch = universal-darwin9.0
57
- ruby_version = 1.8
58
- ruby = /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
59
- RUBY = $(ruby)
60
- RM = rm -f
61
- MAKEDIRS = mkdir -p
62
- INSTALL = /usr/bin/install -c
63
- INSTALL_PROG = $(INSTALL) -m 0755
64
- INSTALL_DATA = $(INSTALL) -m 644
65
- COPY = cp
66
-
67
- #### End of system configuration section. ####
68
-
69
- preload =
70
-
71
- libpath = . $(libdir)
72
- LIBPATH = -L"." -L"$(libdir)"
73
- DEFFILE =
74
-
75
- CLEANFILES = mkmf.log
76
- DISTCLEANFILES =
77
-
78
- extout =
79
- extout_prefix =
80
- target_prefix =
81
- LOCAL_LIBS =
82
- LIBS = $(LIBRUBYARG_SHARED) -lc -lpthread -ldl -lm
83
- SRCS = http11_client.c http11_parser.c
84
- OBJS = http11_client.o http11_parser.o
85
- TARGET = http11_client
86
- DLLIB = $(TARGET).bundle
87
- EXTSTATIC =
88
- STATIC_LIB =
89
-
90
- RUBYCOMMONDIR = $(sitedir)$(target_prefix)
91
- RUBYLIBDIR = $(sitelibdir)$(target_prefix)
92
- RUBYARCHDIR = $(sitearchdir)$(target_prefix)
93
-
94
- TARGET_SO = $(DLLIB)
95
- CLEANLIBS = $(TARGET).bundle $(TARGET).il? $(TARGET).tds $(TARGET).map
96
- CLEANOBJS = *.o *.a *.s[ol] *.pdb *.exp *.bak
97
-
98
- all: $(DLLIB)
99
- static: $(STATIC_LIB)
100
-
101
- clean:
102
- @-$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
103
-
104
- distclean: clean
105
- @-$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
106
- @-$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
107
-
108
- realclean: distclean
109
- install: install-so install-rb
110
-
111
- install-so: $(RUBYARCHDIR)
112
- install-so: $(RUBYARCHDIR)/$(DLLIB)
113
- $(RUBYARCHDIR)/$(DLLIB): $(DLLIB)
114
- $(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
115
- install-rb: pre-install-rb install-rb-default
116
- install-rb-default: pre-install-rb-default
117
- pre-install-rb: Makefile
118
- pre-install-rb-default: Makefile
119
- $(RUBYARCHDIR):
120
- $(MAKEDIRS) $@
121
-
122
- site-install: site-install-so site-install-rb
123
- site-install-so: install-so
124
- site-install-rb: install-rb
125
-
126
- .SUFFIXES: .c .m .cc .cxx .cpp .C .o
127
-
128
- .cc.o:
129
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
130
-
131
- .cxx.o:
132
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
133
-
134
- .cpp.o:
135
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
136
-
137
- .C.o:
138
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
139
-
140
- .c.o:
141
- $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) -c $<
142
-
143
- $(DLLIB): $(OBJS)
144
- @-$(RM) $@
145
- $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
146
-
147
-
148
-
149
- $(OBJS): ruby.h defines.h
@@ -1,12 +0,0 @@
1
- have_library: checking for main() in -lc... -------------------- yes
2
-
3
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lc -lpthread -ldl -lm "
4
- checked program was:
5
- /* begin */
6
- 1: /*top*/
7
- 2: int main() { return 0; }
8
- 3: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
9
- /* end */
10
-
11
- --------------------
12
-
@@ -1,149 +0,0 @@
1
-
2
- SHELL = /bin/sh
3
-
4
- #### Start of system configuration section. ####
5
-
6
- srcdir = .
7
- topdir = /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0
8
- hdrdir = $(topdir)
9
- VPATH = $(srcdir):$(topdir):$(hdrdir)
10
- prefix = $(DESTDIR)/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr
11
- exec_prefix = $(prefix)
12
- sitedir = $(DESTDIR)/Library/Ruby/Site
13
- rubylibdir = $(libdir)/ruby/$(ruby_version)
14
- docdir = $(datarootdir)/doc/$(PACKAGE)
15
- dvidir = $(docdir)
16
- datarootdir = $(prefix)/share
17
- archdir = $(rubylibdir)/$(arch)
18
- sbindir = $(exec_prefix)/sbin
19
- psdir = $(docdir)
20
- localedir = $(datarootdir)/locale
21
- htmldir = $(docdir)
22
- datadir = $(datarootdir)
23
- includedir = $(prefix)/include
24
- infodir = $(DESTDIR)/usr/share/info
25
- sysconfdir = $(prefix)/etc
26
- mandir = $(DESTDIR)/usr/share/man
27
- libdir = $(exec_prefix)/lib
28
- sharedstatedir = $(prefix)/com
29
- oldincludedir = $(DESTDIR)/usr/include
30
- pdfdir = $(docdir)
31
- sitearchdir = $(sitelibdir)/$(sitearch)
32
- bindir = $(exec_prefix)/bin
33
- localstatedir = $(prefix)/var
34
- sitelibdir = $(sitedir)/$(ruby_version)
35
- libexecdir = $(exec_prefix)/libexec
36
-
37
- CC = gcc
38
- LIBRUBY = $(LIBRUBY_SO)
39
- LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
40
- LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
41
- LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)
42
-
43
- RUBY_EXTCONF_H =
44
- CFLAGS = -fno-common -arch ppc -arch i386 -Os -pipe -fno-common
45
- INCFLAGS = -I. -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I.
46
- CPPFLAGS = -DRUBY_VERSION_CODE=186 -DHAVE_SYS_SELECT_H -DEV_USE_SELECT -DHAVE_POLL_H -DEV_USE_POLL -DHAVE_SYS_EVENT_H -DHAVE_SYS_QUEUE_H -DEV_USE_KQUEUE -DHAVE_OPENSSL_SSL_H -DHAVE_OPENSSL_SSL_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYS_RESOURCE_H -DHAVE_SYSCTLBYNAME -DHAVE_SYSCTLBYNAME
47
- CXXFLAGS = $(CFLAGS)
48
- DLDFLAGS = -L. -arch ppc -arch i386
49
- LDSHARED = cc -arch ppc -arch i386 -pipe -bundle -undefined dynamic_lookup
50
- AR = ar
51
- EXEEXT =
52
-
53
- RUBY_INSTALL_NAME = ruby
54
- RUBY_SO_NAME = ruby
55
- arch = universal-darwin9.0
56
- sitearch = universal-darwin9.0
57
- ruby_version = 1.8
58
- ruby = /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
59
- RUBY = $(ruby)
60
- RM = rm -f
61
- MAKEDIRS = mkdir -p
62
- INSTALL = /usr/bin/install -c
63
- INSTALL_PROG = $(INSTALL) -m 0755
64
- INSTALL_DATA = $(INSTALL) -m 644
65
- COPY = cp
66
-
67
- #### End of system configuration section. ####
68
-
69
- preload =
70
-
71
- libpath = . $(libdir)
72
- LIBPATH = -L"." -L"$(libdir)"
73
- DEFFILE =
74
-
75
- CLEANFILES = mkmf.log
76
- DISTCLEANFILES =
77
-
78
- extout =
79
- extout_prefix =
80
- target_prefix =
81
- LOCAL_LIBS =
82
- LIBS = $(LIBRUBYARG_SHARED) -lpthread -ldl -lm -lssl -lcrypto
83
- SRCS = libev.c rev_buffer.c rev_ext.c rev_io_watcher.c rev_loop.c rev_ssl.c rev_timer_watcher.c rev_utils.c rev_watcher.c
84
- OBJS = libev.o rev_buffer.o rev_ext.o rev_io_watcher.o rev_loop.o rev_ssl.o rev_timer_watcher.o rev_utils.o rev_watcher.o
85
- TARGET = rev_ext
86
- DLLIB = $(TARGET).bundle
87
- EXTSTATIC =
88
- STATIC_LIB =
89
-
90
- RUBYCOMMONDIR = $(sitedir)$(target_prefix)
91
- RUBYLIBDIR = $(sitelibdir)$(target_prefix)
92
- RUBYARCHDIR = $(sitearchdir)$(target_prefix)
93
-
94
- TARGET_SO = $(DLLIB)
95
- CLEANLIBS = $(TARGET).bundle $(TARGET).il? $(TARGET).tds $(TARGET).map
96
- CLEANOBJS = *.o *.a *.s[ol] *.pdb *.exp *.bak
97
-
98
- all: $(DLLIB)
99
- static: $(STATIC_LIB)
100
-
101
- clean:
102
- @-$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
103
-
104
- distclean: clean
105
- @-$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
106
- @-$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
107
-
108
- realclean: distclean
109
- install: install-so install-rb
110
-
111
- install-so: $(RUBYARCHDIR)
112
- install-so: $(RUBYARCHDIR)/$(DLLIB)
113
- $(RUBYARCHDIR)/$(DLLIB): $(DLLIB)
114
- $(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
115
- install-rb: pre-install-rb install-rb-default
116
- install-rb-default: pre-install-rb-default
117
- pre-install-rb: Makefile
118
- pre-install-rb-default: Makefile
119
- $(RUBYARCHDIR):
120
- $(MAKEDIRS) $@
121
-
122
- site-install: site-install-so site-install-rb
123
- site-install-so: install-so
124
- site-install-rb: install-rb
125
-
126
- .SUFFIXES: .c .m .cc .cxx .cpp .C .o
127
-
128
- .cc.o:
129
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
130
-
131
- .cxx.o:
132
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
133
-
134
- .cpp.o:
135
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
136
-
137
- .C.o:
138
- $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
139
-
140
- .c.o:
141
- $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) -c $<
142
-
143
- $(DLLIB): $(OBJS)
144
- @-$(RM) $@
145
- $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
146
-
147
-
148
-
149
- $(OBJS): ruby.h defines.h
Binary file
@@ -1,221 +0,0 @@
1
- have_func: checking for rb_thread_blocking_region()... -------------------- no
2
-
3
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lpthread -ldl -lm "
4
- conftest.c: In function ‘t’:
5
- conftest.c:3: error: ‘rb_thread_blocking_region’ undeclared (first use in this function)
6
- conftest.c:3: error: (Each undeclared identifier is reported only once
7
- conftest.c:3: error: for each function it appears in.)
8
- conftest.c: In function ‘t’:
9
- conftest.c:3: error: ‘rb_thread_blocking_region’ undeclared (first use in this function)
10
- conftest.c:3: error: (Each undeclared identifier is reported only once
11
- conftest.c:3: error: for each function it appears in.)
12
- lipo: can't figure out the architecture type of: /var/folders/lS/lSIRdUtDGyq6fA5qofVEz++++TI/-Tmp-//ccZ0eGQ4.out
13
- checked program was:
14
- /* begin */
15
- 1: /*top*/
16
- 2: int main() { return 0; }
17
- 3: int t() { void ((*volatile p)()); p = (void ((*)()))rb_thread_blocking_region; return 0; }
18
- /* end */
19
-
20
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lpthread -ldl -lm "
21
- Undefined symbols for architecture i386:
22
- "_rb_thread_blocking_region", referenced from:
23
- _t in ccEKa8tY.o
24
- ld: symbol(s) not found for architecture i386
25
- collect2: ld returned 1 exit status
26
- Undefined symbols for architecture ppc:
27
- "_rb_thread_blocking_region", referenced from:
28
- _t in ccop4EPn.o
29
- ld: symbol(s) not found for architecture ppc
30
- collect2: ld returned 1 exit status
31
- lipo: can't open input file: /var/folders/lS/lSIRdUtDGyq6fA5qofVEz++++TI/-Tmp-//cc1ylayd.out (No such file or directory)
32
- checked program was:
33
- /* begin */
34
- 1: /*top*/
35
- 2: int main() { return 0; }
36
- 3: int t() { rb_thread_blocking_region(); return 0; }
37
- /* end */
38
-
39
- --------------------
40
-
41
- have_func: checking for rb_str_set_len()... -------------------- no
42
-
43
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lpthread -ldl -lm "
44
- conftest.c: In function ‘t’:
45
- conftest.c:3: error: ‘rb_str_set_len’ undeclared (first use in this function)
46
- conftest.c:3: error: (Each undeclared identifier is reported only once
47
- conftest.c:3: error: for each function it appears in.)
48
- conftest.c: In function ‘t’:
49
- conftest.c:3: error: ‘rb_str_set_len’ undeclared (first use in this function)
50
- conftest.c:3: error: (Each undeclared identifier is reported only once
51
- conftest.c:3: error: for each function it appears in.)
52
- lipo: can't figure out the architecture type of: /var/folders/lS/lSIRdUtDGyq6fA5qofVEz++++TI/-Tmp-//ccbMxFWX.out
53
- checked program was:
54
- /* begin */
55
- 1: /*top*/
56
- 2: int main() { return 0; }
57
- 3: int t() { void ((*volatile p)()); p = (void ((*)()))rb_str_set_len; return 0; }
58
- /* end */
59
-
60
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lpthread -ldl -lm "
61
- Undefined symbols for architecture ppc:
62
- "_rb_str_set_len", referenced from:
63
- _t in ccXwxaQX.o
64
- ld: symbol(s) not found for architecture ppc
65
- collect2: ld returned 1 exit status
66
- Undefined symbols for architecture i386:
67
- "_rb_str_set_len", referenced from:
68
- _t in cc3mIxYe.o
69
- ld: symbol(s) not found for architecture i386
70
- collect2: ld returned 1 exit status
71
- lipo: can't open input file: /var/folders/lS/lSIRdUtDGyq6fA5qofVEz++++TI/-Tmp-//ccYXmnYF.out (No such file or directory)
72
- checked program was:
73
- /* begin */
74
- 1: /*top*/
75
- 2: int main() { return 0; }
76
- 3: int t() { rb_str_set_len(); return 0; }
77
- /* end */
78
-
79
- --------------------
80
-
81
- have_library: checking for clock_gettime() in -lrt... -------------------- no
82
-
83
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lrt -lpthread -ldl -lm "
84
- conftest.c: In function ‘t’:
85
- conftest.c:3: error: ‘clock_gettime’ undeclared (first use in this function)
86
- conftest.c:3: error: (Each undeclared identifier is reported only once
87
- conftest.c:3: error: for each function it appears in.)
88
- conftest.c: In function ‘t’:
89
- conftest.c:3: error: ‘clock_gettime’ undeclared (first use in this function)
90
- conftest.c:3: error: (Each undeclared identifier is reported only once
91
- conftest.c:3: error: for each function it appears in.)
92
- lipo: can't figure out the architecture type of: /var/folders/lS/lSIRdUtDGyq6fA5qofVEz++++TI/-Tmp-//cc5WtETn.out
93
- checked program was:
94
- /* begin */
95
- 1: /*top*/
96
- 2: int main() { return 0; }
97
- 3: int t() { void ((*volatile p)()); p = (void ((*)()))clock_gettime; return 0; }
98
- /* end */
99
-
100
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lrt -lpthread -ldl -lm "
101
- ld: library not found for -lrt
102
- collect2: ld returned 1 exit status
103
- ld: library not found for -lrt
104
- collect2: ld returned 1 exit status
105
- lipo: can't open input file: /var/folders/lS/lSIRdUtDGyq6fA5qofVEz++++TI/-Tmp-//ccUwCYId.out (No such file or directory)
106
- checked program was:
107
- /* begin */
108
- 1: /*top*/
109
- 2: int main() { return 0; }
110
- 3: int t() { clock_gettime(); return 0; }
111
- /* end */
112
-
113
- --------------------
114
-
115
- have_header: checking for sys/select.h... -------------------- yes
116
-
117
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
118
- checked program was:
119
- /* begin */
120
- 1: #include <sys/select.h>
121
- /* end */
122
-
123
- --------------------
124
-
125
- have_header: checking for poll.h... -------------------- yes
126
-
127
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
128
- checked program was:
129
- /* begin */
130
- 1: #include <poll.h>
131
- /* end */
132
-
133
- --------------------
134
-
135
- have_header: checking for sys/epoll.h... -------------------- no
136
-
137
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
138
- conftest.c:1:23: error: sys/epoll.h: No such file or directory
139
- checked program was:
140
- /* begin */
141
- 1: #include <sys/epoll.h>
142
- /* end */
143
-
144
- --------------------
145
-
146
- have_header: checking for sys/event.h... -------------------- yes
147
-
148
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
149
- checked program was:
150
- /* begin */
151
- 1: #include <sys/event.h>
152
- /* end */
153
-
154
- --------------------
155
-
156
- have_header: checking for sys/queue.h... -------------------- yes
157
-
158
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
159
- checked program was:
160
- /* begin */
161
- 1: #include <sys/queue.h>
162
- /* end */
163
-
164
- --------------------
165
-
166
- have_header: checking for port.h... -------------------- no
167
-
168
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
169
- conftest.c:1:18: error: port.h: No such file or directory
170
- checked program was:
171
- /* begin */
172
- 1: #include <port.h>
173
- /* end */
174
-
175
- --------------------
176
-
177
- have_header: checking for openssl/ssl.h... -------------------- yes
178
-
179
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
180
- checked program was:
181
- /* begin */
182
- 1: #include <openssl/ssl.h>
183
- /* end */
184
-
185
- --------------------
186
-
187
- have_header: checking for sys/resource.h... -------------------- yes
188
-
189
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
190
- checked program was:
191
- /* begin */
192
- 1: #include <sys/resource.h>
193
- /* end */
194
-
195
- --------------------
196
-
197
- have_func: checking for sysctlbyname() in sys/param.h,sys/sysctl.h... -------------------- yes
198
-
199
- "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lpthread -ldl -lm "
200
- checked program was:
201
- /* begin */
202
- 1: #include <sys/param.h>
203
- 2: #include <sys/sysctl.h>
204
- 3:
205
- 4: /*top*/
206
- 5: int main() { return 0; }
207
- 6: int t() { void ((*volatile p)()); p = (void ((*)()))sysctlbyname; return 0; }
208
- /* end */
209
-
210
- --------------------
211
-
212
- have_header: checking for openssl/ssl.h... -------------------- yes
213
-
214
- "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
215
- checked program was:
216
- /* begin */
217
- 1: #include <openssl/ssl.h>
218
- /* end */
219
-
220
- --------------------
221
-
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file