discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gslib patch second version


From: Adam Fedor
Subject: Re: gslib patch second version
Date: Mon, 08 Apr 2002 11:02:17 -0600
User-agent: Mozilla/5.0 (X11; U; Linux ppc; en-US; rv:0.9.7) Gecko/20020120

BALATON Zoltan wrote:

Hello,
* Now link with GNU Ghostscript 6.53
 - Needs the following patch:
   http://goliat.eik.bme.hu/~balaton/gnustep/ghostscript-6.53-errhandler.patch
 - Use the following makefile:
   http://goliat.eik.bme.hu/~balaton/gnustep/makefile



I couldn't get gslib to compile with this. Errors attached.

There are several remaining problems to solve. The main one is that for
some reason drawing does not always appear in windows and when it does it
is not at the right place but in the right window now at least. I suspect


Well I think your contextDevice: is wrong.

First it should not set window->ident as the drawable. The drawable is actually passed in DPSsetgcdrawable, or if you don't want to use that, you could set the drawable in contextDevice: to window->buffer (if it's non-zero, window->ident otherwise).

Now, probably ghostscript is writting into the main window, while the AppKit is trying to refresh from the drawable.


Also, I know this may not be possible at this point, but I don't think a new device should be created every time that contextDevice: is called. I'm not sure how ghostscript handles that - it could have problems. The AppKit should handle perfectly using the same context for many windows.


Perhaps stuff is not appearing in the right place because the CTM matrix needs to be inverted for X drawing (or does the X driver already take care of that?).


--
Adam Fedor, Digital Optics Corp.      | I'm glad I hate spinach, because
http://www.doc.com                    | if I didn't, I'd eat it, and you
                                      | know how I hate the stuff.
./obj/echogs -w ./obj/ldt.tr -n - gcc  -fno-common -o ./obj/gslib
./obj/echogs -a ./obj/ldt.tr -n -s ./obj/gslib.o -s
./obj/echogs -a ./obj/ldt.tr -n -s ./obj/gsnogc.o ./obj/gconfig.o 
./obj/gscdefs.o -s
cat ./obj/ld.tr >>./obj/ldt.tr
./obj/echogs -a ./obj/ldt.tr -s -  -lm
if [ x != x ]; then LD_RUN_PATH=; export LD_RUN_PATH; fi; \
/bin/sh <./obj/ldt.tr
./obj/gslib.o: In function `main':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:109: undefined reference 
to `gp_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:109: relocation truncated 
to fit: R_PPC_REL24 gp_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:111: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:111: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:111: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:114: undefined reference 
to `gs_lib_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:114: relocation truncated 
to fit: R_PPC_REL24 gs_lib_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:118: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:118: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:118: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:118: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:118: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:118: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:121: undefined reference 
to `gs_debug'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:121: undefined reference 
to `gs_debug'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:125: undefined reference 
to `gs_memory_t_default'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:125: undefined reference 
to `gs_memory_t_default'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:125: undefined reference 
to `ialloc_alloc_state'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:125: relocation truncated 
to fit: R_PPC_REL24 ialloc_alloc_state
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:131: undefined reference 
to `gs_iodev_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:131: relocation truncated 
to fit: R_PPC_REL24 gs_iodev_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:134: undefined reference 
to `gs_copydevice'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:134: relocation truncated 
to fit: R_PPC_REL24 gs_copydevice
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:135: undefined reference 
to `gx_device_fill_in_procs'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:135: relocation truncated 
to fit: R_PPC_REL24 gx_device_fill_in_procs
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:136: undefined reference 
to `st_device_bbox'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:136: undefined reference 
to `st_device_bbox'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:139: undefined reference 
to `gx_device_bbox_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:139: relocation truncated 
to fit: R_PPC_REL24 gx_device_bbox_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:145: undefined reference 
to `gs_c_param_list_write'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:145: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_write
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:146: undefined reference 
to `gs_get_device_or_hw_params'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:146: relocation truncated 
to fit: R_PPC_REL24 gs_get_device_or_hw_params
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:148: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:148: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:148: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:148: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:148: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:148: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:151: undefined reference 
to `gs_c_param_list_read'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:151: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_read
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:152: undefined reference 
to `param_read_string'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:152: relocation truncated 
to fit: R_PPC_REL24 param_read_string
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:154: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:154: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:154: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:154: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:154: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:154: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:157: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:157: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:158: undefined reference 
to `debug_print_string'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:158: relocation truncated 
to fit: R_PPC_REL24 debug_print_string
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:160: undefined reference 
to `gs_c_param_list_release'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:160: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_release
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:170: undefined reference 
to `gs_c_param_list_write'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:170: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_write
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:172: undefined reference 
to `param_write_string'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:172: relocation truncated 
to fit: R_PPC_REL24 param_write_string
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:174: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:174: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:174: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:174: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:177: undefined reference 
to `gs_c_param_list_read'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:177: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_read
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:178: undefined reference 
to `gs_putdeviceparams'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:178: relocation truncated 
to fit: R_PPC_REL24 gs_putdeviceparams
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:179: undefined reference 
to `gs_c_param_list_release'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:179: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_release
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:181: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:181: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:181: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:181: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:181: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:181: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:186: undefined reference 
to `gs_state_alloc'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:186: relocation truncated 
to fit: R_PPC_REL24 gs_state_alloc
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:187: undefined reference 
to `gs_setdevice_no_erase'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:187: relocation truncated 
to fit: R_PPC_REL24 gs_setdevice_no_erase
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:192: undefined reference 
to `gs_dtransform'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:192: relocation truncated 
to fit: R_PPC_REL24 gs_dtransform
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:193: undefined reference 
to `fabs'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:193: relocation truncated 
to fit: R_PPC_REL24 fabs
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:193: undefined reference 
to `fabs'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:193: relocation truncated 
to fit: R_PPC_REL24 fabs
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:193: undefined reference 
to `fabs'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:193: relocation truncated 
to fit: R_PPC_REL24 fabs
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:196: undefined reference 
to `gs_setscreen'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:196: relocation truncated 
to fit: R_PPC_REL24 gs_setscreen
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:201: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:201: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:202: undefined reference 
to `gs_erasepage'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:202: relocation truncated 
to fit: R_PPC_REL24 gs_erasepage
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:205: undefined reference 
to `gs_output_page'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:205: relocation truncated 
to fit: R_PPC_REL24 gs_output_page
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:209: undefined reference 
to `gx_device_bbox_bbox'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:209: relocation truncated 
to fit: R_PPC_REL24 gx_device_bbox_bbox
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:210: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:210: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:215: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:215: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:216: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:217: undefined reference 
to `gs_lib_finit'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:217: relocation truncated 
to fit: R_PPC_REL24 gs_lib_finit
./obj/gslib.o: In function `fill_rect1':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:258: undefined reference 
to `gs_rectfill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:258: relocation truncated 
to fit: R_PPC_REL24 gs_rectfill
./obj/gslib.o: In function `gs_exit':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:286: undefined reference 
to `gs_lib_finit'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:286: relocation truncated 
to fit: R_PPC_REL24 gs_lib_finit
./obj/gslib.o: In function `gs_copysign':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:296: undefined reference 
to `fabs'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:296: relocation truncated 
to fit: R_PPC_REL24 fabs
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:296: undefined reference 
to `fabs'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:296: relocation truncated 
to fit: R_PPC_REL24 fabs
./obj/gslib.o: In function `test1':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:327: undefined reference 
to `gs_scale'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:327: relocation truncated 
to fit: R_PPC_REL24 gs_scale
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:328: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:328: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:329: undefined reference 
to `gs_scale'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:329: relocation truncated 
to fit: R_PPC_REL24 gs_scale
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:330: undefined reference 
to `gs_newpath'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:330: relocation truncated 
to fit: R_PPC_REL24 gs_newpath
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:338: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:338: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:340: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:340: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:341: undefined reference 
to `gs_rotate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:341: relocation truncated 
to fit: R_PPC_REL24 gs_rotate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:342: undefined reference 
to `gs_moveto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:342: relocation truncated 
to fit: R_PPC_REL24 gs_moveto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:343: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:343: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:344: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:344: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:345: undefined reference 
to `gs_fill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:345: relocation truncated 
to fit: R_PPC_REL24 gs_fill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:346: undefined reference 
to `gs_grestore'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:346: relocation truncated 
to fit: R_PPC_REL24 gs_grestore
./obj/gslib.o: In function `test2':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:375: undefined reference 
to `gs_newpath'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:375: relocation truncated 
to fit: R_PPC_REL24 gs_newpath
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:376: undefined reference 
to `gs_moveto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:376: relocation truncated 
to fit: R_PPC_REL24 gs_moveto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:377: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:377: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:378: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:378: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:379: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:379: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:380: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:380: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:381: undefined reference 
to `gs_closepath'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:381: relocation truncated 
to fit: R_PPC_REL24 gs_closepath
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:382: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:382: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:383: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:383: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:384: undefined reference 
to `gs_fill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:384: relocation truncated 
to fit: R_PPC_REL24 gs_fill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:385: undefined reference 
to `gs_grestore'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:385: relocation truncated 
to fit: R_PPC_REL24 gs_grestore
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:391: undefined reference 
to `gs_makebitmappattern_xform'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:391: relocation truncated 
to fit: R_PPC_REL24 gs_makebitmappattern_xform
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:396: undefined reference 
to `gs_setpattern'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:396: relocation truncated 
to fit: R_PPC_REL24 gs_setpattern
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:397: undefined reference 
to `gs_eofill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:397: relocation truncated 
to fit: R_PPC_REL24 gs_eofill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:398: undefined reference 
to `gs_makebitmappattern_xform'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:398: relocation truncated 
to fit: R_PPC_REL24 gs_makebitmappattern_xform
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:399: undefined reference 
to `gs_setcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:399: relocation truncated 
to fit: R_PPC_REL24 gs_setcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:400: undefined reference 
to `gs_moveto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:400: relocation truncated 
to fit: R_PPC_REL24 gs_moveto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:401: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:401: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:402: undefined reference 
to `gs_lineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:402: relocation truncated 
to fit: R_PPC_REL24 gs_lineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:403: undefined reference 
to `gs_closepath'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:403: relocation truncated 
to fit: R_PPC_REL24 gs_closepath
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:404: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:404: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:405: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:405: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:406: undefined reference 
to `gs_fill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:406: relocation truncated 
to fit: R_PPC_REL24 gs_fill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:407: undefined reference 
to `gs_grestore'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:407: relocation truncated 
to fit: R_PPC_REL24 gs_grestore
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:408: undefined reference 
to `gs_setpattern'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:408: relocation truncated 
to fit: R_PPC_REL24 gs_setpattern
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:409: undefined reference 
to `gs_eofill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:409: relocation truncated 
to fit: R_PPC_REL24 gs_eofill
./obj/gslib.o: In function `test3':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:420: undefined reference 
to `gs_currentdevice'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:420: relocation truncated 
to fit: R_PPC_REL24 gs_currentdevice
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:421: undefined reference 
to `gx_device_black'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:421: relocation truncated 
to fit: R_PPC_REL24 gx_device_black
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:422: undefined reference 
to `gx_device_white'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:422: relocation truncated 
to fit: R_PPC_REL24 gx_device_white
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:441: undefined reference 
to `gs_next_ids'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:441: relocation truncated 
to fit: R_PPC_REL24 gs_next_ids
./obj/gslib.o: In function `test4':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:466: undefined reference 
to `gs_currentdevice'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:466: relocation truncated 
to fit: R_PPC_REL24 gs_currentdevice
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:468: undefined reference 
to `gs_c_param_list_write'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:468: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_write
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:473: undefined reference 
to `param_write_float_array'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:473: relocation truncated 
to fit: R_PPC_REL24 param_write_float_array
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:476: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:476: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:476: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:476: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:476: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:476: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:479: undefined reference 
to `gs_c_param_list_read'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:479: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_read
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:480: undefined reference 
to `gs_putdeviceparams'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:480: relocation truncated 
to fit: R_PPC_REL24 gs_putdeviceparams
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:481: undefined reference 
to `gs_c_param_list_release'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:481: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_release
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:483: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:483: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:483: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:483: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:483: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:483: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:486: undefined reference 
to `gs_initmatrix'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:486: relocation truncated 
to fit: R_PPC_REL24 gs_initmatrix
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:487: undefined reference 
to `gs_initclip'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:487: relocation truncated 
to fit: R_PPC_REL24 gs_initclip
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:491: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:491: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:491: undefined reference 
to `eprintf_program_ident'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:491: relocation truncated 
to fit: R_PPC_REL24 eprintf_program_ident
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:491: undefined reference 
to `lprintf_file_and_line'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:491: relocation truncated 
to fit: R_PPC_REL24 lprintf_file_and_line
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:495: undefined reference 
to `gs_moveto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:495: relocation truncated 
to fit: R_PPC_REL24 gs_moveto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:496: undefined reference 
to `gs_rlineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:496: relocation truncated 
to fit: R_PPC_REL24 gs_rlineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:497: undefined reference 
to `gs_rlineto'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:497: relocation truncated 
to fit: R_PPC_REL24 gs_rlineto
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:498: undefined reference 
to `gs_closepath'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:498: relocation truncated 
to fit: R_PPC_REL24 gs_closepath
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:499: undefined reference 
to `gs_stroke'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:499: relocation truncated 
to fit: R_PPC_REL24 gs_stroke
./obj/gslib.o: In function `test5':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:509: undefined reference 
to `gs_currentdevice'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:509: relocation truncated 
to fit: R_PPC_REL24 gs_currentdevice
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:526: undefined reference 
to `gx_dc_type_data_pure'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:526: undefined reference 
to `gx_dc_type_data_pure'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:532: undefined reference 
to `gs_currentmatrix'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:532: relocation truncated 
to fit: R_PPC_REL24 gs_currentmatrix
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:535: undefined reference 
to `floor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:535: relocation truncated 
to fit: R_PPC_REL24 floor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:536: undefined reference 
to `floor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:536: relocation truncated 
to fit: R_PPC_REL24 floor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:537: undefined reference 
to `gs_setmatrix'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:537: relocation truncated 
to fit: R_PPC_REL24 gs_setmatrix
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:539: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:539: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:541: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:541: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:568: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:568: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:573: undefined reference 
to `gs_cspace_DeviceGray'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:573: relocation truncated 
to fit: R_PPC_REL24 gs_cspace_DeviceGray
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:573: undefined reference 
to `gs_image_t_init_adjust'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:573: relocation truncated 
to fit: R_PPC_REL24 gs_image_t_init_adjust
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:583: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:583: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:593: undefined reference 
to `gx_image_data'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:593: relocation truncated 
to fit: R_PPC_REL24 gx_image_data
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:596: undefined reference 
to `gx_image_end'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:596: relocation truncated 
to fit: R_PPC_REL24 gx_image_end
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:599: undefined reference 
to `gs_grestore'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:599: relocation truncated 
to fit: R_PPC_REL24 gs_grestore
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:602: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:602: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:624: undefined reference 
to `gs_current_DeviceGray_space'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:624: relocation truncated 
to fit: R_PPC_REL24 gs_current_DeviceGray_space
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:624: undefined reference 
to `gs_image3_t_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:624: relocation truncated 
to fit: R_PPC_REL24 gs_image3_t_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:640: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:640: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:652: undefined reference 
to `gx_image_plane_data'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:652: relocation truncated 
to fit: R_PPC_REL24 gx_image_plane_data
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:654: undefined reference 
to `gx_image_end'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:654: relocation truncated 
to fit: R_PPC_REL24 gx_image_end
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:663: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:663: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:675: undefined reference 
to `gx_image_plane_data'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:675: relocation truncated 
to fit: R_PPC_REL24 gx_image_plane_data
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:679: undefined reference 
to `gx_image_plane_data'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:679: relocation truncated 
to fit: R_PPC_REL24 gx_image_plane_data
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:685: undefined reference 
to `gx_image_end'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:685: relocation truncated 
to fit: R_PPC_REL24 gx_image_end
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:688: undefined reference 
to `gs_grestore'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:688: relocation truncated 
to fit: R_PPC_REL24 gs_grestore
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:691: undefined reference 
to `gs_gsave'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:691: relocation truncated 
to fit: R_PPC_REL24 gs_gsave
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:696: undefined reference 
to `gs_current_DeviceGray_space'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:696: relocation truncated 
to fit: R_PPC_REL24 gs_current_DeviceGray_space
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:696: undefined reference 
to `gs_image4_t_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:696: relocation truncated 
to fit: R_PPC_REL24 gs_image4_t_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:707: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:707: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:710: undefined reference 
to `gx_image_plane_data'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:710: relocation truncated 
to fit: R_PPC_REL24 gx_image_plane_data
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:710: undefined reference 
to `gx_image_end'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:710: relocation truncated 
to fit: R_PPC_REL24 gx_image_end
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:713: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:713: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:717: undefined reference 
to `gx_image_plane_data'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:717: relocation truncated 
to fit: R_PPC_REL24 gx_image_plane_data
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:717: undefined reference 
to `gx_image_end'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:717: relocation truncated 
to fit: R_PPC_REL24 gx_image_end
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:719: undefined reference 
to `gs_grestore'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:719: relocation truncated 
to fit: R_PPC_REL24 gs_grestore
./obj/gslib.o: In function `spectrum':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:747: undefined reference 
to `gs_setcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:747: relocation truncated 
to fit: R_PPC_REL24 gs_setcolor
./obj/gslib.o: In function `set_cmap_method':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:765: undefined reference 
to `gs_c_param_list_write'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:765: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_write
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:766: undefined reference 
to `param_write_int'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:766: relocation truncated 
to fit: R_PPC_REL24 param_write_int
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:767: undefined reference 
to `gs_c_param_list_read'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:767: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_read
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:768: undefined reference 
to `gs_putdeviceparams'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:768: relocation truncated 
to fit: R_PPC_REL24 gs_putdeviceparams
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:769: undefined reference 
to `gs_c_param_list_release'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:769: relocation truncated 
to fit: R_PPC_REL24 gs_c_param_list_release
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:770: undefined reference 
to `gs_setdevice_no_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:770: relocation truncated 
to fit: R_PPC_REL24 gs_setdevice_no_init
./obj/gslib.o: In function `test6':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:788: undefined reference 
to `gs_scale'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:788: relocation truncated 
to fit: R_PPC_REL24 gs_scale
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:789: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:789: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:790: undefined reference 
to `gs_current_DeviceRGB_space'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:790: relocation truncated 
to fit: R_PPC_REL24 gs_current_DeviceRGB_space
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:790: undefined reference 
to `gs_setcolorspace'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:790: relocation truncated 
to fit: R_PPC_REL24 gs_setcolorspace
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:792: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:792: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:794: undefined reference 
to `gs_cie_render1_build'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:794: relocation truncated 
to fit: R_PPC_REL24 gs_cie_render1_build
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:797: undefined reference 
to `gs_cie_render1_initialize'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:797: relocation truncated 
to fit: R_PPC_REL24 gs_cie_render1_initialize
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:802: undefined reference 
to `gs_setcolorrendering'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:802: relocation truncated 
to fit: R_PPC_REL24 gs_setcolorrendering
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:803: undefined reference 
to `gs_cspace_build_CIEABC'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:803: relocation truncated 
to fit: R_PPC_REL24 gs_cspace_build_CIEABC
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:807: undefined reference 
to `gs_cie_abc_complete'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:807: relocation truncated 
to fit: R_PPC_REL24 gs_cie_abc_complete
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:809: undefined reference 
to `gs_setcolorspace'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:809: relocation truncated 
to fit: R_PPC_REL24 gs_setcolorspace
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:812: undefined reference 
to `st_device_cmap'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:812: undefined reference 
to `st_device_cmap'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:815: undefined reference 
to `gs_currentdevice'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:815: relocation truncated 
to fit: R_PPC_REL24 gs_currentdevice
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:815: undefined reference 
to `gdev_cmap_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:815: relocation truncated 
to fit: R_PPC_REL24 gdev_cmap_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:817: undefined reference 
to `gs_setdevice_no_init'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:817: relocation truncated 
to fit: R_PPC_REL24 gs_setdevice_no_init
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:818: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:818: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:819: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:819: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:821: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:821: relocation truncated 
to fit: R_PPC_REL24 gs_translate
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:824: undefined reference 
to `gs_translate'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:824: relocation truncated 
to fit: R_PPC_REL24 gs_translate
./obj/gslib.o: In function `test7':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:853: undefined reference 
to `gs_ht_build'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:853: relocation truncated 
to fit: R_PPC_REL24 gs_ht_build
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:854: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:854: undefined reference 
to `gs_stdio'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:855: undefined reference 
to `gs_ht_set_mask_comp'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:855: relocation truncated 
to fit: R_PPC_REL24 gs_ht_set_mask_comp
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:858: undefined reference 
to `gs_sethalftone'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:858: relocation truncated 
to fit: R_PPC_REL24 gs_sethalftone
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:861: undefined reference 
to `gs_setgray'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:861: relocation truncated 
to fit: R_PPC_REL24 gs_setgray
./obj/gslib.o: In function `test8':
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:904: undefined reference 
to `gs_current_DeviceRGB_space'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:904: relocation truncated 
to fit: R_PPC_REL24 gs_current_DeviceRGB_space
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:904: undefined reference 
to `gs_cspace_build_Indexed'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:904: relocation truncated 
to fit: R_PPC_REL24 gs_cspace_build_Indexed
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:915: undefined reference 
to `gs_makepixmappattern'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:915: relocation truncated 
to fit: R_PPC_REL24 gs_makepixmappattern
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:924: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:924: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:925: undefined reference 
to `gs_rectfill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:925: relocation truncated 
to fit: R_PPC_REL24 gs_rectfill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:926: undefined reference 
to `gs_setpattern'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:926: relocation truncated 
to fit: R_PPC_REL24 gs_setpattern
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:927: undefined reference 
to `gs_settexturetransparent'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:927: relocation truncated 
to fit: R_PPC_REL24 gs_settexturetransparent
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:928: undefined reference 
to `gs_rectfill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:928: relocation truncated 
to fit: R_PPC_REL24 gs_rectfill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:931: undefined reference 
to `gs_setrgbcolor'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:931: relocation truncated 
to fit: R_PPC_REL24 gs_setrgbcolor
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:932: undefined reference 
to `gs_rectfill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:932: relocation truncated 
to fit: R_PPC_REL24 gs_rectfill
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:933: undefined reference 
to `gs_setpattern'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:933: relocation truncated 
to fit: R_PPC_REL24 gs_setpattern
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:934: undefined reference 
to `gs_settexturetransparent'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:934: relocation truncated 
to fit: R_PPC_REL24 gs_settexturetransparent
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:935: undefined reference 
to `gs_rectfill'
/home/users/fedor/src/ghostscript-6.53/./src/gslib.c:935: relocation truncated 
to fit: R_PPC_REL24 gs_rectfill
./obj/gsnogc.o: In function `sf_alloc_string':
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:86: undefined reference 
to `gs_ref_memory_procs'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:86: undefined reference 
to `gs_ref_memory_procs'
./obj/gsnogc.o: In function `sf_free_string':
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:115: undefined reference 
to `chunk_locate_ptr'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:115: relocation truncated 
to fit: R_PPC_REL24 chunk_locate_ptr
./obj/gsnogc.o: In function `sf_enable_free':
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:228: undefined reference 
to `gs_ref_memory_procs'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:228: undefined reference 
to `gs_ref_memory_procs'
./obj/gsnogc.o: In function `sf_consolidate_free':
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:265: undefined reference 
to `alloc_close_chunk'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:265: relocation truncated 
to fit: R_PPC_REL24 alloc_close_chunk
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:290: undefined reference 
to `alloc_init_free_strings'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:290: relocation truncated 
to fit: R_PPC_REL24 alloc_init_free_strings
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:293: undefined reference 
to `alloc_open_chunk'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:293: relocation truncated 
to fit: R_PPC_REL24 alloc_open_chunk
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:296: undefined reference 
to `ialloc_consolidate_free'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:296: relocation truncated 
to fit: R_PPC_REL24 ialloc_consolidate_free
./obj/gsnogc.o: In function `use_string_freelists':
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:345: undefined reference 
to `gs_ignore_free_string'
/home/users/fedor/src/ghostscript-6.53/./src/gsnogc.c:345: undefined reference 
to `gs_ignore_free_string'
./obj/gconfig.o: In function `gs_lib_device_list':
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:153: undefined reference 
to `gs_nullpage_device'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:153: undefined reference 
to `gs_bbox_device'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:154: undefined reference 
to `gs_x11_device'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:154: undefined reference 
to `gs_x11alpha_device'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:155: undefined reference 
to `gs_image_class_0_interpolate'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:156: undefined reference 
to `gs_image_class_1_simple'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:156: undefined reference 
to `gs_image_class_2_fracs'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:157: undefined reference 
to `gs_image_class_3_mono'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_image_class_4_color'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_image_type_1'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_image_type_mask1'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_image_type_2'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_gshtscr_init'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_gsutil_init'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_iodev_os'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_iodev_stdin'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_iodev_stdout'
/home/users/fedor/src/ghostscript-6.53/./obj/gconfig.c:158: undefined reference 
to `gs_iodev_stderr'
collect2: ld returned 1 exit status
/bin/sh: ./obj/gp_unix.o: Permission denied
/bin/sh: ./obj/gp_unifs.o: Permission denied
/bin/sh: ./obj/gp_unifn.o: Permission denied
/bin/sh: ./obj/gp_nsync.o: Permission denied
/bin/sh: ./obj/gpmisc.o: Permission denied
/bin/sh: ./obj/stream.o: Permission denied
/bin/sh: ./obj/gsalloc.o: Permission denied
/bin/sh: ./obj/gsalpha.o: Permission denied
/bin/sh: ./obj/gsbitops.o: Permission denied
/bin/sh: ./obj/gsbittab.o: Permission denied
/bin/sh: ./obj/gschar.o: Permission denied
/bin/sh: ./obj/gscolor.o: Permission denied
/bin/sh: ./obj/gscoord.o: Permission denied
/bin/sh: ./obj/gscparam.o: Permission denied
/bin/sh: ./obj/gscspace.o: Permission denied
/bin/sh: ./obj/gscssub.o: Permission denied
/bin/sh: ./obj/gsdevice.o: Permission denied
/bin/sh: ./obj/gsdevmem.o: Permission denied
/bin/sh: ./obj/gsdparam.o: Permission denied
/bin/sh: ./obj/gsfname.o: Permission denied
/bin/sh: ./obj/gsfont.o: Permission denied
/bin/sh: ./obj/gsht.o: Permission denied
/bin/sh: ./obj/gshtscr.o: Permission denied
/bin/sh: ./obj/gsimage.o: Permission denied
/bin/sh: ./obj/gsimpath.o: Permission denied
/bin/sh: ./obj/gsinit.o: Permission denied
/bin/sh: ./obj/gsiodev.o: Permission denied
/bin/sh: ./obj/gsistate.o: Permission denied
/bin/sh: ./obj/gsline.o: Permission denied
/bin/sh: ./obj/gsmalloc.o: Permission denied
/bin/sh: ./obj/gsmatrix.o: Permission denied
/bin/sh: ./obj/gsmemlok.o: Permission denied
/bin/sh: ./obj/gsmemory.o: Permission denied
/bin/sh: ./obj/gsmemret.o: Permission denied
/bin/sh: ./obj/gsmisc.o: Permission denied
/bin/sh: ./obj/gsnotify.o: Permission denied
/bin/sh: ./obj/gspaint.o: Permission denied
/bin/sh: ./obj/gsparam.o: Permission denied
/bin/sh: ./obj/gspath.o: Permission denied
/bin/sh: ./obj/gsstate.o: Permission denied
/bin/sh: ./obj/gstext.o: Permission denied
/bin/sh: ./obj/gsutil.o: Permission denied
/bin/sh: ./obj/gsiodevs.o: Permission denied
/bin/sh: ./obj/sfxstdio.o: Permission denied
/bin/sh: ./obj/gxacpath.o: Permission denied
/bin/sh: ./obj/gxbcache.o: Permission denied
/bin/sh: ./obj/gxccache.o: Permission denied
/bin/sh: ./obj/gxccman.o: Permission denied
/bin/sh: ./obj/gxchar.o: Permission denied
/bin/sh: ./obj/gxcht.o: Permission denied
/bin/sh: ./obj/gxclip.o: Permission denied
/bin/sh: ./obj/gxcmap.o: Permission denied
/bin/sh: ./obj/gxcpath.o: Permission denied
/bin/sh: ./obj/gxdcconv.o: Permission denied
/bin/sh: ./obj/gxdcolor.o: Permission denied
/bin/sh: ./obj/gxdither.o: Permission denied
/bin/sh: ./obj/gxfill.o: Permission denied
/bin/sh: ./obj/gxht.o: Permission denied
/bin/sh: ./obj/gxhtbit.o: Permission denied
/bin/sh: ./obj/gxidata.o: Permission denied
/bin/sh: ./obj/gxifast.o: Permission denied
/bin/sh: ./obj/gximage.o: Permission denied
/bin/sh: ./obj/gximage1.o: Permission denied
/bin/sh: ./obj/gximono.o: Permission denied
/bin/sh: ./obj/gxipixel.o: Permission denied
/bin/sh: ./obj/gxpaint.o: Permission denied
/bin/sh: ./obj/gxpath.o: Permission denied
/bin/sh: ./obj/gxpath2.o: Permission denied
/bin/sh: ./obj/gxpcopy.o: Permission denied
/bin/sh: ./obj/gxpdash.o: Permission denied
/bin/sh: ./obj/gxpflat.o: Permission denied
/bin/sh: ./obj/gxsample.o: Permission denied
/bin/sh: ./obj/gxstroke.o: Permission denied
/bin/sh: ./obj/gxsync.o: Permission denied
/bin/sh: ./obj/gdevabuf.o: Permission denied
/bin/sh: ./obj/gdevdbit.o: Permission denied
/bin/sh: ./obj/gdevddrw.o: Permission denied
/bin/sh: ./obj/gdevdflt.o: Permission denied
/bin/sh: ./obj/gdevdgbr.o: Permission denied
/bin/sh: ./obj/gdevnfwd.o: Permission denied
/bin/sh: ./obj/gdevmem.o: Permission denied
/bin/sh: ./obj/gdevplnx.o: Permission denied
/bin/sh: ./obj/gdevm1.o: Permission denied
/bin/sh: ./obj/gdevm2.o: Permission denied
/bin/sh: ./obj/gdevm4.o: Permission denied
/bin/sh: ./obj/gdevm8.o: Permission denied
/bin/sh: ./obj/gdevm16.o: Permission denied
/bin/sh: ./obj/gdevm24.o: Permission denied
/bin/sh: ./obj/gdevm32.o: Permission denied
/bin/sh: ./obj/gdevmpla.o: Permission denied
/bin/sh: ./obj/siinterp.o: Permission denied
/bin/sh: ./obj/siscale.o: Permission denied
/bin/sh: ./obj/gsnorop.o: Permission denied
/bin/sh: ./obj/gp_strdl.o: Permission denied
/bin/sh: ./obj/gxi12bit.o: Permission denied
/bin/sh: ./obj/gxiscale.o: Permission denied
/bin/sh: ./obj/gxicolor.o: Permission denied
/bin/sh: ./obj/gscolor2.o: Permission denied
/bin/sh: ./obj/gscolor1.o: Permission denied
/bin/sh: ./obj/gsht1.o: Permission denied
/bin/sh: ./obj/gsdps.o: Permission denied
/bin/sh: ./obj/gximage2.o: Permission denied
/bin/sh: ./obj/gscpixel.o: Permission denied
/bin/sh: ./obj/gsdps1.o: Permission denied
/bin/sh: ./obj/gsalphac.o: Permission denied
/bin/sh: ./obj/gstype1.o: Permission denied
/bin/sh: ./obj/gxtype1.o: Permission denied
/bin/sh: ./obj/gxhint1.o: Permission denied
/bin/sh: ./obj/gxhint2.o: Permission denied
/bin/sh: ./obj/gxhint3.o: Permission denied
/bin/sh: ./obj/gscrypt1.o: Permission denied
/bin/sh: ./obj/gxchrout.o: Permission denied
/bin/sh: ./obj/gdevbbox.o: Permission denied
/bin/sh: ./obj/gdevx.o: Permission denied
/bin/sh: ./obj/gdevxcmp.o: Permission denied
/bin/sh: ./obj/gdevxini.o: Permission denied
/bin/sh: ./obj/gdevxres.o: Permission denied
/bin/sh: ./obj/gdevxxf.o: Permission denied
/bin/sh: ./obj/gdevemap.o: Permission denied
/bin/sh: ./obj/gsparamx.o: Permission denied
/bin/sh: ./obj/gdevxalt.o: Permission denied
/bin/sh: -lm: command not found
make: *** [obj/gslib] Error 127

reply via email to

[Prev in Thread] Current Thread [Next in Thread]