home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / mail / elm2.4 / how2next2.4pl21 < prev   
Encoding:
Internet Message Format  |  1993-03-05  |  6.6 KB

  1. Xref: informatik.uni-muenchen.de comp.mail.elm:1509 comp.sys.next.sysadmin:1900
  2. Newsgroups: comp.mail.elm,comp.sys.next.sysadmin
  3. Path: informatik.uni-muenchen.de!lrz-muenchen.de!fauern!math.fu-berlin.de!news.netmbx.de!Germany.EU.net!gmd.de!newsserver.jvnc.net!howland.reston.ans.net!usc!sdd.hp.com!saimiri.primate.wisc.edu!zazen!anderson
  4. From: anderson@macc.wisc.edu (Jess Anderson)
  5. Subject: New Notes on Compiling Elm2.4PL21 under NeXTstep
  6. Message-ID: <1993Feb26.055116.4384@macc.wisc.edu>
  7. Sender: news@macc.wisc.edu (USENET News System)
  8. Organization: Madison Academic Computing Center, UW-Madison
  9. Date: Fri, 26 Feb 93 05:51:16 GMT
  10. Lines: 186
  11.  
  12.  
  13. With the help of others, I've updated my notes on compiling
  14. Elm2.4PL21 (not earlier versions) under NeXTstep 3.0 and
  15. 2.x.  A complete copy of the file follows.  I think it
  16. obsoletes *all* of section 2.17 of the current Elm FAQ (I've
  17. mailed to to S. Serini in Italy, who maintains the FAQ).
  18.  
  19. The file also now resides in my anonymous ftp directory
  20. pub/elm on yak.macc.wisc.edu [144.92.30.18], as file
  21. how2next.
  22.  
  23. Please let me know if you find errors or significant
  24. variations.
  25.  
  26.  
  27.         Compiling Elm 2.4PL21 on NeXT Computers
  28.         =======================================
  29.         Jess Anderson (anderson@macc.wisc.edu)
  30.                        Feb 25, 1993
  31.         =======================================
  32.  
  33. Elm can be configured many different ways.  This file tells
  34. you about just some of the ways.  If you do it a different
  35. way and run into problems on a NeXT machine, please tell me
  36. about how you solved them so I can update these
  37. instructions.
  38.  
  39. Change two source files
  40. -----------------------
  41. Changes introduced at PL 21 depend on a header file called
  42. unistd.h, which does not exist on NeXT.  This requires a
  43. manual intervention in two files, <elm>/hdrs/defs.h and
  44. <elm>/hdrs/filter.h, to comment out the references.  Save
  45. the originals, since you may need to back out when another
  46. patch comes along.  I anticipate that patch 22 will fix this
  47. particular problem.
  48.  
  49. These diffs explain the changes:
  50.  
  51. $ diff hdrs/defs.h hdrs/defs.h.orig
  52. 498,499c498
  53. < #ifndef NeXT
  54. < #  ifndef ANSI_C   /* ANSI puts these in string.h */
  55. ---
  56. > #ifndef ANSI_C   /* ANSI puts these in string.h */
  57. 505,508c504,506
  58. < #  else
  59. < #    include <unistd.h> /* ansi C puts sleep, lseek and fseek in unistd.h */
  60. < #  endif
  61. < #endif /* NeXT */
  62. ---
  63. > #else
  64. > #  include <unistd.h> /* ansi C puts sleep, lseek and fseek in unistd.h */
  65. > #endif
  66.  
  67. $ diff hdrs/filter.h hdrs/filter.h.orig
  68. 217,219c217
  69. < #  ifndef NeXT
  70. < #    include <unistd.h>  /* NeXT doesn't have this header file */
  71. < #  endif /* !NeXT */
  72. ---
  73. > #include <unistd.h>
  74.  
  75.  
  76. Running Configure
  77. -----------------
  78. When I run Configure (I'm on NS3.0), I take the default
  79. responses for all questions except those noted here.
  80.  
  81. Give the name of the program used to process manual pages on your
  82. system: [/usr/bin/troff] /usr/bin/ptroff
  83.  
  84. What options should Elm use with /usr/bin/ptroff: [] -t
  85.  
  86. What optimizer/debugger flag should be used? [-O] -O -pipe
  87.  
  88.    Note: -pipe speeds up the compilation, but it's not
  89.    required, so you could take this default.  Also, one
  90.    person told me they used -O2 with gcc as their compiler.
  91.  
  92. Any additional cc flags? [none] -bsd
  93.  
  94.    Note: This used to be -bsd -fwritable-strings.  That no
  95.    longer seems necessary.  In fact, Elm will compile and
  96.    run if you take the default here.  Using -bsd, however,
  97.    greatly reduces the number of compiler warnings you get.
  98.    One person told me he could *not* use -bsd; he's running
  99.    NS 2.2 (actually, I think he had a different problem, but
  100.    I never got that ironed out.
  101.  
  102. Any additional ld flags (NOT including libraries)? [none]
  103.  
  104.    Note: Using -object here (would give you smaller
  105.    binaries) will cause a hang right near the end, while
  106.    linking filter.
  107.  
  108. What is the full path name of the include file
  109. directory? [] /usr/include/bsd
  110.  
  111.    You need this with NS3.0.
  112.  
  113. Am I going to be running as a setgid program? [y] n
  114.  
  115.    Note: it will work if you say yes, but it's better
  116.    security, they tell me, not to.
  117.  
  118. In addition to these answers, I also set my domain and
  119. turned MIME on.  You may want to take other nondefault
  120. options, but I can't vouch for what will happen.
  121.  
  122.  
  123. Configure options for NeXTstep NS1.0, NS2.x
  124. -------------------------------------------
  125. Note: these have been provided by others; I'm just passing
  126. them on here.
  127.  
  128. libs='-lsys_s'
  129. includepath='/usr/include'
  130. ccflags='-bsd'  [but apparently not for 2.2?]
  131. ldflags='-object' [optional, for smaller binaries]
  132.  
  133. Note: there no longer is a tag named d_voidsig= in
  134. config.sh.  Configure also finds the compiler library,
  135. /lib/libsys_s.a, so the question about that has gone away.
  136.  
  137.  
  138. At the shell escape prompt or just before
  139. -----------------------------------------
  140. Beginning with Elm 2.4, there is a mechanism for changing
  141. config.sh at the end of the Configure process.  If a file
  142. named config.over exists, Configure asks if you want to
  143. apply it.  If you say yes, it does, then pauses at the
  144. famous shell escape prompt.
  145.  
  146. I have this in my config.over:
  147.  
  148. d_memcpy='undef'
  149. sigtype='int'
  150. d_tzname='undef'
  151. passcat='nidump passwd /'
  152. nametype='bsd'
  153. d_bsd='define'
  154.  
  155.    Note: You must have the first three of these.  There is
  156.    some disagreement about the other three.  The passcat
  157.    line doesn't actually get used, it seems.  One person has
  158.    nametype='other' and d_password='define', says it works
  159.    for him.  
  160.  
  161. When Configure gives you the option to use a shell escape to
  162. edit config.sh before proceeding, do so unless you used the
  163. config.over file and make the changes listed above.
  164.  
  165.  
  166. Reconfigure script
  167. ------------------
  168.  
  169. I've tried so many different things by editing config.sh
  170. manually at the shell escape prompt that I finally wrote a
  171. simple script to run it over all the SH files before
  172. compiling.  To use it, put it in your top elm directory, do a
  173. chmod +x to make it executabl, then run it; basically, it's
  174. the tail end of Configure following the shell escape.
  175.  
  176.  
  177. Compilation 
  178. ----------- 
  179. Then run a make.  Some warnings appear during compilation
  180. (takes about 10 minutes); they don't seem to make a
  181. difference.  You have to be root to run make install at the
  182. end of the compilation.
  183.  
  184.  
  185. Credits
  186. -------
  187. Several people contributed to this effort.  They include Syd
  188. Weinstein (syd@dsinc.dsi.com), Jeff Nicholson-Owens
  189. (jeffo@uiuc.edu), Eric P. Scott (eps@toaster.sfsu.edu), and
  190. Guy Thomas (gthomas@native-ed.bc.ca).  Many thanks to all.
  191. But I'll take the blame if there are errors here.
  192.  
  193. -- 
  194. [Jess Anderson  <> Division of Information Technology, University of Wisconsin]
  195. [Internet: anderson@macc.wisc.edu <-best, UUCP:{}!uwvax!macc.wisc.edu!anderson]
  196. [Room 3130 <> 1210 West Dayton Street / Madison WI 53706 <> Phone 608/262-5888]
  197. [---------> Discrimination, Bigotry, and Hate are not Family Values <---------]