pkgsrc-ng/www/spdylay/patches/patch-src_shrpx.cc
2016-01-21 23:41:46 +01:00

16 lines
337 B
C++

$NetBSD: patch-src_shrpx.cc,v 1.1 2015/06/03 11:00:15 fhajny Exp $
Fixes SSIZE_MAX not declared.
--- src/shrpx.cc.orig 2015-03-12 15:39:31.000000000 +0000
+++ src/shrpx.cc
@@ -36,7 +36,7 @@
#include <getopt.h>
#include <syslog.h>
-#include <limits>
+#include <limits.h>
#include <cstdlib>
#include <iostream>
#include <fstream>