# New Ticket Created by "Venables, Robin" # Please include the string: [perl #18987] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=18987 >
Hi Trying to make IMCC gives the following error on AIX 4.3.3 with IBM's C compiler 5.0.2: cc -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE -qmaxmem=16384 -qnoansialias -DUSE_NATIVE_DLOPEN -I/usr/local/include -q32 -D_LARGE_FILES -qlonglong -g -I../../include -o symreg.o -c symreg.c "symreg.c", line 348.23: 1506-068 (S) Operation between types "void" and "void" is not allowed. make: *** [symreg.o] Error 1 This patch fixes the problem: --- symreg.c.orig Mon Dec 9 12:42:22 2002 +++ symreg.c Mon Dec 9 12:42:44 2002 @@ -345,7 +345,8 @@ } static void delete_sym(const char * name) { - return _delete_sym(hash, name); + _delete_sym(hash, name); + return; } /* Deletes all symbols */ <<symreg.patch>> Robin Robin Venables Senior Systems Administrator Midrange Services Aquila Networks Services "You must always strive to be the best, but you must never believe that you are" Juan-Manuel Fangio Internet communications are not secure and therefore Aquila Networks does not accept legal responsibility for the contents of this message. Any views or opinions presented are solely those of the author and do not necessarily represent those of Aquila Networks unless otherwise specifically stated. **************************************************************************************************** Confidentiality: This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error, use of this information (including disclosure, copying or distribution) may be unlawful. Please notify [EMAIL PROTECTED] and delete the message immediately. Security: Internet e-mail is not a 100% secure communications medium. Viruses: This e-mail (and any attachments) has been checked (using Sophos Sweep 3.63 + patches) and found to be clean from any virus infection before leaving. Therefore neither Aquila Networks Services Ltd nor Midlands Electricity plc or any of their group undertakings (as defined by the Companies Act 1989) (together referred to as the "Companies") accept legal responsibility for this message or liability for the consequences of any computer viruses which may have been transmitted by this e-mail. Monitoring: All electronic communications with the Companies may be monitored in accordance with the UK Regulation of Investigatory Powers Act, Lawful Business Practice Regulations, 2000. If you do not consent to such monitoring, you should contact the sender of this e-mail. Aquila Networks Services Limited, Registered office: Whittington Hall, Whittington, Worcester, WR5 2RB Registered in England and Wales number 3600545 This e-mail may be sent on behalf of any of the Companies. **************************************************************************************************** -- attachment 1 ------------------------------------------------------ url: http://rt.perl.org/rt2/attach/44598/35231/fafc42/symreg.patch
symreg.patch
Description: symreg.patch