home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / fj / maillis / xwindow / 19709 < prev    next >
Encoding:
Internet Message Format  |  1993-01-21  |  3.6 KB

  1. Path: sparky!uunet!stanford.edu!sun-barr!sh.wide!wnoc-tyo-news!scslwide!wsgw!wsservra!daemon
  2. From: Dave@usppc.abb.com
  3. Newsgroups: fj.mail-lists.x-window
  4. Subject: Missing externals making xfig
  5. Message-ID: <1993Jan22.005229.5418@sm.sony.co.jp>
  6. Date: 22 Jan 93 00:52:29 GMT
  7. Sender: daemon@sm.sony.co.jp (The devil himself)
  8. Distribution: fj
  9. Organization: Workstation Div., Supermicro Systems Group, Sony Corporation
  10. Lines: 91
  11. Approved: michael@sm.sony.co.jp
  12.  
  13. Date: Thu, 21 Jan 93 19:06:45 EST
  14. Message-Id: <9301220006.AA00220@usppc.abb.com>
  15. Content-Type: X-sun-attachment
  16.  
  17. ----------
  18. X-Sun-Data-Type: text
  19. X-Sun-Data-Description: text
  20. X-Sun-Data-Name: text
  21. X-Sun-Content-Lines: 30
  22.  
  23. I'm trying to make xfig from the X-11R4 contributed clients.  It went
  24. well  to make a couple of minor fixes to compound object pointer
  25. declarations.  Then the fun began.  I use the enclosed Imakefile to get
  26. something which does this come ld time.  The Makefile does the following
  27. to link the program
  28.  
  29.  
  30. cc -o xfig addpt.o arc.o arrow.o autoarrow.o bitmap.o blink.o bound.o box.o break.o canvas.o char.o color.o copy.o cursor.o curve.o deletept.o dir.o drag.o draw.o ellipse.o file.o flip.o font.o free.o geom.o global.o glue.o graphics.o grid.o intspline.o latex_line.o line.o list.o main.o move.o movept.o msgsw.o panel.o popup.o puterr.o read.o read1_3.o redisplay.o remove.o rotate.o ruler.o save.o scale.o search.o spline.o text.o trans.o turn.o undo.o util.o xtra.o -O  -lXaw -lXmu -lXt -lXext -lX11 -L/usr/lo
  31.  
  32.  
  33.  
  34.  
  35.  
  36. cal/openwin-3/lib  -lXaw -lXmu -lXt -lXext -lX11 -lm  
  37.  
  38. This gives two undefined entry points:
  39.  
  40. ld: Undefined symbol
  41.    _get_wmShellWidgetClass
  42.    _get_applicationShellWidgetClass
  43.  
  44. Even though the driver reports
  45.  
  46. Compilation failed
  47. *** Error code 2
  48. make: Fatal error: Command failed for target `xfig'
  49.  
  50. The program has a good magic number and is marked executable.  To wit ...
  51. indigo% xfig
  52. Initializing FIG 1.4.3 (X11) ... 
  53.  
  54. What might cause these symptoms?  Will I eventually step on a land mine
  55. if i use this beast?
  56.  
  57. Regards, 
  58. Dave Hamby
  59. ----------
  60. X-Sun-Data-Type: default
  61. X-Sun-Data-Description: default
  62. X-Sun-Data-Name: Imakefile
  63. X-Sun-Content-Lines: 45
  64.  
  65. DEFINES = -I/usr/local/openwin-3/include  -DX11
  66. SYS_LIBRARIES = $(SYSAUX_LIBRARIES) -lm
  67.  
  68. SYSAUX_LIBRARIES = -L/usr/local/openwin-3/lib  -lXaw -lXmu -lXt -lXext -lX11
  69. LOCAL_LIBRARIES = XawClientLibs
  70.         DEPLIBS = XawClientDepLibs
  71.  
  72.  
  73. SRCS=    addpt.c arc.c arrow.c autoarrow.c\
  74.     bitmap.c blink.c bound.c box.c break.c\
  75.     canvas.c char.c color.c copy.c cursor.c curve.c\
  76.     deletept.c dir.c drag.c draw.c ellipse.c\
  77.     file.c flip.c font.c free.c\
  78.     geom.c global.c glue.c graphics.c grid.c\
  79.     intspline.c latex_line.c line.c list.c\
  80.     main.c move.c movept.c msgsw.c\
  81.     panel.c popup.c puterr.c\
  82.     read.c read1_3.c redisplay.c remove.c rotate.c ruler.c\
  83.     save.c scale.c search.c spline.c\
  84.     text.c trans.c turn.c undo.c util.c xtra.c
  85.  
  86. OBJS=    addpt.o arc.o arrow.o autoarrow.o\
  87.     bitmap.o blink.o bound.o box.o break.o\
  88.     canvas.o char.o color.o copy.o cursor.o curve.o\
  89.     deletept.o dir.o drag.o draw.o ellipse.o\
  90.     file.o flip.o font.o free.o\
  91.     geom.o global.o glue.o graphics.o grid.o\
  92.     intspline.o latex_line.o line.o list.o\
  93.     main.o move.o movept.o msgsw.o\
  94.     panel.o popup.o puterr.o\
  95.     read.o read1_3.o redisplay.o remove.o rotate.o ruler.o\
  96.     save.o scale.o search.o spline.o\
  97.     text.o trans.o turn.o undo.o util.o xtra.o
  98.  
  99. F2PSRC =    arrow.c f2p.c free.c read.c read1_3.c
  100. F2POBJ =    arrow.o f2p.o free.o read.o read1_3.o
  101.  
  102. F2PSSRC =    arrow.c bound.c f2ps.c free.c read.c read1_3.c
  103. F2PSOBJ =    arrow.o bound.o f2ps.o free.o read.o read1_3.o
  104.  
  105. ComplexProgramTarget(xfig)
  106.  
  107. SingleProgramTarget(f2p,$(F2POBJ),,)
  108.  
  109. SingleProgramTarget(f2ps,$(F2PSOBJ),,)
  110.