aboutsummaryrefslogtreecommitdiffstats
path: root/packages/rsync
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2005-07-29 09:12:50 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-07-29 09:12:50 +0000
commitc27bc8c855879c45742546c7f038458e1ef2f817 (patch)
tree423a6284d4b078966d13e100b2031e3b7777fbfa /packages/rsync
parentd84b40f1ad05714bdb101e729e883a833580cc73 (diff)
downloadopenembedded-c27bc8c855879c45742546c7f038458e1ef2f817.tar.gz
added ipkg 0.99.152
cleaned ipkg subdir (one copy of terse.patch is enough)
Diffstat (limited to 'packages/rsync')
-rw-r--r--packages/rsync/rsync-2.6.3/.mtn2git_empty0
-rw-r--r--packages/rsync/rsync-2.6.3/fixedwidthtypes.patch35
2 files changed, 0 insertions, 35 deletions
diff --git a/packages/rsync/rsync-2.6.3/.mtn2git_empty b/packages/rsync/rsync-2.6.3/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/rsync/rsync-2.6.3/.mtn2git_empty
+++ /dev/null
diff --git a/packages/rsync/rsync-2.6.3/fixedwidthtypes.patch b/packages/rsync/rsync-2.6.3/fixedwidthtypes.patch
deleted file mode 100644
index 9f7d3c804d..0000000000
--- a/packages/rsync/rsync-2.6.3/fixedwidthtypes.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- rsync-2.6.2/configure.in 2004-04-30 14:02:43.000000000 -0400
-+++ rsync-2.6.2/configure.in 2004-05-22 13:09:42.000000000 -0400
-@@ -307,6 +307,8 @@
- AC_CHECK_MEMBERS([struct stat.st_rdev])
-
- AC_CHECK_TYPE([ino_t], [unsigned])
-+AC_CHECK_TYPES([int64_t])
-+AC_CHECK_TYPES([uint64_t])
- TYPE_SOCKLEN_T
-
- AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
---- rsync-2.6.2/rsync.h 2004-04-26 21:36:16.000000000 -0400
-+++ rsync-2.6.2/rsync.h 2004-05-22 13:06:16.000000000 -0400
-@@ -298,7 +298,9 @@
- #define STRUCT_STAT struct stat
- #endif
-
--#if HAVE_OFF64_T
-+#if defined(HAVE_INT64_T)
-+#define int64 int64_t
-+#elif HAVE_OFF64_T
- #define int64 off64_t
- #elif (SIZEOF_LONG == 8)
- #define int64 long
-@@ -312,7 +314,9 @@
- #define NO_INT64
- #endif
-
--#if (SIZEOF_LONG == 8)
-+#if defined(HAVE_UINT64_T)
-+#define uint64 uint64_t
-+#elif (SIZEOF_LONG == 8)
- #define uint64 unsigned long
- #elif (SIZEOF_INT == 8)
- #define uint64 unsigned int