<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.30.3">
</HEAD>
<BODY>
Hi,<BR>
<BR>
Thanks for reporting. We'll consider this for review. Cheers!<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
    GCC I'm using:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Using built-in specs.
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Target: x86_64-redhat-linux
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=<A HREF="http://bugzilla.redhat.com/bugzilla">http://bugzilla.redhat.com/bugzilla</A> --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Thread model: posix
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    gcc version 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC) 
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    It seems this block in configure script can cause problem:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    compiler_options=""
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    STRICT_PROTOTYPES=""
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    if test "$compiler" = "gcc" ; then
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
       compiler_options="-Wstrict-prototypes -Wall -Werror -g -ansi"<BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
       echo "Detected gcc compiler: $compiler, adding options: $compiler_options"<BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    fi
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Since -ansi used, I got that error:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex.c: In function ‘_vortex_log_common’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex.c:734: error: expected expression before ‘/’ token
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    After removing -ansi, some warnings blocked compiling since -Werror used:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    cc1: warnings being treated as errors
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex_listener.c: In function ‘vortex_listener_parse_conf_and_start’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex_listener.c:1484: error: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex_listener.c:1488: error: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    To finish its compiling, I have to remove -Werror, and got these warnings:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex_listener.c: In function ‘vortex_listener_parse_conf_and_start’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex_listener.c:1484: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    vortex_listener.c:1488: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-support.c: In function ‘xml_rpc_support_get_function_type_prefix’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-support.c:904: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_support_write_function_type_prefix’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:73: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_support_write_function_parameters’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:117: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:138: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_support_write_function_parameters_names’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:177: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_support_write_method_create_values’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:224: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:230: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_service_sync’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:316: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:320: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘__xml_rpc_c_stub_type_is_common’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:399: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_service’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:473: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:477: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_struct_checkings’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:572: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:589: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_struct_def’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:651: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:688: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:692: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:731: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:735: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:807: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:811: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:884: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:888: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:941: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:945: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:974: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:978: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1019: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1023: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1064: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1068: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_array_def’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1196: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1207: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_type_header’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1853: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1863: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1885: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:1899: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c: In function ‘xml_rpc_c_stub_write_service_body’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:2122: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:2126: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-stub.c:2173: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-autoconf.c: In function ‘xml_rpc_autoconf_write_struct_and_arrays’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-autoconf.c:206: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-autoconf.c:228: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-autoconf.c: In function ‘xml_rpc_autoconf_makefile_am_create’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-autoconf.c:330: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c: In function ‘xml_rpc_write_c_server_include_services’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:75: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c: In function ‘__xml_rpc_c_server_service_dispach’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:130: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:144: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:155: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c: In function ‘xml_rpc_c_server_write_temporal_parameter_getting’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:583: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:589: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:638: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:644: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c: In function ‘xml_rpc_c_server_write_temporal_parameter_releasing’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:712: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:718: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c: In function ‘xml_rpc_c_server_write_parameter_getting’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:802: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:808: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c: In function ‘xml_rpc_c_server_create_write_service’:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:870: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    xml-rpc-c-server.c:880: warning: assignment discards qualifiers from pointer target type
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Configuration command I've used:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    ./configure --prefix=`pwd`/build AXL_CFLAGS=-I`pwd`/../axl-0.6.8.b5097.g5163/build/include/axl AXL_LIBS="-laxl -L`pwd`/../axl-0.6.8.b5097.g5163/build/lib" --disable-sasl-support --disable-py-vortex --disable-lua-vortex --disable-vortex-doc<BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Though --disable-sasl-support used, I've still got that error message:
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    make[3]: Entering directory `/home/Cyberman/tmp/vortex-1.1.12.b5014.g5015/sasl'
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    echo "EXPORTS" > libvortex-sasl-1.1.def
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    cat .libs/libvortex-sasl-1.1.exp | grep -v io_waiting_poll | grep -v io_waiting_epoll | grep -v __vortex >> libvortex-sasl-1.1.def
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    cat: .libs/libvortex-sasl-1.1.exp: No such file or directory
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    make[3]: *** [update-def] Error 1
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    make[3]: Leaving directory `/home/Cyberman/tmp/vortex-1.1.12.b5014.g5015/sasl'
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    But the libraries generated.
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    -- <BR>
    Cyberman Wu<BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
<PRE>
_______________________________________________
Vortex mailing list
<A HREF="mailto:Vortex@lists.aspl.es">Vortex@lists.aspl.es</A>
<A HREF="http://lists.aspl.es/cgi-bin/mailman/listinfo/vortex">http://lists.aspl.es/cgi-bin/mailman/listinfo/vortex</A>
</PRE>
</BLOCKQUOTE>
<BR>
<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
<TR>
<TD>
<PRE>
-- 
Francis Brosnan Blázquez <<A HREF="mailto:francis.brosnan@aspl.es">francis.brosnan@aspl.es</A>>
ASPL
91 134 14 22 - 91 134 14 45 - 91 116 07 57

AVISO LEGAL

Este mensaje se dirige exclusivamente a su destinatario. Los datos
incluidos en el presente correo son confidenciales y sometidos a secreto
profesional, se prohíbe divulgarlos, en virtud de las leyes vigentes. Si
usted no lo es y lo ha recibido por error o tiene conocimiento del mismo
por cualquier motivo, le rogamos que nos lo comunique por este medio y
proceda a destruirlo o borrarlo.

En virtud de lo dispuesto en la Ley Orgánica 15/1999, de 13 de
diciembre, de Protección de Datos de Carácter Personal, le informamos de
que sus datos de carácter personal, recogidos de fuentes accesibles al
público o datos que usted nos ha facilitado previamente, proceden de
bases de datos propiedad de Advanced Software Production Line, S.L.
(ASPL). No obstante, usted puede ejercitar sus derechos de acceso,
rectificación, cancelación y oposición dispuestos en la mencionada Ley
Orgánica, notificándolo por escrito a:
ASPL - Protección Datos, C/Antonio Suárez 10 A-102, 28802, Alcalá de
Henares (Madrid).
</PRE>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>