diff options
author | 2001-11-15 14:17:03 +0000 | |
---|---|---|
committer | 2001-11-15 14:17:03 +0000 | |
commit | f035d08a7e123eeb7ab4da681233096125aec6c5 (patch) | |
tree | 88a585b0ec8fdef5d0da487234a4e4c7f9514789 /dev-libs/pilot-link/files | |
parent | A struct option patch (hmm do we have a header problem) (diff) | |
download | historical-f035d08a7e123eeb7ab4da681233096125aec6c5.tar.gz historical-f035d08a7e123eeb7ab4da681233096125aec6c5.tar.bz2 historical-f035d08a7e123eeb7ab4da681233096125aec6c5.zip |
Headers now go into /usr/include/libpisock to avoid overwriting glibc's
/usr/inclde/getopt.h
Diffstat (limited to 'dev-libs/pilot-link/files')
-rw-r--r-- | dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r1 | 1 | ||||
-rw-r--r-- | dev-libs/pilot-link/files/pilot-link-0.9.0-gentoo.diff | 49 |
2 files changed, 1 insertions, 49 deletions
diff --git a/dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r1 b/dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r1 new file mode 100644 index 000000000000..6080264f7757 --- /dev/null +++ b/dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r1 @@ -0,0 +1 @@ +MD5 c8e9861317b2acfb1cb363654b309aa6 pilot-link-0.9.6.tar.gz 4403200 diff --git a/dev-libs/pilot-link/files/pilot-link-0.9.0-gentoo.diff b/dev-libs/pilot-link/files/pilot-link-0.9.0-gentoo.diff deleted file mode 100644 index 47f81689b1b3..000000000000 --- a/dev-libs/pilot-link/files/pilot-link-0.9.0-gentoo.diff +++ /dev/null @@ -1,49 +0,0 @@ ---- pilot-link.0.9.0/include/pi-appinfo.hxx~ Fri May 8 02:00:59 1998 -+++ pilot-link.0.9.0/include/pi-appinfo.hxx Thu Jun 7 23:49:40 2001 -@@ -5,7 +5,7 @@ - - #include "pi-macros.h" - --const BASE_APP_INFO_SIZE = 278; // All apps take up 278 bytes of the same stuff -+const int BASE_APP_INFO_SIZE = 278; // All apps take up 278 bytes of the same stuff - - typedef char category_t[16][16]; - typedef const char *const charConst_t; ---- pilot-link.0.9.0/include/pi-dlp.hxx.orig Fri Jun 8 00:11:03 2001 -+++ pilot-link.0.9.0/include/pi-dlp.hxx Fri Jun 8 00:14:24 2001 -@@ -38,7 +38,7 @@ - int findDBInfo(const int cardno, const int start, - strConst_t dbname, const unsigned long type, - const unsigned long creator, struct DBInfo *info) const { -- return dlp_FindDBInfo(_sd, cardno, start, dbname, type, creator, -+ return dlp_FindDBInfo(_sd, cardno, start,(char *) dbname, type, creator, - info); - } - -@@ -50,7 +50,7 @@ - int openDB(const int cardno, const int mode, strConst_t name, - int *db) const { - -- return dlp_OpenDB(_sd, cardno, mode, name, db); -+ return dlp_OpenDB(_sd, cardno, mode,(char *) name, db); - } - - // Close an opened database using the handle returned by openDB -@@ -81,7 +81,7 @@ - * calling endOfSync, but it's not required - */ - int addSyncLogEntry(strConst_t entry) const { -- return dlp_AddSyncLogEntry(_sd, entry); -+ return dlp_AddSyncLogEntry(_sd,(char *) entry); - } - - /* -@@ -160,7 +160,7 @@ - int writeRecord(const int handle, const int flags, const recordid_t recID, - const int catID, const void *data, const int length, - recordid_t *newID) const { -- return dlp_WriteRecord(_sd, handle, flags, recID, catID, data, -+ return dlp_WriteRecord(_sd, handle, flags, recID, catID,(void *) data, - length, newID); - } - |