On Wednesday 22 Jan 2003 9:39 pm, Robert A Threet wrote: > I've tried .54, .53, .52 all fail top compile on my AIX 4.3.3. Am I > missing a prereq?
What values do you have for CFLAGS? I always use -qinlglue -O3 -qcheck -qextchk -qinfo -qro -qroconst -qstrict -qmaxmem=16384 -qinfo -qlanglvl=ansi when compiling, assuming you're using IBM's compiler rather than GCC. You could also changing the calls for strcasecmp() to stricmp() (NB notice the i in stricmp()). To do this I'd set do this: make clean CFLAGS="-Dstrcasecmp=stricmp -qinlglue -O3 -qcheck -qextchk -qinfo -qro -qroconst -qstrict -qmaxmem=16384 -qinfo -qlanglvl=ansi" ./configure -Nigel -- Nigel Horne. Arranger, Composer, Conductor, Typesetter. NJH Music, Barnsley, UK. ICQ#20252325 [EMAIL PROTECTED] http://www.bandsman.co.uk --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
