-
Here it the linux.m4 file required by the configure, make, ...etc. Don't remember where I got it.
Part of Gentoo ebuild...
http://bugs.gentoo.org/show_bug.cgi?id=61319.
2008-03-16 21:08:31 UTC by timcera
-
Can't really say any more than the summary line. This was so loooong ago. Just trying to document changes.
This is the patch file for the Gentoo ebuild I created at
http://bugs.gentoo.org/show_bug.cgi?id=61319.
2008-03-16 21:05:45 UTC by timcera
-
To solve the problemas en xcolours.c do the following:
In XcMap_enter(map, index, pixel) function
// assert(pixel < map->length);
assert(index >= 0 && index < map->length);
// map->GKSindexes[pixel] = index;
map->GKSindexes[index] = index;
In XcInit(ws) function
XcMap_enter(
// ws->XcMap,
GKS_BACKGROUND_INDEX, BlackPixel(dpy, screenNum));
&(ws->XcMap)...
2005-10-29 22:46:35 UTC by nobody
-
opoplawski committed patchset 47 of module xgks to the XGKS CVS repository, changing 1 files.
2004-09-08 18:09:33 UTC by opoplawski
-
I followed the hints above (changing source code of gerhnd.fc, adding linux.m4) and got to the same point where the compilation stops while trying to compile star.f. Followed the last hint and excluded star and gksdemo from compiling, which otherwise result in:
undefined reference to 'set_fname_'
originating from:
lib/fortran/inqlun.f
The problem is, when compiling my application I get the...
2004-01-19 09:53:44 UTC by sasag
-
I made XGKS RPM package for Fedora Core 1. All demo program in the package should be compiled successfully and works fine.
http://homepage3.nifty.com/indirect/xgks.html
Hope this helps.
2004-01-17 06:01:09 UTC by itotad
-
Following my tentative to use xgks (see previous
bug report) I have found a second bug in it .
The source file concerned is lib/c/x/xcolour.c
on lines 523 and 525 there are calls to XcMap_enter
with ws->XcMap as first argument . This is wrong
because this routine needs a pointer to a map
as can be seen line 227 .
So I suggest to put &ws->XcMap in the calls (line
523 &...
2003-01-20 12:02:25 UTC by nobody
-
I have just downloaded xgks-2.6.tar.Z
I first try to install it on a redhat linux PC, but
a linux.m4 file is missing in the distribution.
So I try to install it on an IBM RS6000 (AIX 4.2).
I encountered problems with doing the libxgks.a file
because the makefile created by configure does not
seems to run correctly.
Finaly I succeed to create the library by running
each makefile by...
2003-01-17 12:10:54 UTC by nobody
-
Logged In: YES
user_id=68072
xgks compiles now on my system, but all examples I tried make xgks crash in xcolours.c on line 232.
map seems to point to 0x100 which is no valid address, so
map->length leads to a segfault.
2002-06-06 23:01:11 UTC by sheimers
-
System: Debian GNU/Linux woody
Compiler: gcc version 2.95.4
GNU C Library stable release version 2.2.5
in choice.c, event.c, locator.c,string.c, stroke.c,umalloc.c,valuator.c I get this error:
c89 -c -g -I../../port/misc -DFONTDBDIR='"/usr/local/xgks/lib/xgksfonts"' -I/usr/include choice.c
In file included from ../../port/misc/stddef.h:9,
from...
2002-06-06 19:08:44 UTC by sheimers