jstribny (Josef Stribny)
- Login: jstribny
- Email: strzibny@gmail.com
- Registered on: 03/21/2013
- Last sign in: 01/30/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
01/30/2014
-
01:26 PM Ruby Bug #9464 (Rejected): Can zlib licensing be clarified?
- Hi all,
Ruby includes zlib library, but I cannot find a mention about zlib in the LEGAL file[1]
even though zlib is probably licensed under zlib license as it is probably mentioned
by the Japanese Ruby license wiki page[2].
That ...
01/10/2014
-
12:10 AM Ruby Bug #9386: Ruby won't build tcl/tk extension, libpathflag expects array
- Including alternative patch if we don't want to change the mkmf. This just fixes the revision.
01/09/2014
-
06:59 PM Ruby Bug #9386 (Closed): Ruby won't build tcl/tk extension, libpathflag expects array
- Hi,
I wasn't successful building Ruby tcl/tk extension from trunk, since the last revision[1] switched to use libpathflag method
that expects an array, but on my Fedora "/usr/lib64":String would be passed to the method.
I believe ...
06/10/2013
-
08:14 PM Ruby Bug #8115: make install DESTDIR=/my/install/path fails
This doesn't seem to help.
I am still getting the following error with the generated Makefile[1]
```
+ ruby extconf.rb --vendor --with-mysql-config
checking for mysql_ssl_set()... yes
checking for rb_str_set_len()... yes
checki...
03/21/2013
-
12:22 AM Ruby Bug #8133 (Closed): Regexp macro %r{} is loosing backslash on "\}"
- Hello,
Ruby 2.0.0 is loosing the backslash when used on "\}" string (exact match).
How to reproduce in irb:
2.0.0-p0 :003 > %r{\}}
=> /}/
2.0.0-p0 :004 > %r{\{}
=> /\{/
Compared to:
1.9.3p392 :001 > %r{\{}
=> /\{...