Displaying 4 results from an estimated 4 matches for "xmgc".
Did you mean:
xmac
2013 May 30
2
Re: libguestfs-1.22.1 compilation error
...s) when you have a valid point and give
such pointers!
indeed there is a diff between your perl and mine
[tmp]> diff -u rwm perl
--- rwm 2013-05-30 13:24:21.066286908 +0300
+++ perl 2013-05-30 13:26:27.149615793 +0300
@@ -1,14 +1,14 @@
- if ($t =~ /\G([^\n]{0,$ll})($break|\n+|\z)/xmgc) {
+ if ($t =~ /\G((?:(?=[^\n])\X){0,$ll})($break|\n+|\z)/xmgc) {
$r .= $unexpand
? unexpand($nl . $lead . $1)
: $nl . $lead . $1;
$remainder = $2;
- } elsif ($huge eq 'wrap' && $t =~ /...
2013 May 30
2
libguestfs-1.22.1 compilation error
myconf
./configure \
PYTHON=/usr/bin/python2 \
--prefix=/usr --libdir=/usr/lib \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--disable-probes \
--disable-gobject \
--enable-introspection=no \
--disable-lua \
--disable-erlang \
--disable-php \
--disable-haskell \
--disable-ruby \
2013 May 30
0
Re: libguestfs-1.22.1 compilation error
On Thu, May 30, 2013 at 01:37:34PM +0300, Evaggelos Balaskas wrote:
> [tmp]> diff -u rwm perl
> --- rwm 2013-05-30 13:24:21.066286908 +0300
> +++ perl 2013-05-30 13:26:27.149615793 +0300
> @@ -1,14 +1,14 @@
> - if ($t =~ /\G([^\n]{0,$ll})($break|\n+|\z)/xmgc) {
> + if ($t =~ /\G((?:(?=[^\n])\X){0,$ll})($break|\n+|\z)/xmgc) {
> $r .= $unexpand
> ? unexpand($nl . $lead . $1)
> : $nl . $lead . $1;
> $remainder = $2;
> - } elsif ($huge eq ...
2013 May 30
0
Re: libguestfs-1.22.1 compilation error
...rl5/core_perl/Text/Wrap.pm line 84.
> make[2]: *** [stamp-guestfs-release-notes.pod] Error 25
It looks like "Wide character in print" is an unrelated warning.
The real error is in Text::Wrap where we find this obscure piece of
code:
if ($t =~ /\G([^\n]{0,$ll})($break|\n+|\z)/xmgc) {
$r .= $unexpand
? unexpand($nl . $lead . $1)
: $nl . $lead . $1;
$remainder = $2;
} elsif ($huge eq 'wrap' && $t =~ /\G([^\n]{$ll})/gc) {
$r .= $unexpand...