bug-ghostscript
[Top][All Lists]
Advanced

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

Problem building ghostscript 6.0 on sparc sun solaris 2.8


From: Marc van Dongen
Subject: Problem building ghostscript 6.0 on sparc sun solaris 2.8
Date: 7 Oct 2000 09:06:43 GMT

I've just installed a complete ne os on my macheine.

When I then tried to build ghostscript (6.0) from sourc
on my sparc sun solaris 2.8 box I got a very strange error
from make, which I think is caused by a bug. Make halts
with an exit code of 1 and outputs:
make: Fatal error: Don't know how to make target `jpeg/jpeglib.h'

I have appended a log of the make output as well as my
makefile. Any suggestions about how to overcome this problem
would be greatly appreciated.

Sincerely,


Marc van Dongen

-- 
     Marc van Dongen, CS Dept | phone:  +353 21 4903578
University College Cork, NUIC | Fax:    +353 21 4903113
  College Road, Cork, Ireland | Email: address@hidden

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Makefile
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#    Copyright (C) 1997, 2000 Aladdin Enterprises.  All rights reserved.
# 
# This file is part of Aladdin Ghostscript.
# 
# Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
# or distributor accepts any responsibility for the consequences of using it,
# or for whether it serves any particular purpose or works at all, unless he
# or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
# License (the "License") for full details.
# 
# Every copy of Aladdin Ghostscript must include a copy of the License,
# normally in a plain ASCII text file named PUBLIC.  The License grants you
# the right to copy, modify and redistribute Aladdin Ghostscript, but only
# under certain conditions described in the License.  Among other things, the
# License requires that the copyright notice and this notice be preserved on
# all copies.

# $Id: unix-gcc.mak $
# makefile for Unix/gcc/X11 configuration.

# ------------------------------- Options ------------------------------- #

####### The following are the only parts of the file you should need to edit.

# Define the directory for the final executable, and the
# source, generated intermediate file, and object directories
# for the graphics library (GL) and the PostScript/PDF interpreter (PS).

BINDIR=./bin
GLSRCDIR=./src
GLGENDIR=./obj
GLOBJDIR=./obj
PSSRCDIR=./src
PSLIBDIR=./lib
PSGENDIR=./obj
PSOBJDIR=./obj

# Do not edit the next group of lines.

#include $(COMMONDIR)/gccdefs.mak
#include $(COMMONDIR)/unixdefs.mak
#include $(COMMONDIR)/generic.mak
include $(GLSRCDIR)/version.mak
DD=$(GLGENDIR)/
GLD=$(GLGENDIR)/
PSD=$(PSGENDIR)/

# ------ Generic options ------ #

# Define the installation commands and target directories for
# executables and files.  The commands are only relevant to `make install';
# the directories also define the default search path for the
# initialization files (gs_*.ps) and the fonts.

INSTALL = $(GLSRCDIR)/instcopy -c
INSTALL_PROGRAM = $(INSTALL) -m 755
INSTALL_DATA = $(INSTALL) -m 644

prefix = ${SOFTWARE}/usr/local
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
scriptdir = $(bindir)
mandir = $(prefix)/man
man1ext = 1
man1dir = $(mandir)/man$(man1ext)
datadir = $(prefix)/share
gsdir = $(datadir)/ghostscript
gsdatadir = $(gsdir)/$(GS_DOT_VERSION)

docdir=$(gsdatadir)/doc
exdir=$(gsdatadir)/examples
GS_DOCDIR=$(docdir)

# Define the default directory/ies for the runtime
# initialization and font files.  Separate multiple directories with a :.

GS_LIB_DEFAULT=$(gsdatadir)/lib:$(gsdir)/fonts

# Define whether or not searching for initialization files should always
# look in the current directory first.  This leads to well-known security
# and confusion problems, but users insist on it.
# NOTE: this also affects searching for files named on the command line:
# see the "File searching" section of Use.htm for full details.
# Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.

SEARCH_HERE_FIRST=1

# Define the name of the interpreter initialization file.
# (There is no reason to change this.)

GS_INIT=gs_init.ps

# Choose generic configuration options.

# -DDEBUG
#       includes debugging features (-Z switch) in the code.
#         Code runs substantially slower even if no debugging switches
#         are set.
# -DNOPRIVATE
#       makes private (static) procedures and variables public,
#         so they are visible to the debugger and profiler.
#         No execution time or space penalty.

GENOPT=

# Define the name of the executable file.

GS=gs

# Define the name of a pre-built executable that can be invoked at build
# time.  Currently, this is only needed for compiled fonts.  The usual
# alternatives are:
#   - the standard name of Ghostscript on your system (typically `gs'):
BUILD_TIME_GS=gs
#   - the name of the executable you are building now.  If you choose this
# option, then you must build the executable first without compiled fonts,
# and then again with compiled fonts.
#BUILD_TIME_GS=$(BINDIR)/$(GS) -I$(PSLIBDIR)

# Define the directories for debugging and profiling binaries, relative to
# the standard binaries.

DEBUGRELDIR=../debugobj
PGRELDIR=../pgobj

# Define the directory where the IJG JPEG library sources are stored,
# and the major version of the library that is stored there.
# You may need to change this if the IJG library version changes.
# See jpeg.mak for more information.

JSRCDIR=jpeg
JVERSION=6

# Choose whether to use a shared version of the IJG JPEG library (-ljpeg).
# DON'T DO THIS. If you do, the resulting executable will not be able to
# read some PostScript files containing JPEG data, because Adobe chose to
# define PostScript's JPEG capabilities in a way that is slightly
# incompatible with the JPEG standard.  See Make.htm for more details.

# DON'T SET THIS TO 1!  See the comment just above.
SHARE_JPEG=0
JPEG_NAME=jpeg

# Define the directory where the PNG library sources are stored,
# and the version of the library that is stored there.
# You may need to change this if the libpng version changes.
# See libpng.mak for more information.

PSRCDIR=libpng
PVERSION=10003

# Choose whether to use a shared version of the PNG library, and if so,
# what its name is.
# See gs.mak and Make.htm for more information.

SHARE_LIBPNG=0
LIBPNG_NAME=png

# Define the directory where the zlib sources are stored.
# See zlib.mak for more information.

ZSRCDIR=zlib

# Choose whether to use a shared version of the zlib library, and if so,
# what its name is (usually libz, but sometimes libgz).
# See gs.mak and Make.htm for more information.

SHARE_ZLIB=0
#ZLIB_NAME=gz
ZLIB_NAME=z

# Define how to build the library archives.  (These are not used in any
# standard configuration.)

AR=/usr/ccs/bin/ar
ARFLAGS=qc
RANLIB=ranlib

# ------ Platform-specific options ------ #

# Define the name of the C compiler.

CC=gcc

# Define the name of the linker for the final link step.
# Normally this is the same as the C compiler.

CCLD=$(CC)

# Define the default gcc flags.
# Note that depending whether or not we are running a version of gcc with
# the 2.7.0-2.7.2 optimizer bug, either "-Dconst=" or
# "-Wcast-qual -Wwrite-strings" is automatically included.

# MvD: was GCFLAGS=-Wall -Wstrict-prototypes -Wmissing-declarations 
-Wmissing-prototypes -Wtraditional -fno-builtin -fno-common
GCFLAGS=-Wall -Wstrict-prototypes -Wmissing-prototypes -Wtraditional 
-fno-builtin -fno-common

# Define the added flags for standard, debugging, and profiling builds.

CFLAGS_STANDARD=-O2
CFLAGS_DEBUG=-g -O
CFLAGS_PROFILE=-pg -O2

# Define the other compilation flags.  Add at most one of the following:
#       -DBSD4_2 for 4.2bsd systems.
#       -DSYSV for System V or DG/UX.
#       -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
#          or any System III Unix, or System V release 3-or-older Unix.
#       -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
#       -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
# XCFLAGS can be set from the command line.
# We don't include -ansi, because this gets in the way of the platform-
#   specific stuff that <math.h> typically needs; nevertheless, we expect
#   gcc to accept ANSI-style function prototypes and function definitions.
XCFLAGS=-DSVR4

CFLAGS=$(CFLAGS_STANDARD) $(GCFLAGS) $(XCFLAGS)

# Define platform flags for ld.
# SunOS 4.n may need -Bstatic.
# Solaris 2.6 (and possibly some other versions) with any of the SHARE_
# parameters set to 1 may need
#       -R /usr/local/xxx/lib:/usr/local/lib
# giving the full path names of the shared library directories.
# XLDFLAGS can be set from the command line.
XLDFLAGS=

LDFLAGS=$(XLDFLAGS) -fno-common

# Define any extra libraries to link into the executable.
# ISC Unix 2.2 wants -linet.
# SCO Unix needs -lsocket if you aren't including the X11 driver.
# SVR4 may need -lnsl.
# Solaris may need -lnsl -lsocket -lposix4.
# (Libraries required by individual drivers are handled automatically.)

EXTRALIBS=-lnsl -lsocket -lposix4

# Define the standard libraries to search at the end of linking.
# Most platforms require -lpthread for the POSIX threads library;
# FreeBSD requires -lc_r instead, BSDI and perhaps some others include
# pthreads in libc and don't require any additional library.
# All reasonable platforms require -lm, but Rhapsody and perhaps one or
# two others fold libm into libc and don't require any additional library.

STDLIBS=-lpthread -lm

# Define the include switch(es) for the X11 header files.
# This can be null if handled in some other way (e.g., the files are
# in /usr/include, or the directory is supplied by an environment variable);
# in particular, SCO Xenix, Unix, and ODT just want
#XINCLUDE=
# Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
# not in $(XINCLUDE).

XINCLUDE=-I/usr/local/X/include

# Define the directory/ies and library names for the X11 library files.
# XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
# (dynamic libraries on SVR4) and should not include -L.
# Newer SVR4 systems can use -R in XLIBDIRS rather than setting XLIBDIR.
# Both can be null if these files are in the default linker search path;
# in particular, SCO Xenix, Unix, and ODT just want
#XLIBDIRS=
# Solaris and other SVR4 systems with dynamic linking probably want
#XLIBDIRS=-L/usr/openwin/lib -R/usr/openwin/lib
# X11R6 (on any platform) may need
#XLIBS=Xt SM ICE Xext X11

#XLIBDIRS=-L/usr/local/X/lib
#XLIBDIRS=-L/usr/X11/lib
XLIBDIR=
XLIBS=Xt Xext X11
# MvD
XLIBDIRS=-L/usr/openwin/lib -R/usr/openwin/lib

# Define whether this platform has floating point hardware:
#       FPU_TYPE=2 means floating point is faster than fixed point.
# (This is the case on some RISCs with multiple instruction dispatch.)
#       FPU_TYPE=1 means floating point is at worst only slightly slower
# than fixed point.
#       FPU_TYPE=0 means that floating point may be considerably slower.
#       FPU_TYPE=-1 means that floating point is always much slower than
# fixed point.

FPU_TYPE=1

# Define the .dev module that implements thread and synchronization
# primitives for this platform.

SYNC=posync

# ------ Devices and features ------ #

# Choose the language feature(s) to include.  See gs.mak for details.

FEATURE_DEVS=$(PSD)psl3.dev $(PSD)pdf.dev $(PSD)dpsnext.dev $(PSD)ttfont.dev 
$(PSD)epsf.dev $(GLD)pipe.dev
#FEATURE_DEVS=$(PSD)psl3.dev $(PSD)pdf.dev
#FEATURE_DEVS=$(PSD)psl3.dev $(PSD)pdf.dev $(PSD)dpsnext.dev $(PSD)ttfont.dev 
$(PSD)rasterop.dev $(GLD)pipe.dev
# The following is strictly for testing.
FEATURE_DEVS_ALL=$(PSD)psl3.dev $(PSD)pdf.dev $(PSD)dpsnext.dev 
$(PSD)ttfont.dev $(PSD)rasterop.dev $(PSD)double.dev $(PSD)trapping.dev 
$(PSD)stocht.dev $(GLD)pipe.dev
#FEATURE_DEVS=$(FEATURE_DEVS_ALL)

# Choose whether to compile the .ps initialization files into the executable.
# See gs.mak for details.

COMPILE_INITS=0

# Choose whether to store band lists on files or in memory.
# The choices are 'file' or 'memory'.

BAND_LIST_STORAGE=file

# Choose which compression method to use when storing band lists in memory.
# The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
# LZW-compatible code in Ghostscript doesn't actually compress its input.

BAND_LIST_COMPRESSOR=zlib

# Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
# See gs.mak and sfxfd.c for more details.

FILE_IMPLEMENTATION=stdio

# Define the name table capacity size of 2^(16+n).
# Setting this to a non-zero value will slow down the interpreter.

EXTEND_NAMES=0

# Choose the device(s) to include.  See devs.mak for details,
# devs.mak and contrib.mak for the list of available devices.

DEVICE_DEVS=$(DD)x11.dev $(DD)x11alpha.dev $(DD)x11cmyk.dev $(DD)x11gray2.dev 
$(DD)x11gray4.dev $(DD)x11mono.dev

#DEVICE_DEVS1=
#DEVICE_DEVS2=
#DEVICE_DEVS3=
#DEVICE_DEVS4=
#DEVICE_DEVS5=
#DEVICE_DEVS6=
#DEVICE_DEVS7=
#DEVICE_DEVS8=
#DEVICE_DEVS9=
#DEVICE_DEVS10=
#DEVICE_DEVS11=
#DEVICE_DEVS12=
#DEVICE_DEVS13=
#DEVICE_DEVS14=
#DEVICE_DEVS15=

DEVICE_DEVS1=$(DD)bmpmono.dev $(DD)bmpgray.dev $(DD)bmpsep1.dev 
$(DD)bmpsep8.dev $(DD)bmp16.dev $(DD)bmp256.dev $(DD)bmp16m.dev $(DD)bmp32b.dev
DEVICE_DEVS2=$(DD)bmpamono.dev $(DD)bmpasep1.dev $(DD)bmpasep8.dev 
$(DD)bmpa16.dev $(DD)bmpa256.dev $(DD)bmpa16m.dev $(DD)bmpa32b.dev
DEVICE_DEVS3=$(DD)deskjet.dev $(DD)djet500.dev $(DD)laserjet.dev 
$(DD)ljetplus.dev $(DD)ljet2p.dev $(DD)ljet3.dev $(DD)ljet3d.dev $(DD)ljet4.dev 
$(DD)ljet4d.dev $(DD)lj5mono.dev $(DD)lj5gray.dev
DEVICE_DEVS4=$(DD)cdeskjet.dev $(DD)cdjcolor.dev $(DD)cdjmono.dev 
$(DD)cdj550.dev $(DD)pj.dev $(DD)pjxl.dev $(DD)pjxl300.dev
DEVICE_DEVS5=$(DD)uniprint.dev
DEVICE_DEVS6=$(DD)bj10e.dev $(DD)bj200.dev $(DD)bjc600.dev $(DD)bjc800.dev
DEVICE_DEVS7=$(DD)faxg3.dev $(DD)faxg32d.dev $(DD)faxg4.dev
DEVICE_DEVS8=$(DD)pcxmono.dev $(DD)pcxgray.dev $(DD)pcx16.dev $(DD)pcx256.dev 
$(DD)pcx24b.dev $(DD)pcxcmyk.dev
DEVICE_DEVS9=$(DD)pbm.dev $(DD)pbmraw.dev $(DD)pgm.dev $(DD)pgmraw.dev 
$(DD)pgnm.dev $(DD)pgnmraw.dev $(DD)pnm.dev $(DD)pnmraw.dev $(DD)ppm.dev 
$(DD)ppmraw.dev $(DD)pkm.dev $(DD)pkmraw.dev $(DD)pksm.dev $(DD)pksmraw.dev
DEVICE_DEVS10=$(DD)tiffcrle.dev $(DD)tiffg3.dev $(DD)tiffg32d.dev 
$(DD)tiffg4.dev $(DD)tifflzw.dev $(DD)tiffpack.dev
DEVICE_DEVS11=$(DD)tiff12nc.dev $(DD)tiff24nc.dev
DEVICE_DEVS12=$(DD)psmono.dev $(DD)psgray.dev $(DD)psrgb.dev $(DD)bit.dev 
$(DD)bitrgb.dev $(DD)bitcmyk.dev
DEVICE_DEVS13=$(DD)pngmono.dev $(DD)pnggray.dev $(DD)png16.dev $(DD)png256.dev 
$(DD)png16m.dev
DEVICE_DEVS14=$(DD)jpeg.dev $(DD)jpeggray.dev
DEVICE_DEVS15=$(DD)pdfwrite.dev $(DD)pswrite.dev $(DD)epswrite.dev 
$(DD)pxlmono.dev $(DD)pxlcolor.dev

DEVICE_DEVS16=
DEVICE_DEVS17=
DEVICE_DEVS18=
DEVICE_DEVS19=
DEVICE_DEVS20=$(DD)cljet5.dev $(DD)cljet5c.dev

# ---------------------------- End of options --------------------------- #

# Define the name of the partial makefile that specifies options --
# used in dependencies.

MAKEFILE=$(GLSRCDIR)/unix-gcc.mak
TOP_MAKEFILES=$(MAKEFILE) $(GLSRCDIR)/unixhead.mak

# Define the ANSI-to-K&R dependency.  There isn't one, but we do have to
# detect whether we're running a version of gcc with the const optimization
# bug.

AK=$(GLGENDIR)/cc.tr

# Define the compilation rules and flags.

CCFLAGS=$(GENOPT) $(CFLAGS)
CC_=$(CC) `cat $(AK)` $(CCFLAGS)
CCAUX=$(CC) `cat $(AK)`
CC_LEAF=$(CC_) -fomit-frame-pointer
# gcc can't use -fomit-frame-pointer with -pg.
CC_LEAF_PG=$(CC_)
# These are the specific warnings we have to turn off to compile those
# specific few files that need this.  We may turn off others in the future.
CC_NO_WARN=$(CC_) -Wno-cast-qual -Wno-traditional

# ---------------- End of platform-specific section ---------------- #

include $(GLSRCDIR)/unixhead.mak
include $(GLSRCDIR)/gs.mak
include $(GLSRCDIR)/lib.mak
include $(PSSRCDIR)/int.mak
include $(PSSRCDIR)/cfonts.mak
include $(GLSRCDIR)/jpeg.mak
# zlib.mak must precede libpng.mak
include $(GLSRCDIR)/zlib.mak
include $(GLSRCDIR)/libpng.mak
include $(GLSRCDIR)/devs.mak
include $(GLSRCDIR)/contrib.mak
include $(GLSRCDIR)/unix-aux.mak
include $(GLSRCDIR)/unixlink.mak
include $(GLSRCDIR)/unix-end.mak
include $(GLSRCDIR)/unixinst.mak

# This has to come last so it won't be taken as the default target.
$(AK):
        if ( $(CC) --version | egrep "^2\.7\.([01]|2(\.[^1-9]|$$))" >/dev/null 
); then echo -Dconst= >$(AK); else echo -Wcast-qual -Wwrite-strings >$(AK); fi

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
make log
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if ( gcc --version | egrep "^2\.7\.([01]|2(\.[^1-9]|$))" >/dev/null ); then 
echo -Dconst= >./obj/cc.tr; else echo -Wcast-qual -Wwrite-strings >./obj/cc.tr; 
fi
gcc `cat ./obj/cc.tr` -I./src -o ./obj/genconf ./src/genconf.c
gcc `cat ./obj/cc.tr` -I./src -o ./obj/echogs ./src/echogs.c
./obj/echogs -w ./obj/devs.tr - -include ./obj/unix_
./obj/echogs -a ./obj/devs.tr -+ ./obj/psl3.dev ./obj/pdf.dev ./obj/dpsnext.dev 
./obj/ttfont.dev ./obj/epsf.dev ./obj/pipe.dev
./obj/echogs -a ./obj/devs.tr -+ 
./obj/echogs -a ./obj/devs.tr -+ ./obj/x11.dev ./obj/x11alpha.dev 
./obj/x11cmyk.dev ./obj/x11gray2.dev ./obj/x11gray4.dev ./obj/x11mono.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/bmpmono.dev ./obj/bmpgray.dev 
./obj/bmpsep1.dev ./obj/bmpsep8.dev ./obj/bmp16.dev ./obj/bmp256.dev 
./obj/bmp16m.dev ./obj/bmp32b.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/bmpamono.dev ./obj/bmpasep1.dev 
./obj/bmpasep8.dev ./obj/bmpa16.dev ./obj/bmpa256.dev ./obj/bmpa16m.dev 
./obj/bmpa32b.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/deskjet.dev ./obj/djet500.dev 
./obj/laserjet.dev ./obj/ljetplus.dev ./obj/ljet2p.dev ./obj/ljet3.dev 
./obj/ljet3d.dev ./obj/ljet4.dev ./obj/ljet4d.dev ./obj/lj5mono.dev 
./obj/lj5gray.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/cdeskjet.dev ./obj/cdjcolor.dev 
./obj/cdjmono.dev ./obj/cdj550.dev ./obj/pj.dev ./obj/pjxl.dev ./obj/pjxl300.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/uniprint.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/bj10e.dev ./obj/bj200.dev 
./obj/bjc600.dev ./obj/bjc800.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/faxg3.dev ./obj/faxg32d.dev 
./obj/faxg4.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/pcxmono.dev ./obj/pcxgray.dev 
./obj/pcx16.dev ./obj/pcx256.dev ./obj/pcx24b.dev ./obj/pcxcmyk.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/pbm.dev ./obj/pbmraw.dev ./obj/pgm.dev 
./obj/pgmraw.dev ./obj/pgnm.dev ./obj/pgnmraw.dev ./obj/pnm.dev 
./obj/pnmraw.dev ./obj/ppm.dev ./obj/ppmraw.dev ./obj/pkm.dev ./obj/pkmraw.dev 
./obj/pksm.dev ./obj/pksmraw.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/tiffcrle.dev ./obj/tiffg3.dev 
./obj/tiffg32d.dev ./obj/tiffg4.dev ./obj/tifflzw.dev ./obj/tiffpack.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/tiff12nc.dev ./obj/tiff24nc.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/psmono.dev ./obj/psgray.dev 
./obj/psrgb.dev ./obj/bit.dev ./obj/bitrgb.dev ./obj/bitcmyk.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/pngmono.dev ./obj/pnggray.dev 
./obj/png16.dev ./obj/png256.dev ./obj/png16m.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/jpeg.dev ./obj/jpeggray.dev
./obj/echogs -a ./obj/devs.tr -+ ./obj/pdfwrite.dev ./obj/pswrite.dev 
./obj/epswrite.dev ./obj/pxlmono.dev ./obj/pxlcolor.dev
./obj/echogs -a ./obj/devs.tr -+ 
./obj/echogs -a ./obj/devs.tr -+ 
./obj/echogs -a ./obj/devs.tr -+ 
./obj/echogs -a ./obj/devs.tr -+ 
./obj/echogs -a ./obj/devs.tr -+ ./obj/cljet5.dev ./obj/cljet5c.dev
./obj/echogs -a ./obj/devs.tr -+ 
./obj/echogs -a ./obj/devs.tr - ./obj/libcore
gcc `cat ./obj/cc.tr` -I./src -o ./obj/genarch ./src/genarch.c
./obj/genarch ./obj/arch.h
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gp_getnv.o -c ./src/gp_getnv.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gp_nofb.o -c ./src/gp_nofb.c
./obj/echogs -w ./obj/gconfig_.h -x 2f2a -s This file was generated 
automatically. -s -x 2a2f
if ( test -f /usr/include/dirent.h ); then ./obj/echogs -a ./obj/gconfig_.h -x 
23 define HAVE_DIRENT_H; else true; fi
if ( test -f /usr/include/ndir.h ); then ./obj/echogs -a ./obj/gconfig_.h -x 23 
define HAVE_NDIR_H; else true; fi
if ( test -f /usr/include/sys/dir.h ); then ./obj/echogs -a ./obj/gconfig_.h -x 
23 define HAVE_SYS_DIR_H; else true; fi
if ( test -f /usr/include/sys/ndir.h ); then ./obj/echogs -a ./obj/gconfig_.h 
-x 23 define HAVE_SYS_NDIR_H; else true; fi
if ( test -f /usr/include/sys/time.h ); then ./obj/echogs -a ./obj/gconfig_.h 
-x 23 define HAVE_SYS_TIME_H; else true; fi
if ( test -f /usr/include/sys/times.h ); then ./obj/echogs -a ./obj/gconfig_.h 
-x 23 define HAVE_SYS_TIMES_H; else true; fi
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gp_unix.o -c ./src/gp_unix.c
In file included from ./src/gp_unix.c:21:
./src/pipe_.h:40: warning: function declaration isn't a prototype
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gp_unifs.o -c ./src/gp_unifs.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gp_unifn.o -c ./src/gp_unifn.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gp_nsync.o -c ./src/gp_nsync.c
./obj/echogs -e .dev -w- -l-obj ./obj/nosync ./obj/gp_nsync.o
./obj/echogs -e .dev -w- -l-obj ./obj/unix_ ./obj/gp_getnv.o ./obj/gp_nofb.o 
./obj/gp_unix.o ./obj/gp_unifs.o ./obj/gp_unifn.o -include ./obj/nosync
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zcid.o -c ./src/zcid.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zchar1.o -c ./src/zchar1.c
./src/zchar1.c:863: warning: no previous prototype for 
`zcharstring_glyph_outline'
./src/zchar1.c:954: warning: no previous prototype for `z1_glyph_info'
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zcharout.o -c ./src/zcharout.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zfont1.o -c ./src/zfont1.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zmisc1.o -c ./src/zmisc1.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/seexec.o -c ./src/seexec.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gscrypt1.o -c ./src/gscrypt1.c
./obj/echogs -e .dev -w- -l-obj ./obj/seexec ./obj/seexec.o ./obj/gscrypt1.o
./obj/echogs -e .dev -w- -l-obj ./obj/psf1read ./obj/zchar1.o ./obj/zcharout.o
./obj/echogs -e .dev -a-  ./obj/psf1read -obj ./obj/zfont1.o ./obj/zmisc1.o
./obj/echogs -e .dev -a-  ./obj/psf1read -include ./obj/seexec
./obj/echogs -e .dev -a-  ./obj/psf1read -oper zchar1 zfont1 zmisc1
./obj/echogs -e .dev -a-  ./obj/psf1read -ps gs_type1
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/iutil2.o -c ./src/iutil2.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zmisc2.o -c ./src/zmisc2.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zvmem2.o -c ./src/zvmem2.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zdps1.o -c ./src/zdps1.c
./src/zdps1.c:408: warning: no previous prototype for `zsetbbox'
./obj/echogs -e .dev -w- -l-obj ./obj/dps2int ./obj/zvmem2.o ./obj/zdps1.o
./obj/echogs -e .dev -a-  ./obj/dps2int -oper zvmem2 zdps1_l2
./obj/echogs -e .dev -a-  ./obj/dps2int -ps gs_dps1
./obj/echogs -w ./obj/gconfigv.h -x 23 define USE_ASM -x 2028 -q -0 -x 29
./obj/echogs -a ./obj/gconfigv.h -x 23 define USE_FPU -x 2028 -q 1-0 -x 29
./obj/echogs -a ./obj/gconfigv.h -x 23 define EXTEND_NAMES 00
./obj/echogs -a ./obj/gconfigv.h -x 23 define SYSTEM_CONSTANTS_ARE_WRITABLE 0
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zusparam.o -c ./src/zusparam.c
./obj/echogs -e .dev -w- -l-obj ./obj/usparam ./obj/zusparam.o
./obj/echogs -e .dev -a-  ./obj/usparam -oper zusparam -replace ./obj/nousparm
./obj/echogs -e .dev -w- -l-obj ./obj/psl2int ./obj/iutil2.o ./obj/zmisc2.o
./obj/echogs -e .dev -a-  ./obj/psl2int -include ./obj/dps2int ./obj/usparam
./obj/echogs -e .dev -a-  ./obj/psl2int -oper zmisc2
./obj/echogs -e .dev -a-  ./obj/psl2int -ps gs_lev2 gs_res
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zchar42.o -c ./src/zchar42.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zfont42.o -c ./src/zfont42.c
./src/zfont42.c:50: warning: no previous prototype for `build_gs_TrueType_font'
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gstype42.o -c ./src/gstype42.c
./obj/echogs -e .dev -w- -l-obj ./obj/ttflib ./obj/gstype42.o
./obj/echogs -e .dev -w- -l-obj ./obj/type42 ./obj/zchar42.o ./obj/zcharout.o 
./obj/zfont42.o
./obj/echogs -e .dev -a-  ./obj/type42 -include ./obj/ttflib    
./obj/echogs -e .dev -a-  ./obj/type42 -oper zchar42 zfont42
./obj/echogs -e .dev -a-  ./obj/type42 -ps gs_typ42
./obj/echogs -e .dev -w- -l-obj ./obj/cidfont ./obj/zcid.o
./obj/echogs -e .dev -a-  ./obj/cidfont -include ./obj/psf1read ./obj/psl2int 
./obj/type42
./obj/echogs -e .dev -a-  ./obj/cidfont -ps gs_cidfn
./obj/echogs -e .dev -a-  ./obj/cidfont -oper zcid
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zcie.o -c ./src/zcie.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zcrd.o -c ./src/zcrd.c
./src/zcrd.c: In function `cie_tpqr_finish':
./src/zcrd.c:428: warning: cast discards `const' from pointer target type
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o ./obj/gscie.o 
-c ./src/gscie.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gsciemap.o -c ./src/gsciemap.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gscscie.o -c ./src/gscscie.c
./src/gscscie.c:37: warning: `st_cie_common' defined but not used
./src/gscscie.c:38: warning: `st_cie_common_elements_t' defined but not used
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o ./obj/gscrd.o 
-c ./src/gscrd.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gscrdp.o -c ./src/gscrdp.c
./src/gscrdp.c: In function `param_get_cie_render1':
./src/gscrdp.c:544: warning: cast discards `const' from pointer target type
./src/gscrdp.c:572: warning: cast discards `const' from pointer target type
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gxctable.o -c ./src/gxctable.c
./obj/echogs -e .dev -w- -l-obj ./obj/cielib ./obj/gscie.o ./obj/gsciemap.o 
./obj/gscscie.o
./obj/echogs -e .dev -a-  ./obj/cielib ./obj/gscrd.o ./obj/gscrdp.o 
./obj/gxctable.o
./obj/echogs -e .dev -w- -l-obj ./obj/cie ./obj/zcie.o ./obj/zcrd.o
./obj/echogs -e .dev -a-  ./obj/cie -oper zcie_l2 zcrd_l2
./obj/echogs -e .dev -a-  ./obj/cie -include ./obj/cielib
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zfcmap.o -c ./src/zfcmap.c
./src/zfcmap.c: In function `acquire_code_map':
./src/zfcmap.c:112: warning: `prev_value' may be used uninitialized in this 
function
./src/zfcmap.c:113: warning: `diff' may be used uninitialized in this function
./src/zfcmap.c:114: warning: `run_length' may be used uninitialized in this 
function
./src/zfcmap.c: At top level:
./src/zfcmap.c:306: warning: no previous prototype for `ztype0_get_cmap'
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gsfcmap.o -c ./src/gsfcmap.c
./obj/echogs -e .dev -w- -l-obj ./obj/cmaplib ./obj/gsfcmap.o
./obj/echogs -e .dev -w- -l-obj ./obj/cmapread ./obj/zfcmap.o
./obj/echogs -e .dev -a-  ./obj/cmapread -include ./obj/cmaplib ./obj/psl2int
./obj/echogs -e .dev -a-  ./obj/cmapread -oper zfcmap
./obj/echogs -e .dev -a-  ./obj/cmapread -ps gs_cmap
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gschar0.o -c ./src/gschar0.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj  -o 
./obj/gsfont0.o -c ./src/gsfont0.c
./obj/echogs -e .dev -w- -l-obj ./obj/psf0lib ./obj/gschar0.o ./obj/gsfont0.o
./obj/echogs -e .dev -a-  ./obj/psf0lib -include ./obj/cmaplib
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zcfont.o -c ./src/zcfont.c
gcc `cat ./obj/cc.tr`  -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wtraditional -fno-builtin -fno-common -DSVR4 -I./src -I./obj -I./src -I./obj  
-o ./obj/zfont0.o -c ./src/zfont0.c
./obj/echogs -e .dev -w- -l-obj ./obj/psf0read ./obj/zcfont.o ./obj/zfcmap.o 
./obj/zfont0.o
./obj/echogs -e .dev -a-  ./obj/psf0read -oper zcfont zfcmap zfont0
./obj/echogs -e .dev -w- -l-obj ./obj/compfont -include ./obj/psf0lib 
./obj/psf0read
make: Fatal error: Don't know how to make target `jpeg/jpeglib.h'



reply via email to

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