I saw the same problem building 11.7 on my amd64 debian box.
The problem is the in the sys.h, where around line 373 the include of zlib.h
is
surrounded by an undef of VMS, then a re-define.  This is because tests
of the type #ifdef VMS are present in the zlib includes.  However, well
before
this at line 293, there is an include of png.h, which in turn includes
zlib.h, but
without the undef'ing, which means in zlibdefs.h there is an unhappy attempt
to include unixio.h.  This seems to be the only place where the VMS stuff
causes
an issue; I shamelessly put a #undef VMS directly into zlibdefs.h rather
than figure
it out at the time, but you could put the protective undef/define wrapper
around the
include of png.h if you wanted to be more correct.  I hope this helps, late
though
it is.


On Mon, Apr 19, 2010 at 7:03 PM, Andrew Clarke <[email protected]>wrote:

>
> Firstly, I slightly mis-represented my version - 11.1beta not 11.0beta
>
> > In fact, see bug ID: 883864 on the bug tracker.
> >
> I wish I could find it easily. SourceForge has gone backwards IMHO
> regarding
> usability and being able to find things. I used to have far more success
> drilling down into projects.
>
> Ahh found it. It's not the same bug, but it's damn close. Given that other
> people are reporting successful execution of my test-code, I'll assume at
> this
> stage that it's fixed.
>
> My next problem is making an 11.6 build for SuSE 11.1. The config/unix
> directory contains an intel_suse directory, but it has no Makedefs
>
> I recall having to make one for 11.1b; I have one in a directory called
> intel_suse10 which was the version back then. Copying that into 11.6
> doesn't
> immediately work. I see the macro's have changed syntax, so I've blindly
> mimicked what I see in intel_linux.
>
> make Configure name=intel_suse
>
> now appears to generate a config, but the build almost immediately barfs:
>
> $ make Unicon   # or make All
> cd src/common;          make
> make[1]: Entering directory `/opt/unicon-11.6/src/common'
> gcc -I../libtp -I../gdbm -I../xpm  -I/usr/X11R6/include -c -o doincl.o
> doincl.c
> In file included from /usr/include/zlib.h:34,
>                 from /usr/include/png.h:450,
>                 from ../h/../h/sys.h:293,
>                 from ../h/rt.h:10,
>                 from doincl.c:14:
> /usr/include/zconf.h:291:42: error: unixio.h: No such file or directory
> make[1]: *** [doincl.o] Error 1
> make[1]: Leaving directory `/opt/unicon-11.6/src/common'
> make: *** [Common] Error 2
>
> what do I fix next?
>
>
>
>
>
> ------------------------------------------------------------------------------
> Download Intel&#174; Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> _______________________________________________
> Unicon-group mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/unicon-group
>
------------------------------------------------------------------------------
_______________________________________________
Unicon-group mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to