rubysl-dl 1.0.2 → 1.0.3
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.
- checksums.yaml +4 -4
- data/ext/rubysl/dl/depend +6 -6
- data/ext/rubysl/dl/extconf.rb +1 -1
- data/ext/rubysl/dl/mkcall.rb +0 -0
- data/ext/rubysl/dl/mkcallback.rb +0 -0
- data/ext/rubysl/dl/mkcbtable.rb +0 -0
- data/lib/rubysl/dl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28eac576c2e1309fcb48d5557c31df33c4c17e3e
|
|
4
|
+
data.tar.gz: 189f92f49d91f51804ff4f84822b32cb82fc21b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00322175d39744f2dafbb98e72f021636bd48e64c02ba7d1acd9d97070fd3ea07e7f540e7ebebd13ececfe7048f6b1bd7cfd54faaaa6adc5e8f670a518a43da7
|
|
7
|
+
data.tar.gz: 7f6bb9d124d26369dc3cc11002dbfefc5311a6fe1557d3ae35d902b9b3121580bfc8f5fc82c16d6483858ca8a96ec1cf5a8bb12ee65089333f8ceb446d2e08f2
|
data/ext/rubysl/dl/depend
CHANGED
|
@@ -3,15 +3,15 @@ LDSHARED_TEST = $(LDSHARED) $(LDFLAGS) test/test.o -o test/libtest.so $(LOCAL_LI
|
|
|
3
3
|
libtest.so: test/libtest.so
|
|
4
4
|
|
|
5
5
|
test/libtest.so: test/test.o $(srcdir)/test/libtest.def
|
|
6
|
-
$(
|
|
6
|
+
$(RUBY) -rftools -e 'ARGV.each do|d|File.mkpath(File.dirname(d))end' $@
|
|
7
7
|
$(LDSHARED_TEST:dl.def=test/libtest.def)
|
|
8
8
|
|
|
9
9
|
test/test.o: $(srcdir)/test/test.c
|
|
10
|
-
@$(
|
|
10
|
+
@$(RUBY) -rftools -e 'File.mkpath(*ARGV)' test
|
|
11
11
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/test/test.c -o $@
|
|
12
12
|
|
|
13
13
|
test:: dl.so libtest.so force
|
|
14
|
-
$(
|
|
14
|
+
$(RUBY) -I. -I$(srcdir)/lib $(srcdir)/test/test.rb
|
|
15
15
|
|
|
16
16
|
force:
|
|
17
17
|
|
|
@@ -32,15 +32,15 @@ handle.o: ruby.h dl.h
|
|
|
32
32
|
|
|
33
33
|
call.func: $(srcdir)/mkcall.rb ./dlconfig.rb
|
|
34
34
|
@echo "Generating call.func"
|
|
35
|
-
@$(
|
|
35
|
+
@$(RUBY) $(srcdir)/mkcall.rb $@
|
|
36
36
|
|
|
37
37
|
callback.func: $(srcdir)/mkcallback.rb ./dlconfig.rb
|
|
38
38
|
@echo "Generating callback.func"
|
|
39
|
-
@$(
|
|
39
|
+
@$(RUBY) $(srcdir)/mkcallback.rb $@
|
|
40
40
|
|
|
41
41
|
cbtable.func: $(srcdir)/mkcbtable.rb ./dlconfig.rb
|
|
42
42
|
@echo "Generating cbtable.func"
|
|
43
|
-
@$(
|
|
43
|
+
@$(RUBY) $(srcdir)/mkcbtable.rb $@
|
|
44
44
|
|
|
45
45
|
debug:
|
|
46
46
|
$(MAKE) CPPFLAGS="$(CPPFLAGS) -DDEBUG"
|
data/ext/rubysl/dl/extconf.rb
CHANGED
|
@@ -187,7 +187,7 @@ $cleanfiles = %w[test/test.o]
|
|
|
187
187
|
$distcleanfiles = %w[call.func callback.func cbtable.func dlconfig.rb
|
|
188
188
|
./dlconfig.h test/libtest.so test/*~ *~ mkmf.log]
|
|
189
189
|
|
|
190
|
-
create_makefile('dl')
|
|
190
|
+
create_makefile('dl/dl')
|
|
191
191
|
rescue SystemExit
|
|
192
192
|
# do nothing
|
|
193
193
|
end
|
data/ext/rubysl/dl/mkcall.rb
CHANGED
|
File without changes
|
data/ext/rubysl/dl/mkcallback.rb
CHANGED
|
File without changes
|
data/ext/rubysl/dl/mkcbtable.rb
CHANGED
|
File without changes
|
data/lib/rubysl/dl/version.rb
CHANGED