aboutsummaryrefslogtreecommitdiff
path: root/net/twinkle/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/twinkle/files')
-rw-r--r--net/twinkle/files/patch-src-call_script.cpp33
-rw-r--r--net/twinkle/files/patch-src-parser_parser.yxx11
-rw-r--r--net/twinkle/files/patch-src-threads_mutex.cpp11
-rw-r--r--net/twinkle/files/patch-src_address_book.h12
-rw-r--r--net/twinkle/files/pkg-message.in15
5 files changed, 0 insertions, 82 deletions
diff --git a/net/twinkle/files/patch-src-call_script.cpp b/net/twinkle/files/patch-src-call_script.cpp
deleted file mode 100644
index cbbdfe1cffbb..000000000000
--- a/net/twinkle/files/patch-src-call_script.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/call_script.cpp Wed Jul 12 13:20:34 2006
-+++ src/call_script.cpp Wed Jul 12 13:23:34 2006
-@@ -46,6 +46,8 @@
- #define SCR_TRIGGER_LOCAL_RELEASE "local_release"
- #define SCR_TRIGGER_REMOTE_RELEASE "remote_release"
-
-+extern char **environ;
-+
- /////////////////////////
- // class t_script_result
- /////////////////////////
-@@ -324,14 +326,16 @@
- }
-
- char *line_buf = NULL;
-- size_t line_buf_len = 0;
-- ssize_t num_read;
-+ char *num_read;
-+ int line_buf_len;
-+ int count=0;
-
- // Read and parse script results.
-- while ((num_read = getline(&line_buf, &line_buf_len, fp_result)) != -1) {
-+ while ((num_read = fgets(line_buf, sizeof(line_buf), fp_result)) != NULL) {
-+ count++;
- // Strip newline if present
-- if (line_buf[num_read - 1] == '\n') {
-- line_buf[num_read - 1] = 0;
-+ if (line_buf[count - 1] == '\n') {
-+ line_buf[count - 1] = 0;
- }
-
- // Convert the read line to a C++ string
diff --git a/net/twinkle/files/patch-src-parser_parser.yxx b/net/twinkle/files/patch-src-parser_parser.yxx
deleted file mode 100644
index e59c7a67aa4d..000000000000
--- a/net/twinkle/files/patch-src-parser_parser.yxx
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/parser/parser.yxx 2007-11-11 13:43:28.000000000 -0500
-+++ src/parser/parser.yxx 2007-11-11 13:44:00.000000000 -0500
-@@ -48,7 +48,7 @@
-
- %union {
- int yyt_int;
-- ulong yyt_ulong;
-+ u_long yyt_ulong;
- float yyt_float;
- string *yyt_str;
- t_parameter *yyt_param;
diff --git a/net/twinkle/files/patch-src-threads_mutex.cpp b/net/twinkle/files/patch-src-threads_mutex.cpp
deleted file mode 100644
index eef9edb7e50f..000000000000
--- a/net/twinkle/files/patch-src-threads_mutex.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/threads/mutex.cpp Sat Apr 22 21:09:20 2006
-+++ src/threads/mutex.cpp Sat Apr 22 21:08:41 2006
-@@ -35,7 +35,7 @@
- pthread_mutexattr_init(&attr);
-
-
-- int ret = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
-+ int ret = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
- if (ret != 0) throw string(
- "t_mutex::t_mutex failed to create a recursive mutex.");
-
diff --git a/net/twinkle/files/patch-src_address_book.h b/net/twinkle/files/patch-src_address_book.h
deleted file mode 100644
index 4e180dd77d96..000000000000
--- a/net/twinkle/files/patch-src_address_book.h
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/address_book.h 2007-11-11 13:35:53.000000000 -0500
-+++ src/address_book.h 2007-11-11 13:36:25.000000000 -0500
-@@ -27,6 +27,9 @@
- #include <string>
- #include <list>
-
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+
- #include "user.h"
- #include "sockets/url.h"
- #include "threads/mutex.h"
diff --git a/net/twinkle/files/pkg-message.in b/net/twinkle/files/pkg-message.in
deleted file mode 100644
index 2c983e8d9ee1..000000000000
--- a/net/twinkle/files/pkg-message.in
+++ /dev/null
@@ -1,15 +0,0 @@
-###############################################################################
-
-Twinkle SIP Softphone was installed
-
-1) If you are using a desktop/window manager different than KDE, you must to
- disable tray icon system. Edit your ~/.twinkle/twinkle.sys file and change
- the following line:
-
- # gui_use_systray=no
-
- It avoids a crash when you run twinkle softphone
-
-2) Enjoy it ;)
-
-###############################################################################