pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/exempi Always use C++11 STL and not TR1 on Unix.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4dd46afb7f11
branches:  trunk
changeset: 407838:4dd46afb7f11
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Fri Jan 10 21:11:14 2020 +0000

description:
Always use C++11 STL and not TR1 on Unix.

diffstat:

 devel/exempi/distinfo                                                         |   4 ++-
 devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h        |  13 ++++++++++
 devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp |  13 ++++++++++
 3 files changed, 29 insertions(+), 1 deletions(-)

diffs (47 lines):

diff -r b1e1a7af179a -r 4dd46afb7f11 devel/exempi/distinfo
--- a/devel/exempi/distinfo     Fri Jan 10 20:27:03 2020 +0000
+++ b/devel/exempi/distinfo     Fri Jan 10 21:11:14 2020 +0000
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.11 2019/06/05 06:57:04 nia Exp $
+$NetBSD: distinfo,v 1.12 2020/01/10 21:11:14 joerg Exp $
 
 SHA1 (exempi-2.5.0.tar.bz2) = 2461c1149187350c1b174e23b188e7884a32ec66
 RMD160 (exempi-2.5.0.tar.bz2) = e4e1fd4e12f6b1ced36e085f524884be45575aa6
 SHA512 (exempi-2.5.0.tar.bz2) = 1d042ffe3c3daadf937c4938e7892d52c4835275065e159f7991ddc9f533424fb6cd7d607600c3381440020db9dfa06af5ae15168d7a8012358fa5c8ac453bba
 Size (exempi-2.5.0.tar.bz2) = 3658187 bytes
+SHA1 (patch-XMPFiles_source_PluginHandler_ModuleUtils.h) = 5147d13838836e0a604bea525a5c0e6b036b3547
+SHA1 (patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp) = e78f1360c1619b7a595eeefcb87255556e6f036a
diff -r b1e1a7af179a -r 4dd46afb7f11 devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h    Fri Jan 10 21:11:14 2020 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-XMPFiles_source_PluginHandler_ModuleUtils.h,v 1.1 2020/01/10 21:11:14 joerg Exp $
+
+--- XMPFiles/source/PluginHandler/ModuleUtils.h.orig   2020-01-09 00:04:52.760646486 +0000
++++ XMPFiles/source/PluginHandler/ModuleUtils.h
+@@ -19,7 +19,7 @@ typedef HMODULE OS_ModuleRef;
+ #include <memory>
+ typedef CFBundleRef OS_ModuleRef;
+ #elif XMP_UNIXBuild
+-#include <tr1/memory>
++#include <memory>
+ typedef void* OS_ModuleRef;
+ #else
+ #error        Unsupported operating system
diff -r b1e1a7af179a -r 4dd46afb7f11 devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp     Fri Jan 10 21:11:14 2020 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp,v 1.1 2020/01/10 21:11:14 joerg Exp $
+
+--- XMPFiles/source/PluginHandler/OS_Utils_Linux.cpp.orig      2020-01-09 00:06:19.570733059 +0000
++++ XMPFiles/source/PluginHandler/OS_Utils_Linux.cpp
+@@ -28,7 +28,7 @@ typedef std::map<OS_ModuleRef, std::stri
+ static ResourceFileToPathMap                                          sMapResourceFileToPath;
+ static XMP_ReadWriteLock                                                      sMapModuleRWLock;
+ 
+-typedef std::tr1::shared_ptr<int>                                     FilePtr;
++typedef std::shared_ptr<int>                                  FilePtr;
+ 
+ static std::string GetModulePath( OS_ModuleRef inOSModule );
+ /** ************************************************************************************************************************



Home | Main Index | Thread Index | Old Index