diff options
author | lukem <lukem@pkgsrc.org> | 2007-08-07 03:37:52 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2007-08-07 03:37:52 +0000 |
commit | 38da2c1f8b6bcdc1f4659410b54f0505287583cf (patch) | |
tree | c851db3474a259a52f86698ac2ff0be4d051fe00 /net | |
parent | 477c6bbbca3d72e5b716a85e8208a50beed9cd83 (diff) | |
download | pkgsrc-38da2c1f8b6bcdc1f4659410b54f0505287583cf.tar.gz |
The UINT32_T shouldn't be necessary any more, with the
updated configure.ac in tnftp 20070806.
Diffstat (limited to 'net')
-rw-r--r-- | net/tnftp/files/tnftp.h | 6 | ||||
-rw-r--r-- | net/tnftp/hacks.mk | 11 |
2 files changed, 2 insertions, 15 deletions
diff --git a/net/tnftp/files/tnftp.h b/net/tnftp/files/tnftp.h index cd318d760b4..dae6d35d471 100644 --- a/net/tnftp/files/tnftp.h +++ b/net/tnftp/files/tnftp.h @@ -1,4 +1,4 @@ -/* $NetBSD: tnftp.h,v 1.11 2007/08/07 02:06:56 lukem Exp $ */ +/* $NetBSD: tnftp.h,v 1.12 2007/08/07 03:37:53 lukem Exp $ */ #define FTP_PRODUCT PACKAGE_NAME #define FTP_VERSION PACKAGE_VERSION @@ -217,10 +217,6 @@ typedef unsigned int socklen_t; #endif #endif -#ifdef UINT32_T /* needed for example on IRIX 5 */ -typedef unsigned UINT32_T uint32_t; -#endif - #if HAVE_DECL_AF_INET6 \ && defined(HAVE_STRUCT_SOCKADDR_IN6) \ && HAVE_DECL_NS_IN6ADDRSZ diff --git a/net/tnftp/hacks.mk b/net/tnftp/hacks.mk index 3a3c0ad99a5..5198112d4a4 100644 --- a/net/tnftp/hacks.mk +++ b/net/tnftp/hacks.mk @@ -1,10 +1 @@ -# $NetBSD: hacks.mk,v 1.1 2006/04/10 13:26:15 schwarz Exp $ - -### [ Mon Apr 10 14:23:26 CDT 2006 : schwarz ] -### Define type to use for uint32_t on platforms that do not have it -### (cf. tnftp.h) -### -.if !empty(LOWER_OPSYS:Mirix5*) -PKG_HACKS+= uint32_t -CPPFLAGS+= -DUINT32_T=int -.endif +# $NetBSD: hacks.mk,v 1.2 2007/08/07 03:37:52 lukem Exp $ |