From: Nick U. <ni...@vt...> - 2000-01-23 13:27:09
|
Dear Team, I have downloaded gimp print 3.0.5, and tried to compile it on my RH 6.1 system (with kernel 2.2.14). I was unsuccessful. Before I spend much more of my precious time, 1. Will this work with gimp 1.04? 2. are there any other special requirements? 3. do you have any suggestion of the simplest way to get it working with 1.0.4? 4. I modified the Makefile.standalone with the following patch, but the file print.c was trying to include a file libgimp/gimpintl.h that does not exist on my system. (where can I get it? Is it necessary to massively upgrade my system?). If I comment the #include line out, the macro N_() becomes undefined. 5. I would be grateful for any suggestions. 6. I want to print out photos on our Epson Stylus 400. Any alternative suggestions greatly appreciated. I have found the best results so far using the Red Hat print filters and lpr (and ghostscript). But I believe that better results are possible. 1021 # diff -u Makefile.standalone Makefile.standalone-n2 --- Makefile.standalone Thu Jan 13 11:29:16 2000 +++ Makefile.standalone-n2 Sun Jan 23 17:06:58 2000 @@ -16,14 +16,14 @@ # Locations of various and sundry items. Edit to taste. -PREFIX = /usr/local +PREFIX = /usr LIBRARIES = /lib HEADERS = /include -GIMPVERSION = 1.1 +GIMPVERSION = 1.0 BINDIR = $(PREFIX)/$(LIBRARIES)/gimp/$(GIMPVERSION)/plug-ins GIMPINCLUDE = -I$(PREFIX)$(HEADERS)/libgimp -GLIBINCLUDE = -I/usr/local/glib/include -I/usr/lib/glib/include -LOCALEDIR=/usr/local/share/locale +GLIBINCLUDE = -I/usr/glib/include -I/usr/lib/glib/include +LOCALEDIR=/usr/share/locale X11DIR = /usr/X11R6 OPTLEVEL = -O6 -funroll-all-loops -Wall @@ -39,7 +39,8 @@ LPSTATCOMMAND = -DLPSTAT_COMMAND=\"/usr/bin/lpstat\" LPCCOMMAND = -DLPC_COMMAND=\"/usr/sbin/lpc\" -LPCOMMAND = -DLP_COMMAND=\"/usr/bin/lp\" +# LPCOMMAND = -DLP_COMMAND=\"/usr/bin/lp\" +LPCOMMAND = -DLP_COMMAND= LPRCOMMAND = -DLPR_COMMAND=\"/usr/bin/lpr\" CFLAGS = $(OPTLEVEL) $(INCLUDES) $(LPSTATCOMMAND) $(LPCCOMMAND) $(LPCOMMAND) $(LPRCOMMAND) -DLOCALEDIR=\"$(LOCALEDIR)\" -- Nick Urbanik, Dept. of Electrical & Communications Engineering Hong Kong Institute of Vocational Education (Tsing Yi) email: ni...@vt..., ni...@io... Tel: (852) 2436 8660, (825) 2436 8674 Fax: (852) 2436 8643 pgp ID: 7529555D fingerprint: 53 B6 6D 73 52 EE 1F EE EC F8 21 98 45 1C 23 7B |