home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / windows / x / apps / 660 < prev    next >
Encoding:
Text File  |  1992-07-29  |  2.4 KB  |  77 lines

  1. Newsgroups: comp.windows.x.apps
  2. Path: sparky!uunet!iWarp.intel.com|ichips!tmcconne
  3. From: tmcconne@sedona.intel.com (Tom McConnell)
  4. Subject: XPaint 2.0 problems - RS/6000, X11R5pl12
  5. Message-ID: <1992Jul29.143408.17389@ichips.intel.com>
  6. Originator: tmcconne@sedona
  7. Keywords: xpaint
  8. Sender: tmcconne@sedona (Tom McConnell)
  9. Reply-To: tmcconne@sedona.intel.com
  10. Organization: Intel Corporation
  11. Date: Wed, 29 Jul 1992 14:34:08 GMT
  12. Lines: 63
  13.  
  14.  
  15.   Environment: IBM RS/6000
  16.                AIX 3.1.6
  17.                X11R5pl12
  18.  
  19. I have been working on xpaint-2.0 on the RS/6000. The program seems to work,
  20. except for the following problems:
  21.  
  22.   1. The bitmaps for the tools do not appear in the tool palette. The tools work,
  23.     but they are just blank squares.
  24.  
  25.      On a Sun 4/330, SunOS 4.1, the bitmaps work fine.
  26.  
  27.   2. The pencil only draws in black. Everything else seems to be able to draw in
  28.     color.
  29.  
  30.   On the positive side, I generated an Imakefile, 'cause I hate dealing with
  31. Makefiles. It is at the end of this message.
  32.  
  33.   Thanks for any help.
  34.  
  35.     Cheers,
  36.  
  37.     Tom McConnell
  38.  
  39. PS: Here is the Imakefile - TDM
  40.  
  41.           SRCS1 = main.c Menu.c Operation.c Graphic.c Undo.c Misc.c \
  42.                   FileName.c ReadWritePNM.c FontSelect.c libpnmrw.c \
  43.                   Pattern.c Hash.c Palette.c FatbitsEdit.c Event.c \
  44.                   Dialog.c Protocol.c
  45.  
  46.           SRCS2 = PencilOp.c BoxOp.c LineOp.c CircleOp.c EraseOp.c \
  47.                   BrushOp.c FontOp.c ArcOp.c PolyOp.c FillOp.c \
  48.                   SelectOp.c
  49.  
  50.           SRCS3 = Paint.c Colormap.c
  51.  
  52.           OBJS1 = main.o Menu.o Operation.o Graphic.o Undo.o Misc.o \
  53.               FileName.o ReadWritePNM.o FontSelect.o libpnmrw.o \
  54.               Pattern.o Hash.o Palette.o FatbitsEdit.o Event.o \
  55.               Dialog.o Protocol.o
  56.  
  57.           OBJS2 = PencilOp.o BoxOp.o LineOp.o CircleOp.o EraseOp.o \
  58.               BrushOp.o FontOp.o ArcOp.o PolyOp.o FillOp.o \
  59.               SelectOp.o
  60.  
  61.           OBJS3 = Paint.o Colormap.o
  62.  
  63. LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(EXTENSIONLIB) $(XTOOLLIB) $(XLIB)
  64.  
  65. EXTRA_LIBRARIES = -lm
  66.  
  67.            SRCS = $(SRCS1) $(SRCS2) $(SRCS3)
  68.            OBJS = $(OBJS1) $(OBJS2) $(OBJS3)
  69.  
  70. ComplexProgramTarget(xpaint)
  71. InstallAppDefaults(XPaint)
  72. -- 
  73.  Tom McConnell          |     Internet: tmcconne@sedona.intel.com
  74.  Intel, Corp. C3-21     |     Phone: (602)-554-8229
  75.  5000 W. Chandler Blvd. | The opinions expressed are my own. No one in 
  76.  Chandler, AZ  85226    | their right mind would claim them.
  77.