diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 01:59:16 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 01:59:16 +0000 |
commit | 69ea23ed7175d5c34a21bba1ef9262f311c69284 (patch) | |
tree | e2e604e83659be7f58596e80b3cf18e9d7d06dae /net/lambdamoo/files/patch-config.h.in | |
parent | Stage net-mgmt/routers2 and cleanup (diff) |
Rename net/ patch-xy patches to reflect the files they modify.
Approve by: portmgr (not really, but one of these is modifying
an unstaged port)
Notes
Notes:
svn path=/head/; revision=363285
Diffstat (limited to 'net/lambdamoo/files/patch-config.h.in')
-rw-r--r-- | net/lambdamoo/files/patch-config.h.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net/lambdamoo/files/patch-config.h.in b/net/lambdamoo/files/patch-config.h.in new file mode 100644 index 000000000000..5ee90ab4fb9a --- /dev/null +++ b/net/lambdamoo/files/patch-config.h.in @@ -0,0 +1,28 @@ +--- config.h.in.orig Sun Jul 4 16:45:44 1999 ++++ config.h.in Sun Jul 4 16:45:54 1999 +@@ -163,7 +163,7 @@ + * system provides the named functions. + */ + +-#undef HAVE_CRYPT ++/* #undef HAVE_CRYPT */ + #undef HAVE_MATHERR + #undef HAVE_MKFIFO + #undef HAVE_REMOVE +@@ -257,12 +257,16 @@ + #if INT_MAX == 2147483647 + typedef int int32; + typedef unsigned unsigned32; ++# ifndef INT32_MAX + # define INT32_MAX INT_MAX ++# endif + #else + # if LONG_MAX == 2147483647 + typedef long int int32; + typedef unsigned long unsigned32; ++# ifndef INT32_MAX + # define INT32_MAX LONG_MAX ++# endif + # else + # error I cannot figure out how to express a 32-bit integer on your machine. + # endif |