diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-01-12 18:15:26 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-01-12 18:15:26 +0000 |
commit | 722b4175e1b07993ed93713d8cd1f7e4885f1aa2 (patch) | |
tree | 73d0780c7ac78ce7b052fa5c6c75679bbff81960 /app-pda/pilot-link/files | |
parent | Stable on amd64 wrt bug #350079 (diff) | |
download | gentoo-2-722b4175e1b07993ed93713d8cd1f7e4885f1aa2.tar.gz gentoo-2-722b4175e1b07993ed93713d8cd1f7e4885f1aa2.tar.bz2 gentoo-2-722b4175e1b07993ed93713d8cd1f7e4885f1aa2.zip |
Delete older ebuild.
(Portage version: 2.2.0_alpha14_p4/cvs/Linux x86_64)
Diffstat (limited to 'app-pda/pilot-link/files')
3 files changed, 0 insertions, 89 deletions
diff --git a/app-pda/pilot-link/files/pilot-link-0.12.2-readline.patch b/app-pda/pilot-link/files/pilot-link-0.12.2-readline.patch deleted file mode 100644 index 5bfe01c5d1fa..000000000000 --- a/app-pda/pilot-link/files/pilot-link-0.12.2-readline.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -Naur pilot-link-0.12.2.orig/m4/vl_lib_readline.m4 pilot-link-0.12.2/m4/vl_lib_readline.m4 ---- pilot-link-0.12.2.orig/m4/vl_lib_readline.m4 2005-06-03 20:39:24.000000000 +0200 -+++ pilot-link-0.12.2/m4/vl_lib_readline.m4 2007-08-25 15:23:58.000000000 +0200 -@@ -89,23 +89,23 @@ - fi - LIBS="$ORIG_LIBS" - ]) -- fi - -- if test "$vl_cv_lib_readline" != "no"; then -- msg_readline="yes" -- RL_LIBS="$vl_cv_lib_readline" -- AC_DEFINE(HAVE_LIBREADLINE, 1, -- [Define if you have a readline compatible library]) -- AC_CHECK_HEADERS(readline.h readline/readline.h) -- AC_CACHE_CHECK([whether readline supports history], -- vl_cv_lib_readline_history, [ -- vl_cv_lib_readline_history="no" -- AC_TRY_LINK_FUNC(add_history, vl_cv_lib_readline_history="yes") -- ]) -- if test "$vl_cv_lib_readline_history" = "yes"; then -- AC_DEFINE(HAVE_READLINE_HISTORY, 1, -- [Define if your readline library has \`add_history']) -- AC_CHECK_HEADERS(history.h readline/history.h) -+ if test "$vl_cv_lib_readline" != "no"; then -+ msg_readline="yes" -+ RL_LIBS="$vl_cv_lib_readline" -+ AC_DEFINE(HAVE_LIBREADLINE, 1, -+ [Define if you have a readline compatible library]) -+ AC_CHECK_HEADERS(readline.h readline/readline.h) -+ AC_CACHE_CHECK([whether readline supports history], -+ vl_cv_lib_readline_history, [ -+ vl_cv_lib_readline_history="no" -+ AC_TRY_LINK_FUNC(add_history, vl_cv_lib_readline_history="yes") -+ ]) -+ if test "$vl_cv_lib_readline_history" = "yes"; then -+ AC_DEFINE(HAVE_READLINE_HISTORY, 1, -+ [Define if your readline library has \`add_history']) -+ AC_CHECK_HEADERS(history.h readline/history.h) -+ fi - fi - fi - AC_SUBST(RL_LIBS) diff --git a/app-pda/pilot-link/files/pilot-link-0.12.3-glibc-open.patch b/app-pda/pilot-link/files/pilot-link-0.12.3-glibc-open.patch deleted file mode 100644 index 661d4edd3935..000000000000 --- a/app-pda/pilot-link/files/pilot-link-0.12.3-glibc-open.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -urN ./pilot-link-0.12.3.orig/src/pilot-schlep.c ./pilot-link-0.12.3/src/pilot-schlep.c ---- ./pilot-link-0.12.3.orig/src/pilot-schlep.c 2006-10-12 16:21:21.000000000 +0200 -+++ ./pilot-link-0.12.3/src/pilot-schlep.c 2009-02-16 16:09:25.321851803 +0100 -@@ -21,6 +21,9 @@ - * - */ - -+#include <sys/types.h> -+#include <sys/stat.h> -+#include <fcntl.h> - #include <stdio.h> - - #include "pi-source.h" -@@ -38,7 +38,7 @@ - fd; - pi_buffer_t *buffer; - -- fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC); -+ fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); - if (fd < 0) - return -1; - diff --git a/app-pda/pilot-link/files/pilot-link-0.12.3-int_types.patch b/app-pda/pilot-link/files/pilot-link-0.12.3-int_types.patch deleted file mode 100644 index 23fcbc33456f..000000000000 --- a/app-pda/pilot-link/files/pilot-link-0.12.3-int_types.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- pilot-link-0.12.3/include/pi-md5.h 2006-10-17 15:24:07.000000000 +0200 -+++ pilot-link/include/pi-md5.h 2007-12-18 04:03:09.000000000 +0100 -@@ -13,8 +13,20 @@ - #ifndef MD5_H - #define MD5_H - -+#include "config.h" -+#if HAVE_INTTYPES_H -+#include <inttypes.h> -+#endif -+#if HAVE_STDINT_H -+#include <stdint.h> -+#endif -+#ifdef HAVE_INTTYPES_H || HAVE_STDINT_H -+#define UINT8 uint8_t -+#define UINT32 uint32_t -+#else - #define UINT8 unsigned char --#define UINT32 unsigned long -+#define UINT32 unsigned int -+#endif - - struct MD5Context { - UINT32 buf[4]; |