summaryrefslogtreecommitdiff
path: root/print/lyx-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'print/lyx-devel/files')
-rw-r--r--print/lyx-devel/files/patch-boost-13422
-rw-r--r--print/lyx-devel/files/patch-src-support-fs_extras.C62
-rw-r--r--print/lyx-devel/files/patch-src-support-tests-convert.C12
-rw-r--r--print/lyx-devel/files/patch-src-support-tests-regfiles-convert7
4 files changed, 0 insertions, 103 deletions
diff --git a/print/lyx-devel/files/patch-boost-134 b/print/lyx-devel/files/patch-boost-134
deleted file mode 100644
index 2bfe3a8f6140..000000000000
--- a/print/lyx-devel/files/patch-boost-134
+++ /dev/null
@@ -1,22 +0,0 @@
---- src/support/path.h Mon Oct 6 11:43:21 2003
-+++ src/support/path.h Fri Jul 6 14:23:38 2007
-@@ -55,5 +55,5 @@
- // we add this macro:
- ///
--#ifndef PATH_C
-+#if 0
- #define Path(x) unnamed_Path;
- #endif
---- src/client/client.C Wed Apr 12 05:37:33 2006
-+++ src/client/client.C Fri Jul 6 15:47:26 2007
-@@ -94,5 +94,10 @@
- for (; beg != end; ++beg) {
- if (prefixIs(beg->leaf(), "lyx_tmpdir" + pid)) {
-+#include <boost/version.hpp>
-+#if BOOST_VERSION < 103400
- fs::path lyxsocket = *beg / "lyxsocket";
-+#else
-+ fs::path lyxsocket = beg->path() / "lyxsocket";
-+#endif
- if (fs::exists(lyxsocket)) {
- dirlist.push_back(lyxsocket);
diff --git a/print/lyx-devel/files/patch-src-support-fs_extras.C b/print/lyx-devel/files/patch-src-support-fs_extras.C
deleted file mode 100644
index a109e06f5b87..000000000000
--- a/print/lyx-devel/files/patch-src-support-fs_extras.C
+++ /dev/null
@@ -1,62 +0,0 @@
---- src/support/fs_extras.C.orig 2005-05-07 18:31:16.000000000 +0400
-+++ src/support/fs_extras.C 2009-03-23 18:01:11.000000000 +0300
-@@ -93,13 +93,15 @@
- {
-
- #ifdef BOOST_POSIX
-+#include <boost/version.hpp>
- int const infile = ::open(source.string().c_str(), O_RDONLY);
- if (infile == -1) {
- boost::throw_exception(
-- filesystem_error(
-+ basic_filesystem_error<path>(
- "boost::filesystem::copy_file",
- source, target,
-- fs::detail::system_error_code()));
-+ boost::system::error_code(errno, boost::system::get_system_category()))
-+ );
- }
-
- struct stat source_stat;
-@@ -107,10 +109,11 @@
- if (ret == -1) {
- ::close(infile);
- boost::throw_exception(
-- filesystem_error(
-+ basic_filesystem_error<path>(
- "boost::filesystem::copy_file",
- source, target,
-- fs::detail::system_error_code()));
-+ boost::system::error_code(errno, boost::system::get_system_category()))
-+ );
- }
-
- int const flags = O_WRONLY | O_CREAT | (noclobber ? O_EXCL : O_TRUNC);
-@@ -119,10 +122,11 @@
- if (outfile == -1) {
- ::close(infile);
- boost::throw_exception(
-- filesystem_error(
-+ basic_filesystem_error<path>(
- "boost::filesystem::copy_file",
- source, target,
-- fs::detail::system_error_code()));
-+ boost::system::error_code(errno, boost::system::get_system_category()))
-+ );
- }
-
- std::size_t const buf_sz = 32768;
-@@ -149,10 +153,11 @@
-
- if (in == -1 || out == -1)
- boost::throw_exception(
-- filesystem_error(
-+ basic_filesystem_error<path>(
- "boost::filesystem::copy_file",
- source, target,
-- fs::detail::system_error_code()));
-+ boost::system::error_code(errno, boost::system::get_system_category()))
-+ );
- #endif
- #ifdef BOOST_WINDOWS
- if (::CopyFile(source.string().c_str(), target.string().c_str(), noclobber) == 0) {
diff --git a/print/lyx-devel/files/patch-src-support-tests-convert.C b/print/lyx-devel/files/patch-src-support-tests-convert.C
deleted file mode 100644
index ca9a46941ba8..000000000000
--- a/print/lyx-devel/files/patch-src-support-tests-convert.C
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/support/tests/convert.C.orig 2005-01-28 00:05:44.000000000 +0300
-+++ src/support/tests/convert.C 2009-03-25 06:33:54.000000000 +0300
-@@ -74,8 +74,7 @@
- << convert<string>(false) << '\n'
-
- << convert<string>('a') << '\n'
-- << convert<string>(1.0) << '\n'
-- << convert<string>(1.1) << endl;
-+ << convert<string>(1.0) << endl;
- }
-
- int main()
diff --git a/print/lyx-devel/files/patch-src-support-tests-regfiles-convert b/print/lyx-devel/files/patch-src-support-tests-regfiles-convert
deleted file mode 100644
index a63e24103730..000000000000
--- a/print/lyx-devel/files/patch-src-support-tests-regfiles-convert
+++ /dev/null
@@ -1,7 +0,0 @@
---- src/support/tests/regfiles/convert.orig 2005-01-28 00:05:44.000000000 +0300
-+++ src/support/tests/regfiles/convert 2009-03-25 06:34:11.000000000 +0300
-@@ -46,4 +46,3 @@
- false
- a
- 1
--1.1