home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / gnu / emacs / help / 5173 < prev    next >
Encoding:
Text File  |  1992-12-23  |  2.1 KB  |  77 lines

  1. Newsgroups: gnu.emacs.help
  2. Path: sparky!uunet!das.wang.com!wang!wjs
  3. From: wjs@wang.com (William Smith)
  4. Subject: Re: Emacs 18.59 under SCO/ODT 1.1
  5. Organization: Wang Labs, Lowell MA, USA
  6. Date: Tue, 22 Dec 1992 20:29:53 GMT
  7. Message-ID: <BzoGxt.ECF@wang.com>
  8. References: <1992Dec21.074209.1244@hccw.com> <BzMFMA.G04@NeoSoft.com>
  9. Lines: 66
  10.  
  11. mmarolda@NeoSoft.com (Mike Marolda) writes:
  12.  
  13. >In article <1992Dec21.074209.1244@hccw.com> david@hccw.com (David Robison) writes:
  14. >>I am having some problem compiling Emacs 18.59 under SCO/ODT 1.1.
  15. >>I get a linker error with an unidentified symbol "Error" first
  16. >>referenced in /lib/libPW.a.
  17. >>
  18. >>Can anyone help me as to what the problem might be?
  19. >>
  20. >>Thanks,
  21. >>-- 
  22. >>David R. Robison            
  23.  
  24. >I'm having the same problem.  I did find Error in libXt, but tinkering around
  25. >with the library order in the make hasn't helped.  
  26.  
  27. >Any other suggestions anyone?
  28.  
  29. >Mike Marolda  mmarolda@neosoft.com
  30.  
  31.    
  32.    To properly build 18.59 on a SCO ODT 1.1 system with TCP/IP and X Windows
  33. installed you should have the following lines as part of your config.h file.
  34.  
  35. #define HAVE_X11
  36. #define SCO_SOCKETS
  37. #include "s-sco3-2-2.h"
  38. #include "m-intel386.h"
  39.  
  40. #define HAVE_X_WINDOWS
  41.  
  42.     The following new s-sco3-2-2.h file should be used when HAVE_X11 and
  43. SCO_SOCKETS are not defined.
  44.  
  45. ----------start s-sco3-2-2.h--------
  46.  
  47. /* Support SCO V 3.2.2 (also called Open Desk Top 1.1) */
  48.  
  49. #include "s-sco.h"
  50.  
  51. #if !defined(SCO_SOCKETS) && !defined(HAVE_X11)
  52. #undef HAVE_SELECT  /* select() in standard C lib broken */
  53. #endif
  54.  
  55. #ifdef HAVE_X11
  56. /* Use Xselect instead of XSelect.  */
  57. #undef select
  58. #define select Xselect
  59.  
  60. /* This version was before random and srandom were added to libX11.a.  */
  61. #undef HAVE_RANDOM
  62.  
  63. /* We don't have XrmDestroyDatabase in this version.  */
  64. #define NO_X_DESTROY_DATABASE
  65.  
  66. #endif /* HAVE_X11 */
  67.  
  68. ---------end s-sco3-2-2.h ------
  69.  
  70.  
  71.  
  72. -- 
  73. /*-------------------------------------------------------------------------
  74.    William J. Smith, Wang Labs M/S 019-72B, 1 Industrial Ave      
  75.    Lowell, MA 01851-5161,  (508) 967-6901, email: wjs@wiis.wang.com
  76. --------------------------------------------------------------------------*/
  77.