home *** CD-ROM | disk | FTP | other *** search
/ ftp.mayn.de / ftp.mayn.de-pub.zip / ftp.mayn.de-pub / apple / apple_unix / Utilities / pine-3.95-aux-diffs < prev    next >
Text File  |  2017-03-06  |  9KB  |  249 lines

  1. *** /usr/local/tmp/PINE/pine3.95/./pico/makefile.aux    Fri Apr  5 13:07:45 1996
  2. --- ./pico/makefile.aux    Tue Aug  6 11:14:23 1996
  3. ***************
  4. *** 25,49 ****
  5.   #
  6.   # Makefile for A/UX 3.0 version of the PINE composer library and 
  7.   # stand-alone editor pico.
  8.   #
  9.   
  10.   #includes symbol info for debugging 
  11. ! DASHO=        -g
  12.   #for normal build
  13. ! #DASHO=        -O
  14.   
  15.   STDCFLAGS=    -DAUX -DJOB_CONTROL -D_POSIX_SOURCE -DPOSIX -DMOUSE
  16. ! CFLAGS=        $(EXTRACFLAGS) $(DASHO) $(STDCFLAGS)
  17.   
  18.   # switches for library building
  19.   LIBCMD=        ar
  20.   LIBARGS=    -ru
  21.   RANLIB=        /bin/true
  22.   
  23. ! LIBS=        $(EXTRALIBES) -ltermcap -lposix
  24.   
  25.   OFILES=        attach.o ansi.o basic.o bind.o browse.o buffer.o \
  26.           composer.o display.o \
  27.           file.o fileio.o line.o osdep.o \
  28.           pico.o random.o region.o search.o \
  29.           spell.o tcap.o window.o word.o
  30. --- 25,49 ----
  31.   #
  32.   # Makefile for A/UX 3.0 version of the PINE composer library and 
  33.   # stand-alone editor pico.
  34.   #
  35.   
  36.   #includes symbol info for debugging 
  37. ! #DASHO=        -g
  38.   #for normal build
  39. ! DASHO=        -O
  40.   
  41.   STDCFLAGS=    -DAUX -DJOB_CONTROL -D_POSIX_SOURCE -DPOSIX -DMOUSE
  42. ! CFLAGS=        -A3 $(EXTRACFLAGS) $(DASHO) $(STDCFLAGS)
  43.   
  44.   # switches for library building
  45.   LIBCMD=        ar
  46.   LIBARGS=    -ru
  47.   RANLIB=        /bin/true
  48.   
  49. ! LIBS=        $(EXTRALIBES) -ltermcap -lposix -lUTIL
  50.   
  51.   OFILES=        attach.o ansi.o basic.o bind.o browse.o buffer.o \
  52.           composer.o display.o \
  53.           file.o fileio.o line.o osdep.o \
  54.           pico.o random.o region.o search.o \
  55.           spell.o tcap.o window.o word.o
  56. *** /usr/local/tmp/PINE/pine3.95/./pine/mailindx.c    Thu Jul 11 18:48:37 1996
  57. --- ./pine/mailindx.c    Tue Aug  6 11:11:43 1996
  58. ***************
  59. *** 2055,2066 ****
  60. --- 2055,2070 ----
  61.           switch(cdesc[i].ctype){
  62.             case iStatus:
  63.           to_us = (cache->flagged) ? '*' : ' ';
  64.           for(addr = envelope->to; addr && to_us == ' '; addr=addr->next)
  65.             if(address_is_us(addr, ps_global))
  66.               to_us = '+';
  67. +     /* MERM 8/6/96 */    
  68. +                 for(addr = envelope->cc; addr && to_us == ' '; addr=addr->next)
  69. +           if(address_is_us(addr, ps_global))
  70. +             to_us = '-';
  71.   
  72.   #ifdef    LATER
  73.       if(to_us == ' '){                /* look for reset-to */
  74.       char    *fields[2], *resent, *p;
  75.       ADDRESS *resent_addr = NULL;
  76.   
  77. ***************
  78. *** 2093,2104 ****
  79. --- 2097,2112 ----
  80.              {char new, answered, deleted, flagged;
  81.   
  82.           to_us = ' ';
  83.           for(addr = envelope->to; addr && to_us == ' '; addr=addr->next)
  84.             if(address_is_us(addr, ps_global))
  85.               to_us = '+';
  86. +          /* MERM 8/6/96 */
  87. +         for(addr = envelope->cc; addr && to_us == ' '; addr=addr->next)
  88. +           if(address_is_us(addr, ps_global))
  89. +             to_us = '-';
  90.           new = answered = deleted = flagged = ' ';
  91.           if(cache && !ps_global->nr_mode){
  92.               if(!cache->seen &&
  93.                 (!stream
  94.                  || !IS_NEWS(stream)
  95.                  || (cache->recent&&F_ON(F_FAKE_NEW_IN_NEWS,ps_global))))
  96. *** /usr/local/tmp/PINE/pine3.95/./pine/makefile.aux    Fri Mar 15 02:14:51 1996
  97. --- ./pine/makefile.aux    Tue Aug  6 11:13:17 1996
  98. ***************
  99. *** 42,66 ****
  100.   #   Most commonly fiddled flags for compiler.
  101.   #   Uncomment the setttings desired here
  102.   #
  103.   RM=          rm -f
  104.   LN=          ln -s
  105.   MAKE=        make
  106. ! OPTIMIZE=    # -O
  107.   PROFILE=     # -pg
  108. ! DEBUG=       -g 
  109.   
  110.   IMAPDIR=     ../c-client
  111.   PICODIR=     ../pico
  112.   
  113.   STDLIBES=    -ltermcap -lc -lposix
  114.   LOCLIBES=    $(PICODIR)/libpico.a $(IMAPDIR)/c-client.a
  115. ! LIBES=       $(EXTRALIBES) $(LOCLIBES) $(STDLIBES)
  116.   
  117.   STDCFLAGS=   -Dconst= -DSYSTYPE=\"AUX\" -DMOUSE
  118. ! CFLAGS=      $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS)
  119.   
  120.   obj=    addrbook.o adrbklib.o args.o context.o filter.o \
  121.       folder.o help.o helptext.o imap.o init.o mailcap.o mailcmd.o \
  122.       mailindx.o mailpart.o mailview.o newmail.o other.o pine.o \
  123.       reply.o screen.o send.o signals.o status.o strings.o ttyin.o \
  124.       ttyout.o os.o
  125. --- 42,66 ----
  126.   #   Most commonly fiddled flags for compiler.
  127.   #   Uncomment the setttings desired here
  128.   #
  129.   RM=          rm -f
  130.   LN=          ln -s
  131.   MAKE=        make
  132. ! OPTIMIZE=     -O
  133.   PROFILE=     # -pg
  134. ! DEBUG=       # -g 
  135.   
  136.   IMAPDIR=     ../c-client
  137.   PICODIR=     ../pico
  138.   
  139.   STDLIBES=    -ltermcap -lc -lposix
  140.   LOCLIBES=    $(PICODIR)/libpico.a $(IMAPDIR)/c-client.a
  141. ! LIBES=       $(EXTRALIBES) $(LOCLIBES) $(STDLIBES) -lUTIL
  142.   
  143.   STDCFLAGS=   -Dconst= -DSYSTYPE=\"AUX\" -DMOUSE
  144. ! CFLAGS=      -A4 $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS)
  145.   
  146.   obj=    addrbook.o adrbklib.o args.o context.o filter.o \
  147.       folder.o help.o helptext.o imap.o init.o mailcap.o mailcmd.o \
  148.       mailindx.o mailpart.o mailview.o newmail.o other.o pine.o \
  149.       reply.o screen.o send.o signals.o status.o strings.o ttyin.o \
  150.       ttyout.o os.o
  151. *** /dev/null    Mon Sep 16 18:24:51 1996
  152. --- ./pine/date.c    Tue Aug  6 11:40:07 1996
  153. ***************
  154. *** 0 ****
  155. --- 1,2 ----
  156. + char datestamp[]="Tue Aug 6 11:40:07 EDT 1996";
  157. + char hoststamp[]="tigana";
  158. *** /usr/local/tmp/PINE/pine3.95/./imap/non-ANSI/c-client/Makefile    Fri Jun 21 17:26:12 1996
  159. --- ./imap/non-ANSI/c-client/Makefile    Tue Aug  6 11:15:24 1996
  160. ***************
  161. *** 101,113 ****
  162.           RANLIB=true LDFLAGS="-lsocket -lrpc -lgen -lcrypt -lxenix"
  163.   
  164.   aux:    # A/UX
  165.       $(MAKE) mtest OS=$@ EXTRADRIVERS="$(EXTRADRIVERS)" \
  166.           STDPROTO=bezerkproto MAILSPOOL=/usr/mail \
  167.           ACTIVEFILE=/usr/lib/news/active NEWSSPOOL=/usr/spool/news \
  168. !         CFLAGS="-g -B/usr/lib/big/ -Dconst= -DNFSKLUDGE $(EXTRACFLAGS)" \
  169.           ARRC="ar -rc" RANLIB=true
  170.   
  171.   bsd:    # BSD UNIX
  172.       $(MAKE) mtest OS=$@ EXTRADRIVERS="$(EXTRADRIVERS)" \
  173.           STDPROTO=bezerkproto MAILSPOOL=/usr/spool/mail \
  174.           ACTIVEFILE=/usr/lib/news/active NEWSSPOOL=/usr/spool/news \
  175. --- 101,113 ----
  176.           RANLIB=true LDFLAGS="-lsocket -lrpc -lgen -lcrypt -lxenix"
  177.   
  178.   aux:    # A/UX
  179.       $(MAKE) mtest OS=$@ EXTRADRIVERS="$(EXTRADRIVERS)" \
  180.           STDPROTO=bezerkproto MAILSPOOL=/usr/mail \
  181.           ACTIVEFILE=/usr/lib/news/active NEWSSPOOL=/usr/spool/news \
  182. !         CFLAGS="-A2 -O -B/usr/lib/big/ -Dconst= -DNFSKLUDGE $(EXTRACFLAGS)" \
  183.           ARRC="ar -rc" RANLIB=true
  184.   
  185.   bsd:    # BSD UNIX
  186.       $(MAKE) mtest OS=$@ EXTRADRIVERS="$(EXTRADRIVERS)" \
  187.           STDPROTO=bezerkproto MAILSPOOL=/usr/spool/mail \
  188.           ACTIVEFILE=/usr/lib/news/active NEWSSPOOL=/usr/spool/news \
  189. *** /dev/null    Mon Sep 16 18:24:51 1996
  190. --- ./imap/OSTYPE    Tue Aug  6 11:19:06 1996
  191. ***************
  192. *** 0 ****
  193. --- 1 ----
  194. + aux
  195. *** /dev/null    Mon Sep 16 18:24:51 1996
  196. --- ./.bld.hlp    Mon Sep 16 18:20:20 1996
  197. ***************
  198. *** 0 ****
  199. --- 1,49 ----
  200. + Usage: build <make-options> <target-platform>
  201. + <target-platform> may be one of the following:
  202. +     ult   Works on DECStations with Ultrix 4.1 or 4.2
  203. +     nxt   Works on NeXT 68030's and 68040's running Next Mach 2.0     
  204. +     sun   Works on SPARCs running SunOS 4.1
  205. +     ptx   Works on Sequent Symmetry running Dynix/PTX
  206. +     a32   Works on IBM RS/6000 running AIX 3.2
  207. +     ...   Others are available, see doc/pine-ports
  208. +   clean   Clean up object files and such.
  209. +           Also, a good way to rebuild Pine/Pico from scratch.
  210. + See the document doc/pine-ports for a list of other platforms that
  211. + Pine has been ported to and for details about these and other ports.
  212. + <make-options> are generally not needed. They are flags (anything
  213. + beginning with -) and are passed to make. "-n" is probably the most
  214. + useful, as it tells make to just print out what it is going to do and
  215. + not actually do it.
  216. + To build Pine and Pico the command "build xxx" should work where xxx
  217. + is one of the targets. For example "build ult" to build Pine for Ultrix.
  218. + The executables built by this are:
  219. +  pine   The Pine mailer. Once compiled this should work just fine on
  220. +         your system with no other files than this binary, and no
  221. +         modifications to your system. Optionally you may create two
  222. +         configuration files, /usr/local/lib/pine.conf and 
  223. +         /usr/local/lib/pine.info. See the documentation for details.
  224. +  
  225. +  pico   The standalone editor similar to the Pine message composer.
  226. +         This is a very simple straight forward text editor.
  227. +  
  228. +  pilot  The standalone file system navigator.
  229. +  
  230. +  imapd  The IMAP daemon. If you want to run Pine in client/server mode,
  231. +         this is the daemon to run on the server. Installing this
  232. +         requires system privileges and modifications to /etc/services.
  233. +         See doc/tech-notes for more details.
  234. +  
  235. +  mtest  The test IMAP client, an absolutely minimal mail client, useful
  236. +         for debugging.
  237. + In general you should be able to just copy the Pine and Pico binaries
  238. + to the place you keep your other local binaries. /usr/local/bin is a
  239. + likely place.
  240. +   
  241.