diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | WWW/Library/Implementation/makefile.in | 75 | ||||
-rw-r--r-- | userdefs.h | 4 |
3 files changed, 79 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES index 71608206..3e6588fe 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Changes since Lynx 2.8 release =============================================================================== +1999-04-23 (2.8.2dev.24) +* added overlooked WWW/Library/Implementation/makefile.in -TD 1999-04-23 (2.8.2dev.23) * add/use new function LYSafeGets to replace reads into fixed-size buffers -TD * change xxxx_URL_TYPE definitions in LYUtils.h to a enum -TD diff --git a/WWW/Library/Implementation/makefile.in b/WWW/Library/Implementation/makefile.in new file mode 100644 index 00000000..fe4c0eed --- /dev/null +++ b/WWW/Library/Implementation/makefile.in @@ -0,0 +1,75 @@ +# Make WWW under unix for a.n.other unix system (bsd) +# Use this as a template + +# For W3 distribution, machine type for subdirectories +WWW_MACH = Implementation +WWWINC = $(top_srcdir)/WWW/Library/Implementation + +# The ASIS repository's name for the machine we are on +ASIS_MACH = hardware/os + +ECHO = @DONT_ECHO_CC@ +LFLAGS = + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +top_srcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = $(srcdir) + +LYFLAGS = # FIXME: set in parent makefile + +CC = @CC@ +DEFS = @DEFS@ +CPPFLAGS = @CPPFLAGS@ +CPPOPTS = $(DEFS) $(CPPFLAGS) $(LYFLAGS) \ + -I../../.. \ + -I../../../src \ + -I../../../intl \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/intl \ + -I$(WWWINC) +LY_CFLAGS = @CFLAGS@ +CFLAGS = $(CPPOPTS) $(LY_CFLAGS) +LINT = @LINT@ + +# Directory for installed binary: +BINDIR = @bindir@ + +# Where is the W3 object library to be installed (not normally done)? +LIBDIR = $(WWWINC) + +#_________________ OK if normal W3 distribution +# Where is the WWW source root? +WWW = $(top_srcdir)/WWW + +# Where should temporary (object) files go? +WTMP = ../.. + +@make_include_left@$(WWW)/Library/Implementation/Version.make@make_include_right@ +@make_include_left@$(WWW)/Library/Implementation/CommonMakefile@make_include_right@ + +# Override values set in CommonMakefile + +RANLIB = @RANLIB@ + +all : $(LOB)/libwww.a + +lint: + $(LINT) $(LINTOPTS) $(CPPOPTS) $(srcdir)/../Implementation/*.c > ../../../lint.libwww + +.SUFFIXES: .i .h .html + +.c.o: +@RULE_CC@ + @ECHO_CC@$(CC) $(CPPOPTS) $(CFLAGS) -c $(srcdir)/$*.c + +.c.i: +@RULE_CC@ + @ECHO_CC@$(CPP) -C $(CPPOPTS) $(srcdir)/$*.c >$@ + +depend : + makedepend -fmakefile -- $(CFLAGS) -- $(CFILES) + +# DO NOT DELETE THIS LINE -- make depend depends on it. diff --git a/userdefs.h b/userdefs.h index a6807e9f..dc4a74e5 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1225,12 +1225,12 @@ * the version definition with the Project Version on checkout. Just * ignore it. - kw */ /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */ -#define LYNX_VERSION "2.8.2dev.23" +#define LYNX_VERSION "2.8.2dev.24" #define LYNX_WWW_HOME "http://lynx.browser.org/" #define LYNX_WWW_DIST "http://www.slcc.edu/lynx/current/" #define LYNX_RELEASE FALSE /* $Format: "#define LYNX_DATE \"$ProjectDate$\""$ */ -#define LYNX_DATE "Fri, 23 Apr 1999 08:56:35 -0600" +#define LYNX_DATE "Fri, 23 Apr 1999 10:30:36 -0600" #define LYNX_DATE_OFF 5 /* truncate the automatically-generated date */ #define LYNX_DATE_LEN 11 /* truncate the automatically-generated date */ #define LYNX_RELEASE_DATE "1998" |