summaryrefslogtreecommitdiff
path: root/devel/mq4cpp/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/mq4cpp/files')
-rw-r--r--devel/mq4cpp/files/patch-Makefile.in11
-rw-r--r--devel/mq4cpp/files/patch-include_Socket.h11
-rw-r--r--devel/mq4cpp/files/patch-include_Trace.h11
3 files changed, 0 insertions, 33 deletions
diff --git a/devel/mq4cpp/files/patch-Makefile.in b/devel/mq4cpp/files/patch-Makefile.in
deleted file mode 100644
index 0713fbf938b0..000000000000
--- a/devel/mq4cpp/files/patch-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Thu Jan 4 15:55:59 2007
-+++ Makefile.in Thu Jan 4 15:56:07 2007
-@@ -213,7 +213,7 @@
- pkgconfigdir = $(prefix)/libdata/pkgconfig
- pkgconfig_DATA = $(GENERIC_LIBRARY_NAME).pc
- doc_DATA = AUTHORS ChangeLog COPYING INSTALL NEWS README LICENSE TODO
--docdir = $(datadir)/doc
-+docdir = $(datadir)/doc/mq4cpp
- all: config.h
- $(MAKE) $(AM_MAKEFLAGS) all-recursive
-
diff --git a/devel/mq4cpp/files/patch-include_Socket.h b/devel/mq4cpp/files/patch-include_Socket.h
deleted file mode 100644
index 233edf768f33..000000000000
--- a/devel/mq4cpp/files/patch-include_Socket.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- include/Socket.h.orig 2013-09-14 18:46:04.000000000 +0800
-+++ include/Socket.h 2013-09-14 18:46:17.000000000 +0800
-@@ -30,6 +30,8 @@
- #else
- #include <netinet/in.h>
- #include <sys/socket.h>
-+#include <sys/select.h>
-+#include <unistd.h>
- typedef int SOCKET;
- #endif
-
diff --git a/devel/mq4cpp/files/patch-include_Trace.h b/devel/mq4cpp/files/patch-include_Trace.h
deleted file mode 100644
index b28477600f8a..000000000000
--- a/devel/mq4cpp/files/patch-include_Trace.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- include/Trace.h.orig 2013-09-14 18:46:21.000000000 +0800
-+++ include/Trace.h 2013-09-14 18:46:41.000000000 +0800
-@@ -92,7 +92,7 @@ class DebugStream : public ostream
- }
- #else
- #define TRACE(a) \
-- cout << __FILE__ << "(" << __LINE__ << ") #" << (int)pthread_self() << ": " << a << endl;
-+ cout << __FILE__ << "(" << __LINE__ << ") #" << pthread_self() << ": " << a << endl;
- #endif
- #else
- #define TRACE(a) ;