home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.emacs.help
- Path: sparky!uunet!das.wang.com!wang!wjs
- From: wjs@wang.com (William Smith)
- Subject: Re: Emacs 18.59 under SCO/ODT 1.1
- Organization: Wang Labs, Lowell MA, USA
- Date: Tue, 22 Dec 1992 20:29:53 GMT
- Message-ID: <BzoGxt.ECF@wang.com>
- References: <1992Dec21.074209.1244@hccw.com> <BzMFMA.G04@NeoSoft.com>
- Lines: 66
-
- mmarolda@NeoSoft.com (Mike Marolda) writes:
-
- >In article <1992Dec21.074209.1244@hccw.com> david@hccw.com (David Robison) writes:
- >>I am having some problem compiling Emacs 18.59 under SCO/ODT 1.1.
- >>I get a linker error with an unidentified symbol "Error" first
- >>referenced in /lib/libPW.a.
- >>
- >>Can anyone help me as to what the problem might be?
- >>
- >>Thanks,
- >>--
- >>David R. Robison
-
- >I'm having the same problem. I did find Error in libXt, but tinkering around
- >with the library order in the make hasn't helped.
-
- >Any other suggestions anyone?
-
- >Mike Marolda mmarolda@neosoft.com
-
-
- To properly build 18.59 on a SCO ODT 1.1 system with TCP/IP and X Windows
- installed you should have the following lines as part of your config.h file.
-
- #define HAVE_X11
- #define SCO_SOCKETS
- #include "s-sco3-2-2.h"
- #include "m-intel386.h"
-
- #define HAVE_X_WINDOWS
-
- The following new s-sco3-2-2.h file should be used when HAVE_X11 and
- SCO_SOCKETS are not defined.
-
- ----------start s-sco3-2-2.h--------
-
- /* Support SCO V 3.2.2 (also called Open Desk Top 1.1) */
-
- #include "s-sco.h"
-
- #if !defined(SCO_SOCKETS) && !defined(HAVE_X11)
- #undef HAVE_SELECT /* select() in standard C lib broken */
- #endif
-
- #ifdef HAVE_X11
- /* Use Xselect instead of XSelect. */
- #undef select
- #define select Xselect
-
- /* This version was before random and srandom were added to libX11.a. */
- #undef HAVE_RANDOM
-
- /* We don't have XrmDestroyDatabase in this version. */
- #define NO_X_DESTROY_DATABASE
-
- #endif /* HAVE_X11 */
-
- ---------end s-sco3-2-2.h ------
-
-
-
- --
- /*-------------------------------------------------------------------------
- William J. Smith, Wang Labs M/S 019-72B, 1 Industrial Ave
- Lowell, MA 01851-5161, (508) 967-6901, email: wjs@wiis.wang.com
- --------------------------------------------------------------------------*/
-