You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(10) |
Oct
(54) |
Nov
(34) |
Dec
(45) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(49) |
Feb
(17) |
Mar
(13) |
Apr
|
May
(30) |
Jun
(13) |
Jul
(18) |
Aug
(23) |
Sep
(8) |
Oct
(10) |
Nov
(15) |
Dec
(24) |
2005 |
Jan
(16) |
Feb
(33) |
Mar
(58) |
Apr
(61) |
May
(37) |
Jun
(6) |
Jul
(30) |
Aug
(31) |
Sep
(12) |
Oct
(18) |
Nov
(8) |
Dec
(8) |
2006 |
Jan
(30) |
Feb
(4) |
Mar
(5) |
Apr
(4) |
May
(2) |
Jun
(6) |
Jul
(11) |
Aug
(21) |
Sep
(12) |
Oct
(9) |
Nov
(1) |
Dec
(15) |
2007 |
Jan
(4) |
Feb
(6) |
Mar
(7) |
Apr
(1) |
May
(2) |
Jun
(7) |
Jul
(4) |
Aug
(4) |
Sep
(6) |
Oct
|
Nov
|
Dec
(3) |
2008 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(3) |
Dec
|
2010 |
Jan
(5) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bob D. <bd...@si...> - 2006-01-23 17:16:53
|
Which encoding did you try? How does your document look when you run "xmllint" on it? - Bob On Mon, 2006-01-23 at 18:09 +0100, Aleksandar Ilic wrote: > Hello, > it does not help. I tried it :( > > On 1/23/06, Bob Doan <bd...@si...> wrote: > > Hi, > > > > You need to get the encoding right in your XML file. > > > > Something like: > > > > <?xml version="1.0" encoding="ISO8859-1"?> > > > > This is a probably an XML issue and not a RLIB issue. I **think** you > > can set the encoding to utf-8. Zoltan would probably know better. > > > > - Bob > > > > > > On Mon, 2006-01-23 at 12:20 +0100, Aleksandar Ilic wrote: > > > Hello > > > I am trying yo set up UTF-8 encoding, but it just not working > > > I have some text in xml template written in utf-8, and rlib just > > > ignore everything from that char to the end of the that string. > > > If I choose to generate HTML, encoding meta tag is not setted > > > > > > this is my code > > > <?php > > > > > > dl("rlib.so"); > > > > > > $format = "html"; > > > $sql_host = "localhost"; > > > $sql_users = "root"; > > > $sql_password = "secret"; > > > $sql_database = "test"; > > > > > > $rlib = rlib_init(); > > > > > > rlib_set_output_encoding($rlib, "utf-8"); > > > //rlib_set_locale($rlib, "sl_SI.utf8"); > > > > > > //echo rlib_version(); > > > > > > rlib_add_datasource_mysql($rlib, "mysql", $sql_host, $sql_users, > > > $sql_password, $sql_database); > > > rlib_add_query_as($rlib, "mysql", "select * from example", "example"); > > > rlib_add_report($rlib, "report.xml"); > > > rlib_set_output_format_from_text($rlib, $format); > > > rlib_execute($rlib); > > > header( rlib_get_content_type($rlib)); > > > rlib_spool($rlib); > > > rlib_free($rlib); > > > |
From: Bob D. <bd...@si...> - 2006-01-23 14:57:16
|
Hi, You need to get the encoding right in your XML file. Something like: <?xml version="1.0" encoding="ISO8859-1"?> This is a probably an XML issue and not a RLIB issue. I **think** you can set the encoding to utf-8. Zoltan would probably know better. - Bob On Mon, 2006-01-23 at 12:20 +0100, Aleksandar Ilic wrote: > Hello > I am trying yo set up UTF-8 encoding, but it just not working > I have some text in xml template written in utf-8, and rlib just > ignore everything from that char to the end of the that string. > If I choose to generate HTML, encoding meta tag is not setted > > this is my code > <?php > > dl("rlib.so"); > > $format = "html"; > $sql_host = "localhost"; > $sql_users = "root"; > $sql_password = "secret"; > $sql_database = "test"; > > $rlib = rlib_init(); > > rlib_set_output_encoding($rlib, "utf-8"); > //rlib_set_locale($rlib, "sl_SI.utf8"); > > //echo rlib_version(); > > rlib_add_datasource_mysql($rlib, "mysql", $sql_host, $sql_users, > $sql_password, $sql_database); > rlib_add_query_as($rlib, "mysql", "select * from example", "example"); > rlib_add_report($rlib, "report.xml"); > rlib_set_output_format_from_text($rlib, $format); > rlib_execute($rlib); > header( rlib_get_content_type($rlib)); > rlib_spool($rlib); > rlib_free($rlib); > > ?> > > -------------------- > Ilic Aleksandar > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd_______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Aleksandar I. <ili...@gm...> - 2006-01-23 11:20:18
|
Hello I am trying yo set up UTF-8 encoding, but it just not working I have some text in xml template written in utf-8, and rlib just ignore everything from that char to the end of the that string. If I choose to generate HTML, encoding meta tag is not setted this is my code <?php dl("rlib.so"); $format =3D "html"; $sql_host =3D "localhost"; $sql_users =3D "root"; $sql_password =3D "secret"; $sql_database =3D "test"; $rlib =3D rlib_init(); rlib_set_output_encoding($rlib, "utf-8"); //rlib_set_locale($rlib, "sl_SI.utf8"); //echo rlib_version(); rlib_add_datasource_mysql($rlib, "mysql", $sql_host, $sql_users, $sql_password, $sql_database); rlib_add_query_as($rlib, "mysql", "select * from example", "example"); rlib_add_report($rlib, "report.xml"); rlib_set_output_format_from_text($rlib, $format); rlib_execute($rlib); header( rlib_get_content_type($rlib)); rlib_spool($rlib); rlib_free($rlib); ?> -------------------- Ilic Aleksandar |
From: Pramathesh A. <pra...@gm...> - 2006-01-21 08:11:29
|
On Friday 20 January 2006 8:05 pm, you wrote: > Do you have the headers package for your version of Perl? Where will I find this? It doesn't seem to exist in /usr/include or /usr/local/include Thanks Pramathesh |
From: Pramathesh A. <pra...@gm...> - 2006-01-21 08:08:16
|
On Saturday 21 January 2006 10:09 am, rli...@li... wrote: > > If you don't want perl you can add --disable-perl to your configure to > > get around this. > It worked with the --disable-perl switch. rlib compiled and seems to be working now. Thanks Pramathesh |
From: Pramathesh A. <pra...@gm...> - 2006-01-20 15:31:12
|
> From: Bob Doan <bd...@si...> > Hym... What type of system are you building RLIB on? System is Mandriva Linux Limited Edition 2005 > > If you don't want perl you can add --disable-perl to your configure to > get around this. > Will try this Thanks Pramathesh |
From: Bob D. <bd...@si...> - 2006-01-20 14:49:39
|
Hym... What type of system are you building RLIB on? If you don't want perl you can add --disable-perl to your configure to get around this. On Sat, 2006-01-21 at 01:29 +0530, Pramathesh Ambasta wrote: > Hi > Trying to build rlib 1.3.6 resulted in the following make errors (configure > did not throw up any errors but). > What is missing? > Thanks in advance > Pramathesh > > > perl.c:1791: warning: type defaults to `int' in declaration of `arg3' > perl.c:1791: error: initializer element is not constant > perl.c:1791: warning: data definition has no type or storage class > perl.c:1792: warning: type defaults to `int' in declaration of `result' > perl.c:1792: error: redefinition of 'result' > perl.c:1760: error: previous definition of 'result' was here > perl.c:1792: error: redefinition of 'result' > perl.c:866: error: previous definition of 'result' was here > perl.c:1792: error: initializer element is not constant > perl.c:1792: warning: data definition has no type or storage class > perl.c:1794: warning: type defaults to `int' in declaration of `ST' > perl.c:1794: warning: parameter names (without types) in function declaration > perl.c:1794: error: function `ST' is initialized like a variable > perl.c:1794: warning: data definition has no type or storage class > perl.c:1795: error: syntax error before '(' token > perl.c:1795: warning: type defaults to `int' in declaration of `sv_setiv' > perl.c:1795: error: syntax error before "IV" > perl.c:1796: warning: type defaults to `int' in declaration of `XSRETURN' > perl.c:1796: warning: parameter names (without types) in function declaration > perl.c:1796: warning: data definition has no type or storage class > perl.c:1797: error: syntax error before ':' token > perl.c:1800: warning: type defaults to `int' in declaration of `croak' > perl.c:1800: warning: parameter names (without types) in function declaration > perl.c:1800: warning: data definition has no type or storage class > perl.c:1801: error: syntax error before '}' token > perl.c:1828: error: syntax error before "swig_commands" > perl.c:1828: warning: type defaults to `int' in declaration of `swig_commands' > perl.c:1829: warning: braces around scalar initializer > perl.c:1829: warning: (near initialization for `swig_commands[0]') > perl.c:1829: warning: initialization makes integer from pointer without a cast > perl.c:1829: error: `_wrap_rlib_init' undeclared here (not in a function) > perl.c:1829: warning: excess elements in scalar initializer > perl.c:1829: warning: (near initialization for `swig_commands[0]') > perl.c:1830: warning: braces around scalar initializer > perl.c:1830: warning: (near initialization for `swig_commands[1]') > perl.c:1830: warning: initialization makes integer from pointer without a cast > perl.c:1830: error: `_wrap_rlib_add_datasource_mysql' undeclared here (not in > a function) > perl.c:1830: warning: excess elements in scalar initializer > perl.c:1830: warning: (near initialization for `swig_commands[1]') > perl.c:1831: warning: braces around scalar initializer > perl.c:1831: warning: (near initialization for `swig_commands[2]') > perl.c:1831: warning: initialization makes integer from pointer without a cast > perl.c:1831: error: `_wrap_rlib_add_datasource_postgres' undeclared here (not > in a function) > perl.c:1831: warning: excess elements in scalar initializer > perl.c:1831: warning: (near initialization for `swig_commands[2]') > perl.c:1832: warning: braces around scalar initializer > perl.c:1832: warning: (near initialization for `swig_commands[3]') > perl.c:1832: warning: initialization makes integer from pointer without a cast > perl.c:1832: error: `_wrap_rlib_add_datasource_odbc' undeclared here (not in a > function) > perl.c:1832: warning: excess elements in scalar initializer > perl.c:1832: warning: (near initialization for `swig_commands[3]') > perl.c:1833: warning: braces around scalar initializer > perl.c:1833: warning: (near initialization for `swig_commands[4]') > perl.c:1833: warning: initialization makes integer from pointer without a cast > perl.c:1833: error: `_wrap_rlib_add_datasource_xml' undeclared here (not in a > function) > perl.c:1833: warning: excess elements in scalar initializer > perl.c:1833: warning: (near initialization for `swig_commands[4]') > perl.c:1834: warning: braces around scalar initializer > perl.c:1834: warning: (near initialization for `swig_commands[5]') > perl.c:1834: warning: initialization makes integer from pointer without a cast > perl.c:1834: error: `_wrap_rlib_add_query_as' undeclared here (not in a > function) > perl.c:1834: warning: excess elements in scalar initializer > perl.c:1834: warning: (near initialization for `swig_commands[5]') > perl.c:1835: warning: braces around scalar initializer > perl.c:1835: warning: (near initialization for `swig_commands[6]') > perl.c:1835: warning: initialization makes integer from pointer without a cast > perl.c:1835: error: `_wrap_rlib_add_report' undeclared here (not in a > function) > perl.c:1835: warning: excess elements in scalar initializer > perl.c:1835: warning: (near initialization for `swig_commands[6]') > perl.c:1836: warning: braces around scalar initializer > perl.c:1836: warning: (near initialization for `swig_commands[7]') > perl.c:1836: warning: initialization makes integer from pointer without a cast > perl.c:1836: error: `_wrap_rlib_add_report_from_buffer' undeclared here (not > in a function) > perl.c:1836: warning: excess elements in scalar initializer > perl.c:1836: warning: (near initialization for `swig_commands[7]') > perl.c:1837: warning: braces around scalar initializer > perl.c:1837: warning: (near initialization for `swig_commands[8]') > perl.c:1837: warning: initialization makes integer from pointer without a cast > perl.c:1837: error: `_wrap_rlib_execute' undeclared here (not in a function) > perl.c:1837: warning: excess elements in scalar initializer > perl.c:1837: warning: (near initialization for `swig_commands[8]') > perl.c:1838: warning: braces around scalar initializer > perl.c:1838: warning: (near initialization for `swig_commands[9]') > perl.c:1838: warning: initialization makes integer from pointer without a cast > perl.c:1838: error: `_wrap_rlib_get_content_type_as_text' undeclared here (not > in a function) > perl.c:1838: warning: excess elements in scalar initializer > perl.c:1838: warning: (near initialization for `swig_commands[9]') > perl.c:1839: warning: braces around scalar initializer > perl.c:1839: warning: (near initialization for `swig_commands[10]') > perl.c:1839: warning: initialization makes integer from pointer without a cast > perl.c:1839: error: `_wrap_rlib_spool' undeclared here (not in a function) > perl.c:1839: warning: excess elements in scalar initializer > perl.c:1839: warning: (near initialization for `swig_commands[10]') > perl.c:1840: warning: braces around scalar initializer > perl.c:1840: warning: (near initialization for `swig_commands[11]') > perl.c:1840: warning: initialization makes integer from pointer without a cast > perl.c:1840: error: `_wrap_rlib_set_output_format' undeclared here (not in a > function) > perl.c:1840: warning: excess elements in scalar initializer > perl.c:1840: warning: (near initialization for `swig_commands[11]') > perl.c:1841: warning: braces around scalar initializer > perl.c:1841: warning: (near initialization for `swig_commands[12]') > perl.c:1841: warning: initialization makes integer from pointer without a cast > perl.c:1841: error: `_wrap_rlib_add_resultset_follower_n_to_1' undeclared here > (not in a function) > perl.c:1841: warning: excess elements in scalar initializer > perl.c:1841: warning: (near initialization for `swig_commands[12]') > perl.c:1842: warning: braces around scalar initializer > perl.c:1842: warning: (near initialization for `swig_commands[13]') > perl.c:1842: warning: initialization makes integer from pointer without a cast > perl.c:1842: error: `_wrap_rlib_add_resultset_follower' undeclared here (not > in a function) > perl.c:1842: warning: excess elements in scalar initializer > perl.c:1842: warning: (near initialization for `swig_commands[13]') > perl.c:1843: warning: braces around scalar initializer > perl.c:1843: warning: (near initialization for `swig_commands[14]') > perl.c:1843: warning: initialization makes integer from pointer without a cast > perl.c:1843: error: `_wrap_rlib_set_output_format_from_text' undeclared here > (not in a function) > perl.c:1843: warning: excess elements in scalar initializer > perl.c:1843: warning: (near initialization for `swig_commands[14]') > perl.c:1844: warning: braces around scalar initializer > perl.c:1844: warning: (near initialization for `swig_commands[15]') > perl.c:1844: warning: initialization makes integer from pointer without a cast > perl.c:1844: error: `_wrap_rlib_get_output' undeclared here (not in a > function) > perl.c:1844: warning: excess elements in scalar initializer > perl.c:1844: warning: (near initialization for `swig_commands[15]') > perl.c:1845: warning: braces around scalar initializer > perl.c:1845: warning: (near initialization for `swig_commands[16]') > perl.c:1845: warning: initialization makes integer from pointer without a cast > perl.c:1845: error: `_wrap_rlib_get_output_length' undeclared here (not in a > function) > perl.c:1845: warning: excess elements in scalar initializer > perl.c:1845: warning: (near initialization for `swig_commands[16]') > perl.c:1846: warning: braces around scalar initializer > perl.c:1846: warning: (near initialization for `swig_commands[17]') > perl.c:1846: warning: initialization makes integer from pointer without a cast > perl.c:1846: error: `_wrap_rlib_signal_connect' undeclared here (not in a > function) > perl.c:1846: warning: excess elements in scalar initializer > perl.c:1846: warning: (near initialization for `swig_commands[17]') > perl.c:1847: warning: braces around scalar initializer > perl.c:1847: warning: (near initialization for `swig_commands[18]') > perl.c:1847: warning: initialization makes integer from pointer without a cast > perl.c:1847: error: `_wrap_rlib_signal_connect_string' undeclared here (not in > a function) > perl.c:1847: warning: excess elements in scalar initializer > perl.c:1847: warning: (near initialization for `swig_commands[18]') > perl.c:1848: warning: braces around scalar initializer > perl.c:1848: warning: (near initialization for `swig_commands[19]') > perl.c:1848: warning: initialization makes integer from pointer without a cast > perl.c:1848: error: `_wrap_rlib_query_refresh' undeclared here (not in a > function) > perl.c:1848: warning: excess elements in scalar initializer > perl.c:1848: warning: (near initialization for `swig_commands[19]') > perl.c:1849: warning: braces around scalar initializer > perl.c:1849: warning: (near initialization for `swig_commands[20]') > perl.c:1849: warning: initialization makes integer from pointer without a cast > perl.c:1849: error: `_wrap_rlib_add_parameter' undeclared here (not in a > function) > perl.c:1849: warning: excess elements in scalar initializer > perl.c:1849: warning: (near initialization for `swig_commands[20]') > perl.c:1850: warning: braces around scalar initializer > perl.c:1850: warning: (near initialization for `swig_commands[21]') > perl.c:1850: warning: initialization makes integer from pointer without a cast > perl.c:1850: error: `_wrap_rlib_set_locale' undeclared here (not in a > function) > perl.c:1850: warning: excess elements in scalar initializer > perl.c:1850: warning: (near initialization for `swig_commands[21]') > perl.c:1851: warning: braces around scalar initializer > perl.c:1851: warning: (near initialization for `swig_commands[22]') > perl.c:1851: warning: initialization makes integer from pointer without a cast > perl.c:1851: error: `_wrap_rlib_set_output_parameter' undeclared here (not in > a function) > perl.c:1851: warning: excess elements in scalar initializer > perl.c:1851: warning: (near initialization for `swig_commands[22]') > perl.c:1852: warning: braces around scalar initializer > perl.c:1852: warning: (near initialization for `swig_commands[23]') > perl.c:1852: warning: initialization makes integer from pointer without a cast > perl.c:1852: error: `_wrap_rlib_set_output_encoding' undeclared here (not in a > function) > perl.c:1852: warning: excess elements in scalar initializer > perl.c:1852: warning: (near initialization for `swig_commands[23]') > perl.c:1853: warning: braces around scalar initializer > perl.c:1853: warning: (near initialization for `swig_commands[24]') > perl.c:1853: warning: initialization makes integer from pointer without a cast > perl.c:1853: error: `_wrap_rlib_set_datasource_encoding' undeclared here (not > in a function) > perl.c:1853: warning: excess elements in scalar initializer > perl.c:1853: warning: (near initialization for `swig_commands[24]') > perl.c:1854: warning: braces around scalar initializer > perl.c:1854: warning: (near initialization for `swig_commands[25]') > perl.c:1854: warning: initialization makes integer from pointer without a cast > perl.c:1854: error: `_wrap_rlib_free' undeclared here (not in a function) > perl.c:1854: warning: excess elements in scalar initializer > perl.c:1854: warning: (near initialization for `swig_commands[25]') > perl.c:1855: warning: braces around scalar initializer > perl.c:1855: warning: (near initialization for `swig_commands[26]') > perl.c:1855: warning: initialization makes integer from pointer without a cast > perl.c:1855: error: `_wrap_rlib_version' undeclared here (not in a function) > perl.c:1855: warning: excess elements in scalar initializer > perl.c:1855: warning: (near initialization for `swig_commands[26]') > perl.c:1856: warning: braces around scalar initializer > perl.c:1856: warning: (near initialization for `swig_commands[27]') > perl.c:1856: warning: initialization makes integer from pointer without a cast > perl.c:1856: error: `_wrap_rlib_graph_add_bg_region' undeclared here (not in a > function) > perl.c:1856: warning: excess elements in scalar initializer > perl.c:1856: warning: (near initialization for `swig_commands[27]') > perl.c:1857: warning: braces around scalar initializer > perl.c:1857: warning: (near initialization for `swig_commands[28]') > perl.c:1857: warning: initialization makes integer from pointer without a cast > perl.c:1857: error: `_wrap_rlib_graph_clear_bg_region' undeclared here (not in > a function) > perl.c:1857: warning: excess elements in scalar initializer > perl.c:1857: warning: (near initialization for `swig_commands[28]') > perl.c:1858: warning: braces around scalar initializer > perl.c:1858: warning: (near initialization for `swig_commands[29]') > perl.c:1858: warning: initialization makes integer from pointer without a cast > perl.c:1858: error: `_wrap_rlib_graph_set_x_minor_tick' undeclared here (not > in a function) > perl.c:1858: warning: excess elements in scalar initializer > perl.c:1858: warning: (near initialization for `swig_commands[29]') > perl.c:1859: warning: braces around scalar initializer > perl.c:1859: warning: (near initialization for `swig_commands[30]') > perl.c:1859: warning: initialization makes integer from pointer without a cast > perl.c:1859: error: `_wrap_rlib_graph_set_x_minor_tick_by_location' undeclared > here (not in a function) > perl.c:1859: warning: excess elements in scalar initializer > perl.c:1859: warning: (near initialization for `swig_commands[30]') > perl.c:1860: warning: braces around scalar initializer > perl.c:1860: warning: (near initialization for `swig_commands[31]') > perl.c:1860: warning: excess elements in scalar initializer > perl.c:1860: warning: (near initialization for `swig_commands[31]') > perl.c:1861: warning: data definition has no type or storage class > perl.c:1867: error: syntax error before '{' token > perl.c:1871: error: syntax error before "if" > perl.c:1872: warning: type defaults to `int' in declaration of > `swig_types_initial' > perl.c:1872: error: variable-size type declared outside of any function > perl.c:1872: error: conflicting types for 'swig_types_initial' > perl.c:1810: error: previous definition of 'swig_types_initial' was here > perl.c:1872: warning: data definition has no type or storage class > perl.c:1872: error: syntax error before '++' token > perl.c:1875: warning: type defaults to `int' in declaration of `_init' > perl.c:1875: error: redefinition of '_init' > perl.c:1870: error: previous definition of '_init' was here > perl.c:1875: warning: data definition has no type or storage class > perl.c:1876: error: syntax error before '}' token > perl.c:1879: error: syntax error before '.' token > perl.c:1884: error: syntax error before '.' token > perl.c:1886: warning: type defaults to `int' in declaration of `sv' > perl.c:1886: error: initializer element is not constant > perl.c:1886: warning: data definition has no type or storage class > perl.c:1887: error: syntax error before "if" > perl.c:1892: error: syntax error before '(' token > perl.c:1892: error: syntax error before '.' token > perl.c:1896: error: syntax error before '.' token > perl.c:1898: warning: type defaults to `int' in declaration of `sv' > perl.c:1898: error: redefinition of 'sv' > perl.c:1886: error: previous definition of 'sv' was here > perl.c:1898: error: initializer element is not constant > perl.c:1898: warning: data definition has no type or storage class > perl.c:1899: error: syntax error before "switch" > perl.c:1918: warning: type defaults to `int' in declaration of `SvREADONLY_on' > perl.c:1918: warning: parameter names (without types) in function declaration > perl.c:1918: warning: data definition has no type or storage class > perl.c:1919: error: syntax error before '}' token > perl.c:1921: error: syntax error before numeric constant > perl.c:1921: warning: type defaults to `int' in declaration of `ST' > perl.c:1921: error: function `ST' is initialized like a variable > perl.c:1921: error: `sv_yes' undeclared here (not in a function) > perl.c:1921: warning: data definition has no type or storage class > perl.c:1922: error: syntax error before numeric constant > perl.c:1922: warning: type defaults to `int' in declaration of `XSRETURN' > perl.c:1922: warning: data definition has no type or storage class > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3087: warning: array 'PL_sig_name' > assumed to have one element > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3088: warning: array 'PL_sig_num' > assumed to have one element > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3166: warning: array 'PL_fold' > assumed to have one element > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3205: warning: array > 'PL_fold_locale' assumed to have one element > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3281: warning: array 'PL_freq' > assumed to have one element > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3711: error: storage size of > `PL_vtbl_sv' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3712: error: storage size of > `PL_vtbl_env' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3713: error: storage size of > `PL_vtbl_envelem' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3714: error: storage size of > `PL_vtbl_sig' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3715: error: storage size of > `PL_vtbl_sigelem' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3716: error: storage size of > `PL_vtbl_pack' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3717: error: storage size of > `PL_vtbl_packelem' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3718: error: storage size of > `PL_vtbl_dbline' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3719: error: storage size of > `PL_vtbl_isa' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3720: error: storage size of > `PL_vtbl_isaelem' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3721: error: storage size of > `PL_vtbl_arylen' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3722: error: storage size of > `PL_vtbl_glob' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3723: error: storage size of > `PL_vtbl_mglob' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3724: error: storage size of > `PL_vtbl_nkeys' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3725: error: storage size of > `PL_vtbl_taint' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3726: error: storage size of > `PL_vtbl_substr' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3727: error: storage size of > `PL_vtbl_vec' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3728: error: storage size of > `PL_vtbl_pos' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3729: error: storage size of > `PL_vtbl_bm' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3730: error: storage size of > `PL_vtbl_fm' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3731: error: storage size of > `PL_vtbl_uvar' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3732: error: storage size of > `PL_vtbl_ovrld' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3738: error: storage size of > `PL_vtbl_defelem' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3739: error: storage size of > `PL_vtbl_regexp' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3740: error: storage size of > `PL_vtbl_regdata' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3741: error: storage size of > `PL_vtbl_regdatum' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3744: error: storage size of > `PL_vtbl_collxfrm' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3747: error: storage size of > `PL_vtbl_amagic' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3748: error: storage size of > `PL_vtbl_amagicelem' isn'tknown > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3750: error: storage size of > `PL_vtbl_backref' isn't known > /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3751: error: storage size of > `PL_vtbl_utf8' isn't known > perl.c:111: warning: 'SWIG_Perl_TypeRegister' defined but not used > perl.c:183: warning: 'SWIG_Perl_TypeDynamicCast' defined but not used > perl.c:195: warning: 'SWIG_Perl_TypeName' defined but not used > perl.c:201: warning: 'SWIG_Perl_TypeQuery' defined but not used > perl.c:487: warning: 'SWIG_Perl_ConvertPtr' defined but not used > perl.c:577: warning: 'SWIG_Perl_NewPointerObj' defined but not used > perl.c:584: warning: 'SWIG_Perl_MakePackedObj' defined but not used > perl.c:596: warning: 'SWIG_Perl_ConvertPacked' defined but not used > perl.c:614: warning: 'SWIG_Perl_SetError' defined but not used > perl.c:619: warning: 'SWIG_Perl_SetErrorSV' defined but not used > perl.c:624: warning: 'SWIG_Perl_SetErrorf' defined but not used > perl.c:684: warning: '_swig_create_magic' defined but not used > perl.c:768: warning: 'swig_types' defined but not used > perl.c:800: warning: 'swig_magic_readonly' defined but not used > perl.c:1810: warning: 'swig_types_initial' defined but not used > perl.c:1870: warning: '_init' defined but not used > make[3]: *** [perl.lo] Error 1 > make[3]: Leaving directory `/home/prom/MyDownloads/rlib-1.3.6/bindings/perl' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory `/home/prom/MyDownloads/rlib-1.3.6/bindings' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/home/prom/MyDownloads/rlib-1.3.6' > make: *** [all] Error 2 > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Pramathesh A. <pra...@gm...> - 2006-01-20 14:29:31
|
Hi Trying to build rlib 1.3.6 resulted in the following make errors (configure did not throw up any errors but). What is missing? Thanks in advance Pramathesh perl.c:1791: warning: type defaults to `int' in declaration of `arg3' perl.c:1791: error: initializer element is not constant perl.c:1791: warning: data definition has no type or storage class perl.c:1792: warning: type defaults to `int' in declaration of `result' perl.c:1792: error: redefinition of 'result' perl.c:1760: error: previous definition of 'result' was here perl.c:1792: error: redefinition of 'result' perl.c:866: error: previous definition of 'result' was here perl.c:1792: error: initializer element is not constant perl.c:1792: warning: data definition has no type or storage class perl.c:1794: warning: type defaults to `int' in declaration of `ST' perl.c:1794: warning: parameter names (without types) in function declaration perl.c:1794: error: function `ST' is initialized like a variable perl.c:1794: warning: data definition has no type or storage class perl.c:1795: error: syntax error before '(' token perl.c:1795: warning: type defaults to `int' in declaration of `sv_setiv' perl.c:1795: error: syntax error before "IV" perl.c:1796: warning: type defaults to `int' in declaration of `XSRETURN' perl.c:1796: warning: parameter names (without types) in function declaration perl.c:1796: warning: data definition has no type or storage class perl.c:1797: error: syntax error before ':' token perl.c:1800: warning: type defaults to `int' in declaration of `croak' perl.c:1800: warning: parameter names (without types) in function declaration perl.c:1800: warning: data definition has no type or storage class perl.c:1801: error: syntax error before '}' token perl.c:1828: error: syntax error before "swig_commands" perl.c:1828: warning: type defaults to `int' in declaration of `swig_commands' perl.c:1829: warning: braces around scalar initializer perl.c:1829: warning: (near initialization for `swig_commands[0]') perl.c:1829: warning: initialization makes integer from pointer without a cast perl.c:1829: error: `_wrap_rlib_init' undeclared here (not in a function) perl.c:1829: warning: excess elements in scalar initializer perl.c:1829: warning: (near initialization for `swig_commands[0]') perl.c:1830: warning: braces around scalar initializer perl.c:1830: warning: (near initialization for `swig_commands[1]') perl.c:1830: warning: initialization makes integer from pointer without a cast perl.c:1830: error: `_wrap_rlib_add_datasource_mysql' undeclared here (not in a function) perl.c:1830: warning: excess elements in scalar initializer perl.c:1830: warning: (near initialization for `swig_commands[1]') perl.c:1831: warning: braces around scalar initializer perl.c:1831: warning: (near initialization for `swig_commands[2]') perl.c:1831: warning: initialization makes integer from pointer without a cast perl.c:1831: error: `_wrap_rlib_add_datasource_postgres' undeclared here (not in a function) perl.c:1831: warning: excess elements in scalar initializer perl.c:1831: warning: (near initialization for `swig_commands[2]') perl.c:1832: warning: braces around scalar initializer perl.c:1832: warning: (near initialization for `swig_commands[3]') perl.c:1832: warning: initialization makes integer from pointer without a cast perl.c:1832: error: `_wrap_rlib_add_datasource_odbc' undeclared here (not in a function) perl.c:1832: warning: excess elements in scalar initializer perl.c:1832: warning: (near initialization for `swig_commands[3]') perl.c:1833: warning: braces around scalar initializer perl.c:1833: warning: (near initialization for `swig_commands[4]') perl.c:1833: warning: initialization makes integer from pointer without a cast perl.c:1833: error: `_wrap_rlib_add_datasource_xml' undeclared here (not in a function) perl.c:1833: warning: excess elements in scalar initializer perl.c:1833: warning: (near initialization for `swig_commands[4]') perl.c:1834: warning: braces around scalar initializer perl.c:1834: warning: (near initialization for `swig_commands[5]') perl.c:1834: warning: initialization makes integer from pointer without a cast perl.c:1834: error: `_wrap_rlib_add_query_as' undeclared here (not in a function) perl.c:1834: warning: excess elements in scalar initializer perl.c:1834: warning: (near initialization for `swig_commands[5]') perl.c:1835: warning: braces around scalar initializer perl.c:1835: warning: (near initialization for `swig_commands[6]') perl.c:1835: warning: initialization makes integer from pointer without a cast perl.c:1835: error: `_wrap_rlib_add_report' undeclared here (not in a function) perl.c:1835: warning: excess elements in scalar initializer perl.c:1835: warning: (near initialization for `swig_commands[6]') perl.c:1836: warning: braces around scalar initializer perl.c:1836: warning: (near initialization for `swig_commands[7]') perl.c:1836: warning: initialization makes integer from pointer without a cast perl.c:1836: error: `_wrap_rlib_add_report_from_buffer' undeclared here (not in a function) perl.c:1836: warning: excess elements in scalar initializer perl.c:1836: warning: (near initialization for `swig_commands[7]') perl.c:1837: warning: braces around scalar initializer perl.c:1837: warning: (near initialization for `swig_commands[8]') perl.c:1837: warning: initialization makes integer from pointer without a cast perl.c:1837: error: `_wrap_rlib_execute' undeclared here (not in a function) perl.c:1837: warning: excess elements in scalar initializer perl.c:1837: warning: (near initialization for `swig_commands[8]') perl.c:1838: warning: braces around scalar initializer perl.c:1838: warning: (near initialization for `swig_commands[9]') perl.c:1838: warning: initialization makes integer from pointer without a cast perl.c:1838: error: `_wrap_rlib_get_content_type_as_text' undeclared here (not in a function) perl.c:1838: warning: excess elements in scalar initializer perl.c:1838: warning: (near initialization for `swig_commands[9]') perl.c:1839: warning: braces around scalar initializer perl.c:1839: warning: (near initialization for `swig_commands[10]') perl.c:1839: warning: initialization makes integer from pointer without a cast perl.c:1839: error: `_wrap_rlib_spool' undeclared here (not in a function) perl.c:1839: warning: excess elements in scalar initializer perl.c:1839: warning: (near initialization for `swig_commands[10]') perl.c:1840: warning: braces around scalar initializer perl.c:1840: warning: (near initialization for `swig_commands[11]') perl.c:1840: warning: initialization makes integer from pointer without a cast perl.c:1840: error: `_wrap_rlib_set_output_format' undeclared here (not in a function) perl.c:1840: warning: excess elements in scalar initializer perl.c:1840: warning: (near initialization for `swig_commands[11]') perl.c:1841: warning: braces around scalar initializer perl.c:1841: warning: (near initialization for `swig_commands[12]') perl.c:1841: warning: initialization makes integer from pointer without a cast perl.c:1841: error: `_wrap_rlib_add_resultset_follower_n_to_1' undeclared here (not in a function) perl.c:1841: warning: excess elements in scalar initializer perl.c:1841: warning: (near initialization for `swig_commands[12]') perl.c:1842: warning: braces around scalar initializer perl.c:1842: warning: (near initialization for `swig_commands[13]') perl.c:1842: warning: initialization makes integer from pointer without a cast perl.c:1842: error: `_wrap_rlib_add_resultset_follower' undeclared here (not in a function) perl.c:1842: warning: excess elements in scalar initializer perl.c:1842: warning: (near initialization for `swig_commands[13]') perl.c:1843: warning: braces around scalar initializer perl.c:1843: warning: (near initialization for `swig_commands[14]') perl.c:1843: warning: initialization makes integer from pointer without a cast perl.c:1843: error: `_wrap_rlib_set_output_format_from_text' undeclared here (not in a function) perl.c:1843: warning: excess elements in scalar initializer perl.c:1843: warning: (near initialization for `swig_commands[14]') perl.c:1844: warning: braces around scalar initializer perl.c:1844: warning: (near initialization for `swig_commands[15]') perl.c:1844: warning: initialization makes integer from pointer without a cast perl.c:1844: error: `_wrap_rlib_get_output' undeclared here (not in a function) perl.c:1844: warning: excess elements in scalar initializer perl.c:1844: warning: (near initialization for `swig_commands[15]') perl.c:1845: warning: braces around scalar initializer perl.c:1845: warning: (near initialization for `swig_commands[16]') perl.c:1845: warning: initialization makes integer from pointer without a cast perl.c:1845: error: `_wrap_rlib_get_output_length' undeclared here (not in a function) perl.c:1845: warning: excess elements in scalar initializer perl.c:1845: warning: (near initialization for `swig_commands[16]') perl.c:1846: warning: braces around scalar initializer perl.c:1846: warning: (near initialization for `swig_commands[17]') perl.c:1846: warning: initialization makes integer from pointer without a cast perl.c:1846: error: `_wrap_rlib_signal_connect' undeclared here (not in a function) perl.c:1846: warning: excess elements in scalar initializer perl.c:1846: warning: (near initialization for `swig_commands[17]') perl.c:1847: warning: braces around scalar initializer perl.c:1847: warning: (near initialization for `swig_commands[18]') perl.c:1847: warning: initialization makes integer from pointer without a cast perl.c:1847: error: `_wrap_rlib_signal_connect_string' undeclared here (not in a function) perl.c:1847: warning: excess elements in scalar initializer perl.c:1847: warning: (near initialization for `swig_commands[18]') perl.c:1848: warning: braces around scalar initializer perl.c:1848: warning: (near initialization for `swig_commands[19]') perl.c:1848: warning: initialization makes integer from pointer without a cast perl.c:1848: error: `_wrap_rlib_query_refresh' undeclared here (not in a function) perl.c:1848: warning: excess elements in scalar initializer perl.c:1848: warning: (near initialization for `swig_commands[19]') perl.c:1849: warning: braces around scalar initializer perl.c:1849: warning: (near initialization for `swig_commands[20]') perl.c:1849: warning: initialization makes integer from pointer without a cast perl.c:1849: error: `_wrap_rlib_add_parameter' undeclared here (not in a function) perl.c:1849: warning: excess elements in scalar initializer perl.c:1849: warning: (near initialization for `swig_commands[20]') perl.c:1850: warning: braces around scalar initializer perl.c:1850: warning: (near initialization for `swig_commands[21]') perl.c:1850: warning: initialization makes integer from pointer without a cast perl.c:1850: error: `_wrap_rlib_set_locale' undeclared here (not in a function) perl.c:1850: warning: excess elements in scalar initializer perl.c:1850: warning: (near initialization for `swig_commands[21]') perl.c:1851: warning: braces around scalar initializer perl.c:1851: warning: (near initialization for `swig_commands[22]') perl.c:1851: warning: initialization makes integer from pointer without a cast perl.c:1851: error: `_wrap_rlib_set_output_parameter' undeclared here (not in a function) perl.c:1851: warning: excess elements in scalar initializer perl.c:1851: warning: (near initialization for `swig_commands[22]') perl.c:1852: warning: braces around scalar initializer perl.c:1852: warning: (near initialization for `swig_commands[23]') perl.c:1852: warning: initialization makes integer from pointer without a cast perl.c:1852: error: `_wrap_rlib_set_output_encoding' undeclared here (not in a function) perl.c:1852: warning: excess elements in scalar initializer perl.c:1852: warning: (near initialization for `swig_commands[23]') perl.c:1853: warning: braces around scalar initializer perl.c:1853: warning: (near initialization for `swig_commands[24]') perl.c:1853: warning: initialization makes integer from pointer without a cast perl.c:1853: error: `_wrap_rlib_set_datasource_encoding' undeclared here (not in a function) perl.c:1853: warning: excess elements in scalar initializer perl.c:1853: warning: (near initialization for `swig_commands[24]') perl.c:1854: warning: braces around scalar initializer perl.c:1854: warning: (near initialization for `swig_commands[25]') perl.c:1854: warning: initialization makes integer from pointer without a cast perl.c:1854: error: `_wrap_rlib_free' undeclared here (not in a function) perl.c:1854: warning: excess elements in scalar initializer perl.c:1854: warning: (near initialization for `swig_commands[25]') perl.c:1855: warning: braces around scalar initializer perl.c:1855: warning: (near initialization for `swig_commands[26]') perl.c:1855: warning: initialization makes integer from pointer without a cast perl.c:1855: error: `_wrap_rlib_version' undeclared here (not in a function) perl.c:1855: warning: excess elements in scalar initializer perl.c:1855: warning: (near initialization for `swig_commands[26]') perl.c:1856: warning: braces around scalar initializer perl.c:1856: warning: (near initialization for `swig_commands[27]') perl.c:1856: warning: initialization makes integer from pointer without a cast perl.c:1856: error: `_wrap_rlib_graph_add_bg_region' undeclared here (not in a function) perl.c:1856: warning: excess elements in scalar initializer perl.c:1856: warning: (near initialization for `swig_commands[27]') perl.c:1857: warning: braces around scalar initializer perl.c:1857: warning: (near initialization for `swig_commands[28]') perl.c:1857: warning: initialization makes integer from pointer without a cast perl.c:1857: error: `_wrap_rlib_graph_clear_bg_region' undeclared here (not in a function) perl.c:1857: warning: excess elements in scalar initializer perl.c:1857: warning: (near initialization for `swig_commands[28]') perl.c:1858: warning: braces around scalar initializer perl.c:1858: warning: (near initialization for `swig_commands[29]') perl.c:1858: warning: initialization makes integer from pointer without a cast perl.c:1858: error: `_wrap_rlib_graph_set_x_minor_tick' undeclared here (not in a function) perl.c:1858: warning: excess elements in scalar initializer perl.c:1858: warning: (near initialization for `swig_commands[29]') perl.c:1859: warning: braces around scalar initializer perl.c:1859: warning: (near initialization for `swig_commands[30]') perl.c:1859: warning: initialization makes integer from pointer without a cast perl.c:1859: error: `_wrap_rlib_graph_set_x_minor_tick_by_location' undeclared here (not in a function) perl.c:1859: warning: excess elements in scalar initializer perl.c:1859: warning: (near initialization for `swig_commands[30]') perl.c:1860: warning: braces around scalar initializer perl.c:1860: warning: (near initialization for `swig_commands[31]') perl.c:1860: warning: excess elements in scalar initializer perl.c:1860: warning: (near initialization for `swig_commands[31]') perl.c:1861: warning: data definition has no type or storage class perl.c:1867: error: syntax error before '{' token perl.c:1871: error: syntax error before "if" perl.c:1872: warning: type defaults to `int' in declaration of `swig_types_initial' perl.c:1872: error: variable-size type declared outside of any function perl.c:1872: error: conflicting types for 'swig_types_initial' perl.c:1810: error: previous definition of 'swig_types_initial' was here perl.c:1872: warning: data definition has no type or storage class perl.c:1872: error: syntax error before '++' token perl.c:1875: warning: type defaults to `int' in declaration of `_init' perl.c:1875: error: redefinition of '_init' perl.c:1870: error: previous definition of '_init' was here perl.c:1875: warning: data definition has no type or storage class perl.c:1876: error: syntax error before '}' token perl.c:1879: error: syntax error before '.' token perl.c:1884: error: syntax error before '.' token perl.c:1886: warning: type defaults to `int' in declaration of `sv' perl.c:1886: error: initializer element is not constant perl.c:1886: warning: data definition has no type or storage class perl.c:1887: error: syntax error before "if" perl.c:1892: error: syntax error before '(' token perl.c:1892: error: syntax error before '.' token perl.c:1896: error: syntax error before '.' token perl.c:1898: warning: type defaults to `int' in declaration of `sv' perl.c:1898: error: redefinition of 'sv' perl.c:1886: error: previous definition of 'sv' was here perl.c:1898: error: initializer element is not constant perl.c:1898: warning: data definition has no type or storage class perl.c:1899: error: syntax error before "switch" perl.c:1918: warning: type defaults to `int' in declaration of `SvREADONLY_on' perl.c:1918: warning: parameter names (without types) in function declaration perl.c:1918: warning: data definition has no type or storage class perl.c:1919: error: syntax error before '}' token perl.c:1921: error: syntax error before numeric constant perl.c:1921: warning: type defaults to `int' in declaration of `ST' perl.c:1921: error: function `ST' is initialized like a variable perl.c:1921: error: `sv_yes' undeclared here (not in a function) perl.c:1921: warning: data definition has no type or storage class perl.c:1922: error: syntax error before numeric constant perl.c:1922: warning: type defaults to `int' in declaration of `XSRETURN' perl.c:1922: warning: data definition has no type or storage class /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3087: warning: array 'PL_sig_name' assumed to have one element /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3088: warning: array 'PL_sig_num' assumed to have one element /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3166: warning: array 'PL_fold' assumed to have one element /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3205: warning: array 'PL_fold_locale' assumed to have one element /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3281: warning: array 'PL_freq' assumed to have one element /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3711: error: storage size of `PL_vtbl_sv' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3712: error: storage size of `PL_vtbl_env' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3713: error: storage size of `PL_vtbl_envelem' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3714: error: storage size of `PL_vtbl_sig' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3715: error: storage size of `PL_vtbl_sigelem' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3716: error: storage size of `PL_vtbl_pack' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3717: error: storage size of `PL_vtbl_packelem' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3718: error: storage size of `PL_vtbl_dbline' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3719: error: storage size of `PL_vtbl_isa' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3720: error: storage size of `PL_vtbl_isaelem' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3721: error: storage size of `PL_vtbl_arylen' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3722: error: storage size of `PL_vtbl_glob' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3723: error: storage size of `PL_vtbl_mglob' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3724: error: storage size of `PL_vtbl_nkeys' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3725: error: storage size of `PL_vtbl_taint' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3726: error: storage size of `PL_vtbl_substr' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3727: error: storage size of `PL_vtbl_vec' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3728: error: storage size of `PL_vtbl_pos' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3729: error: storage size of `PL_vtbl_bm' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3730: error: storage size of `PL_vtbl_fm' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3731: error: storage size of `PL_vtbl_uvar' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3732: error: storage size of `PL_vtbl_ovrld' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3738: error: storage size of `PL_vtbl_defelem' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3739: error: storage size of `PL_vtbl_regexp' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3740: error: storage size of `PL_vtbl_regdata' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3741: error: storage size of `PL_vtbl_regdatum' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3744: error: storage size of `PL_vtbl_collxfrm' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3747: error: storage size of `PL_vtbl_amagic' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3748: error: storage size of `PL_vtbl_amagicelem' isn'tknown /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3750: error: storage size of `PL_vtbl_backref' isn't known /usr/lib/perl5/5.8.6/i386-linux/CORE/perl.h:3751: error: storage size of `PL_vtbl_utf8' isn't known perl.c:111: warning: 'SWIG_Perl_TypeRegister' defined but not used perl.c:183: warning: 'SWIG_Perl_TypeDynamicCast' defined but not used perl.c:195: warning: 'SWIG_Perl_TypeName' defined but not used perl.c:201: warning: 'SWIG_Perl_TypeQuery' defined but not used perl.c:487: warning: 'SWIG_Perl_ConvertPtr' defined but not used perl.c:577: warning: 'SWIG_Perl_NewPointerObj' defined but not used perl.c:584: warning: 'SWIG_Perl_MakePackedObj' defined but not used perl.c:596: warning: 'SWIG_Perl_ConvertPacked' defined but not used perl.c:614: warning: 'SWIG_Perl_SetError' defined but not used perl.c:619: warning: 'SWIG_Perl_SetErrorSV' defined but not used perl.c:624: warning: 'SWIG_Perl_SetErrorf' defined but not used perl.c:684: warning: '_swig_create_magic' defined but not used perl.c:768: warning: 'swig_types' defined but not used perl.c:800: warning: 'swig_magic_readonly' defined but not used perl.c:1810: warning: 'swig_types_initial' defined but not used perl.c:1870: warning: '_init' defined but not used make[3]: *** [perl.lo] Error 1 make[3]: Leaving directory `/home/prom/MyDownloads/rlib-1.3.6/bindings/perl' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/prom/MyDownloads/rlib-1.3.6/bindings' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/prom/MyDownloads/rlib-1.3.6' make: *** [all] Error 2 |
From: Bob D. <bd...@si...> - 2006-01-13 20:36:23
|
Hi, An undocumented feature is rlogit_setmessagewriter found in libsrc/util.c You can get in the middle of the error handling. If you do find a crash however please let me know so we can fix it. - Bob > It would be fine, if it were one function like rlib_get_lasterror(), > rlib_get_lasterrormessage() and after function execution one can check > if there eror occurred. > > I have seen your code, you are using r_error function, which outputs > message to stderr. C++ std::cerr is not stderr in c (or not always), > that's why I had problems and crashes. I have made some tricks around, > but one loses elegance. > > Sincerely, > Leo Seib > > > |
From: Bob D. <bd...@si...> - 2006-01-10 18:42:04
|
Hi, On Tue, 2006-01-10 at 16:38 +0100, Seib Leo wrote: > is it possible in rlib to use agregate functions (sum, avg,min,max) on > fieldbreaks? > > Or an additional query on break ? > I don't quite understand what you want. Can you provide an example? > > Second. Is it possible in rlib to handle errors without programm > crasches? RLIB 1.3.6-RLIB 1.3.7 is quite stable. If you find a crash let me know. What language/inputs are you using with it? I can provide you instruction on how to get a stack trace. - Bob |
From: Seib L. <LS...@ls...> - 2006-01-10 15:35:13
|
Hi all, =20 is it possible in rlib to use agregate functions (sum, avg,min,max) on fieldbreaks? Or an additional query on break ? I haven't found it in manual.=20 =20 Second. Is it possible in rlib to handle errors without programm crasches?=20 I try to use it in server environment and it ist not good, when server crasches on report error. =20 =20 Sincerely, Leo Seib |
From: Bob D. <bd...@si...> - 2006-01-07 00:31:53
|
Hi, I don't have GIF support done in RPDF yet. JPEG works though. - bob On Fri, 2006-01-06 at 16:40 -0500, r duarte wrote: > I'm trying to display an image in a PDF report using this tag inside > an <Output> block (which is inside the <PageHeader>). > > <Image value="'logo.gif'" type="'gif'" width="130" height="85" /> > > Is this supposed to work or does that tag only work for HTML output? > > Thanks for any help, > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: r d. <ra...@ra...> - 2006-01-06 21:41:10
|
I'm trying to display an image in a PDF report using this tag inside an <Output> block (which is inside the <PageHeader>). <Image value="'logo.gif'" type="'gif'" width="130" height="85" /> Is this supposed to work or does that tag only work for HTML output? Thanks for any help, Rob |
From: r d. <ra...@ra...> - 2006-01-06 15:22:06
|
Wow, I apologize - I didn't realize I had downloaded 1.2.x manual instead of the 1.3.x. I also didn't know about the wiki. Those two have all my answers, including the bit about requiring php-devel. Thanks Bob. Rob On Jan 6, 2006, at 10:06 AM, Bob Doan wrote: > Rob > > Feel free to add stuff to wiki as you discover it > > http://newrlib.sicom.com > > > > On Fri, 2006-01-06 at 09:46 -0500, r duarte wrote: >> Is there a list of r. variables? It's mentioned in the document (it >> says "described below") but I don't see a list anywhere. Something >> like r.format is very handy, for example, and I only know about it >> because of the follower.xml example - I want to know what other >> variables I don't know about. :) >> >> Thanks, >> Rob >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. Do you grep through >> log files >> for problems? Stop! Download the new AJAX search engine that makes >> searching your log files as easy as surfing the web. DOWNLOAD >> SPLUNK! >> http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click >> _______________________________________________ >> Rlib-users mailing list >> Rli...@li... >> https://lists.sourceforge.net/lists/listinfo/rlib-users > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through > log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD > SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2006-01-06 15:06:20
|
Rob Feel free to add stuff to wiki as you discover it http://newrlib.sicom.com On Fri, 2006-01-06 at 09:46 -0500, r duarte wrote: > Is there a list of r. variables? It's mentioned in the document (it > says "described below") but I don't see a list anywhere. Something > like r.format is very handy, for example, and I only know about it > because of the follower.xml example - I want to know what other > variables I don't know about. :) > > Thanks, > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2006-01-06 15:05:43
|
Yea.. Feel free to add it to the wiki http://newrlib.sicom.com - bob On Fri, 2006-01-06 at 08:41 -0500, r duarte wrote: > I just downloaded RLIB - it looks like it will work great for the > project I'm working on. I ran 'configure' on my Fedora Core 4 system > and noticed that PHP support wasn't installed. It's looking for php- > config, which doesn't exist on my system - this is because the php > rpm was installed during the OS installation, but not the php-devel > rpm. It might be worth mentioning this in the docs somewhere. > > Thanks, > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2006-01-06 14:58:40
|
pageno - Current Page totpages - Total Pages value - "rval" of the "value" in a field. This is handy for formatting. lineno - Current Line Number detailcnt - Current Detail Row format - Format On Fri, 2006-01-06 at 09:46 -0500, r duarte wrote: > Is there a list of r. variables? It's mentioned in the document (it > says "described below") but I don't see a list anywhere. Something > like r.format is very handy, for example, and I only know about it > because of the follower.xml example - I want to know what other > variables I don't know about. :) > > Thanks, > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: r d. <ra...@ra...> - 2006-01-06 14:46:47
|
Is there a list of r. variables? It's mentioned in the document (it says "described below") but I don't see a list anywhere. Something like r.format is very handy, for example, and I only know about it because of the follower.xml example - I want to know what other variables I don't know about. :) Thanks, Rob |
From: r d. <ra...@ra...> - 2006-01-06 13:42:19
|
I just downloaded RLIB - it looks like it will work great for the project I'm working on. I ran 'configure' on my Fedora Core 4 system and noticed that PHP support wasn't installed. It's looking for php- config, which doesn't exist on my system - this is because the php rpm was installed during the OS installation, but not the php-devel rpm. It might be worth mentioning this in the docs somewhere. Thanks, Rob |
From: Bob D. <bd...@si...> - 2006-01-03 21:17:31
|
Hi Brian, Can you try this patch and run the script from the CLI and tell me what output you get. - Bob On Tue, 2006-01-03 at 12:14 -0500, Brian Morton wrote: > I am using RLib as a php extension on a linux system. I am connecting to an > mssql datasource via odbc with the freetds odbc driver. All driver and > package versions are latest stable. When I execute this script, my data is > corrupted (funky chars, etc.), but differs each time. This leads me to > believe maybe I am using RLib wrong and it is trying to display some > resultset identifier or something else non-readable. Attached are my php > script and my xml. Am I doing everything right? If so, is there a charset > option I can specify somewhere, or some other option I can adjust to > diagnose this corrupt data problem? Thanks for the help RLibers. |
From: Brian M. <bm...@se...> - 2006-01-03 17:31:57
|
Here are some examples of the corrupt data. Some chars are constant, = others vary. =CC=CAR@=CC=CAR@at <mailto:=CC=CAR@=CC=CAR@at>=20 l=CAR@l=CAR@d' <mailto:l=CAR@l=CAR@d'>=20 l=CAR@l=CAR@ee <mailto:l=CAR@l=CAR@ee>=20 D=CBR@D=CBR@=10=20 _____ =20 From: Brian Morton Sent: Tue 1/3/2006 12:14 PM To: rli...@li... Subject: [Rlib-users] FW: Strange problem with data corruption I am using RLib as a php extension on a linux system. I am connecting = to an mssql datasource via odbc with the freetds odbc driver. All driver and = package versions are latest stable. When I execute this script, my = data is=20 corrupted (funky chars, etc.), but differs each time. This leads me to = believe maybe I am using RLib wrong and it is trying to display some=20 resultset identifier or something else non-readable. Attached are my = php=20 script and my xml. Am I doing everything right? If so, is there a = charset=20 option I can specify somewhere, or some other option I can adjust to=20 diagnose this corrupt data problem? Thanks for the help RLibers.=20 |
From: Brian M. <bm...@se...> - 2006-01-03 17:15:08
|
I am using RLib as a php extension on a linux system. I am connecting to an mssql datasource via odbc with the freetds odbc driver. All driver and package versions are latest stable. When I execute this script, my data is corrupted (funky chars, etc.), but differs each time. This leads me to believe maybe I am using RLib wrong and it is trying to display some resultset identifier or something else non-readable. Attached are my php script and my xml. Am I doing everything right? If so, is there a charset option I can specify somewhere, or some other option I can adjust to diagnose this corrupt data problem? Thanks for the help RLibers. |
From: Bob D. <bd...@si...> - 2006-01-03 13:56:32
|
Hi, Use rlib_get_output and rlib_get_output_length - Bob On Tue, 2006-01-03 at 14:14 +0100, Seib Leo wrote: > Hi all, > > > > Is it possible to redirect report output in rlib from stdout to file?. > If it is, how? > > > > Thank you in advance, > > Leo Seib > > |
From: Seib L. <LS...@ls...> - 2006-01-03 13:11:08
|
Hi all, =20 Is it possible to redirect report output in rlib from stdout to file?. If it is, how? =20 Thank you in advance, Leo Seib |
From: Bob D. <bd...@si...> - 2006-01-01 21:05:21
|
Hi, What error are you getting? - Bob On Thu, 2005-12-29 at 18:41 +0100, Cristian Greggio wrote: > I can't compile the rlib-1.3.6 backend for python in the ubuntu 5.10 > > I have pyhton and python-dev but the librery for python don't compile > > This is a report abaut the comand ./configure > > Best regards > -- Bob Doan <bd...@si...> |