home *** CD-ROM | disk | FTP | other *** search
/ ftp.mayn.de / ftp.mayn.de-pub.zip / ftp.mayn.de-pub / apple / apple_unix / Web_stuff / lynx2-3.diffs < prev    next >
Text File  |  2017-03-06  |  3KB  |  110 lines

  1. *** /dev/null    Wed Jun  1 09:26:38 1994
  2. --- AUX.README    Wed Jun  1 09:31:44 1994
  3. ***************
  4. *** 0 ****
  5. --- 1,29 ----
  6. + This is a short README file for lynx 2.3 and A/UX... To compile, you need
  7. + 'gcc'.
  8. + Hopefully, you have applied this "patch" in the same directory as the original
  9. + sources for Lynx 2.3. If so, then Makefile and src/LYBookmark.c will have been
  10. + adjusted to compile for A/UX. Also, patch should have created this file,
  11. + AUX.README and the aux.Makefile file.
  12. + Before you can compile lynx, you will need to:
  13. +     $ mkdir WWW/Library/aux
  14. +     $ mv aux.Makefile WWW/Library/aux/Makefile
  15. + To correctly place the WWW Makefile for A/UX.
  16. + At this point, you should be able to:
  17. +     $ make aux3
  18. + for all to proceed.
  19. + Enjoy!
  20. + --
  21. + #include <std/disclaimer.h>
  22. +     Jim Jagielski               |  "It's the end, the end of the 70's,
  23. +     jim@jagubox.gsfc.nasa.gov   |   it's the end, the end of the century."
  24. +     NASA/GSFC, Code 734.4       |                   The Ramones
  25. +     Greenbelt, MD 20771         |
  26. *** /dev/null    Wed Jun  1 09:26:38 1994
  27. --- aux.Makefile    Wed Jun  1 09:32:29 1994
  28. ***************
  29. *** 0 ****
  30. --- 1,30 ----
  31. + #  Make WWW under unix for a.n.other unix system (bsd)
  32. + #   Use this as a template
  33. + # For W3 distribution, machine type for subdirectories
  34. + WWW_MACH = aux
  35. + # The ASIS repository's name for the machine we are on
  36. + ASIS_MACH = generic/aux
  37. + CFLAGS =  -DDEBUG -O2
  38. + LFLAGS = -lbsd
  39. + CC = gcc
  40. + # Directory for installed binary:
  41. + BINDIR = /usr2/bin
  42. + # Where is the W3 object library to be installed (not normally done)?
  43. + LIBDIR = $(WWW)/Library/Implementation/$(WWW_MACH)
  44. + #_________________ OK if normal W3 distribution
  45. + # Where is the WWW source root?
  46. + WWW = ../..
  47. + #  Where should temporary (object) files go?
  48. + WTMP = ../..
  49. + include $(WWW)/Library/Implementation/CommonMakefile
  50. *** OMakefile    Tue May 31 23:14:46 1994
  51. --- Makefile    Tue May 31 23:13:22 1994
  52. ***************
  53. *** 111,116 ****
  54. --- 111,126 ----
  55.           LIBS="-lcurses -ltermcap $(WAISLIB)" \
  56.           WWWLIB="../WWW/Library/unix/libwww.a"
  57.   
  58. + #
  59. + # A/UX 3.1
  60. + #
  61. + aux3:  
  62. +     @echo "You must first compile the WWW library in WWW/Library"
  63. +     cd WWW/Library/aux; make
  64. +     cd src; make all CC="gcc" MCFLAGS="-O2 -DFANCY_CURSES -DUNIX -DAUX3 \
  65. +         -I../$(WWWINC)" LIBS="-lbsd -lcurses -ltermcap $(WAISLIB)" \
  66. +         WWWLIB="../WWW/Library/aux/libwww.a"
  67.   # Tested on C3 series under ConvexOS 10.1, CC V5.0;
  68.   # Should work on other C-series
  69.   convex:
  70. *** src/OLYBookmark.c    Tue May 31 23:14:25 1994
  71. --- src/LYBookmark.c    Tue May 31 23:13:51 1994
  72. ***************
  73. *** 4,10 ****
  74.   #include "LYBookmark.h"
  75.   #include "LYGlobalDefs.h"
  76.   
  77. ! #if defined(VMS) || defined(SCO)
  78.   #include <time.h>
  79.   #else /* UNIX */
  80.   #include <sys/time.h>
  81. --- 4,10 ----
  82.   #include "LYBookmark.h"
  83.   #include "LYGlobalDefs.h"
  84.   
  85. ! #if defined(VMS) || defined(SCO) || defined(AUX3)
  86.   #include <time.h>
  87.   #else /* UNIX */
  88.   #include <sys/time.h>
  89.