1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/www/wwwoffle/files/patch-src__Makefile.in
Pawel Pekala 8f5bd56efd - Update to version 2.9j [1]
- Add LICENSE_FILE
- Configure script is generated by GNU tools
- Use @sample for configuration file instead of
  deprecated @unexec, remove part of pkg-message
  about copying config file, it's done automatically now
- Regenerate patches with make makepatch

Version 2.9j of WWWOFFLE released : Sat 23 Mar 2016
---------------------------------------------------
Bug Fixes
 Fix to remove compilation warnings for [gs]etres[ug]id() functions.
 Don't delete newlines from within quoted strings when modifying HTML.
 Accept 'Transfer-Encoding: Chunked' instead of '... chunked'.
 Increase the socket backlog to queue requests better.
 Documentation changes for mailing lists, web-page and e-mail addresses.
 Accept data from servers that use gzip encoding but don't send the tail.
 Improve the error messages for gnutls problems. [*]
 Some gnutls fixes and improvements. [*]
 Fix an error with chunked encoding and compression from slow servers.
 Fix HTML (and CSS) parsing problems related to media types.

Improvements:
 Increase the root certificate and fake certificates to 2048 bits. [*]
 Change the certificate hash function to SHA256 (SHA1 is deprecated). [*]
 Use the SNI TLS extension for incoming and outgoing https connections. [*]

*NOTE* *These only apply if WWWOFFLE is compiled with SSL/https support*

PR:		212831 (based on) [1]
Submitted by:	Jochen Neumeister [1]
2016-10-01 14:28:18 +00:00

38 lines
1.9 KiB
Plaintext

--- src/Makefile.in.orig 2010-12-28 10:04:45 UTC
+++ src/Makefile.in
@@ -140,7 +140,7 @@ WWWOFFLE_OBJ=wwwoffle.o \
document.o html.o css.o xml.o vrml.o javaclass.o \
configrdwr.o configmisc.o configdata.o configfunc.o \
io.o iopriv.o iozlib.o iognutls.o iochunk.o \
- errors.o miscurl.o miscencdec.o headbody.o proto.o certificates.o sockets.o md5.o
+ errors.o miscurl.o miscencdec.o headbody.o proto.o certificates.o sockets.o
wwwoffle : $(WWWOFFLE_OBJ)
$(LINK) $(WWWOFFLE_OBJ) -o $@ $(LIBRARY)
@@ -156,7 +156,7 @@ WWWOFFLED_OBJ=wwwoffled.o wwwoffles.o \
parse.o purge.o refresh.o spool.o \
configrdwr.o configmisc.o configdata.o configfunc.o configedit.o \
io.o iopriv.o iozlib.o iognutls.o iochunk.o \
- errors.o miscurl.o miscencdec.o headbody.o proto.o certificates.o sockets.o md5.o
+ errors.o miscurl.o miscencdec.o headbody.o proto.o certificates.o sockets.o
wwwoffled : $(WWWOFFLED_OBJ)
$(LINK) $(WWWOFFLED_OBJ) -o $@ $(LIBRARY)
@@ -170,7 +170,7 @@ WWWOFFLE_TOOLS_OBJ=wwwoffle-tools.o \
parse.o \
configrdwr.o configmisc.o configdata.o configfunc.o \
io.o iopriv.o iozlib.o iognutls.o iochunk.o \
- errors.o miscurl.o miscencdec.o headbody.o proto.o certificates.o sockets.o md5.o
+ errors.o miscurl.o miscencdec.o headbody.o proto.o certificates.o sockets.o
wwwoffle-tools : $(WWWOFFLE_TOOLS_OBJ)
$(LINK) $(WWWOFFLE_TOOLS_OBJ) -o $@ $(LIBRARY)
@@ -249,7 +249,6 @@ certificates.o : certificates.c
sockets.o : sockets.c autoconfig.h errors.h sockets.h \
sockets4.c sockets6.c
-md5.o : md5.c md5.h
######## SOURCE FILES ########