summaryrefslogtreecommitdiff
path: root/devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2005-01-21 15:36:45 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2005-01-21 15:36:45 +0000
commit7011c19a8c96a2f8fb7c04d61cb28cdc507584a6 (patch)
tree22c0efaf2b6bb5b461389f9bac9542c7e3a5909a /devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp
parentNow buildable on 4.x, still broken on >= 5.x. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_11_0'.release/4.11.0
Diffstat (limited to 'devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp')
-rw-r--r--devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp b/devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp
deleted file mode 100644
index 419b9a202687..000000000000
--- a/devel/upnp104/files/patch-src::genlib::util::gmtdate.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/genlib/util/gmtdate.cpp.orig Fri Jun 15 08:22:16 2001
-+++ src/genlib/util/gmtdate.cpp Sat Aug 3 16:29:39 2002
-@@ -41,7 +41,7 @@
- #include <stdlib.h>
- #include <ctype.h>
- #include <string.h>
--#include <values.h>
-+#include <machine/limits.h>
- #include <genlib/util/gmtdate.h>
- #include <genlib/util/miscexceptions.h>
-
-@@ -254,7 +254,7 @@
-
- val = (int)strtol( str, &endptr, 10 );
-
-- if ( val < 0 || val == MAXINT )
-+ if ( val < 0 || val == INT_MAX )
- {
- return -1;
- }