home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / gnu / utils / bug / 2314 < prev    next >
Encoding:
Text File  |  1993-01-02  |  1.7 KB  |  47 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!cis.ohio-state.edu!icule.UUCP!pinard
  3. From: pinard@icule.UUCP (Francois Pinard)
  4. Subject: Oleo 1.2 - second compilation attempt
  5. Message-ID: <9301020337.AA10433@icule.UUCP>
  6. Sender: gnulists@ai.mit.edu
  7. Reply-To: pinard@iro.umontreal.ca
  8. Organization: GNUs Not Usenet
  9. Distribution: gnu
  10. Date: Sat, 2 Jan 1993 03:37:36 GMT
  11. Approved: bug-gnu-utils@prep.ai.mit.edu
  12. Lines: 33
  13.  
  14. Hi, people.  This is for Oleo 1.2, using GNU C 1.41 under COFF
  15. encapsulation, on this 386/ix 2.0.2 system.  While configuring, I
  16. forced `gcc -traditional'.  I applied the first two correction sets
  17. recently suggested by Paul Eggert, before proceeding.
  18.  
  19. * `make distclean' removes $(all_objs) twice.  In fact, $(all_objs)
  20. should not be part of the rule for distclean, since clean already
  21. takes care of it.
  22.  
  23. * AC_ALLOCA should be used and alloca.c provided together with
  24. parse.tab.c, which needs alloca.  Not every compiler has alloca.  (I
  25. reported this already for Oleo 1.1).  More specifically, the
  26. distribution should include alloca.c, and Makefile.in should have:
  27.  
  28.     extra_obs = @LIBOBJS@ @ALLOCA@
  29.  
  30. * Also, alloca is not properly defined in the provided parse.tab.c.
  31. Just regenerating it with Bison 1.19 solves the problem, here.
  32.  
  33. * In io-curses.c, __SAVED_SYSV__ is uselessly undefined if SYSV is not
  34. defined.  Just before SYSV is restored from __SAVED_SYSV__, it should
  35. be undefined.
  36.  
  37. * In io-term.c, <sys/wait.h> is included, but does not exist on this
  38. system.  Merely deleting the include solves the matter, here.
  39.  
  40. More later...
  41.  
  42. -- 
  43. Franc,ois Pinard       ``Happy GNU Year!''      pinard@iro.umontreal.ca
  44. (514) 588-4656                                   ...!uunet!iros1!pinard
  45. About the League for Programming Freedom?  Email me or lpf@uunet.uu.net
  46.  
  47.