diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /rsync/rsync-2.6.2 | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'rsync/rsync-2.6.2')
-rw-r--r-- | rsync/rsync-2.6.2/fixedwidthtypes.patch | 35 | ||||
-rw-r--r-- | rsync/rsync-2.6.2/gettimeofday.patch | 18 |
2 files changed, 0 insertions, 53 deletions
diff --git a/rsync/rsync-2.6.2/fixedwidthtypes.patch b/rsync/rsync-2.6.2/fixedwidthtypes.patch deleted file mode 100644 index 9f7d3c804d..0000000000 --- a/rsync/rsync-2.6.2/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 diff --git a/rsync/rsync-2.6.2/gettimeofday.patch b/rsync/rsync-2.6.2/gettimeofday.patch deleted file mode 100644 index 9248866c56..0000000000 --- a/rsync/rsync-2.6.2/gettimeofday.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- rsync-2.6.2/configure.in 2004-07-09 14:32:16.000000000 +0200 -+++ rsync-2.6.2/configure.in 2004-07-09 14:31:26.000000000 +0200 -@@ -539,11 +539,12 @@ - fi - - AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[ --AC_TRY_RUN([ -+AC_TRY_COMPILE([ - #include <sys/time.h> - #include <unistd.h> --main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}], -- rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)]) -+], -+[struct timeval tv; exit(gettimeofday(&tv, NULL));], -+ rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no)]) - if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then - AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ]) - fi |