Fri Jan 10 21:11:14 2020 UTC ()
Always use C++11 STL and not TR1 on Unix.


(joerg)
diff -r1.11 -r1.12 pkgsrc/devel/exempi/distinfo
diff -r0 -r1.1 pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h
diff -r0 -r1.1 pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp

cvs diff -r1.11 -r1.12 pkgsrc/devel/exempi/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/exempi/distinfo 2019/06/05 06:57:04 1.11
+++ pkgsrc/devel/exempi/distinfo 2020/01/10 21:11:14 1.12
@@ -1,6 +1,8 @@ @@ -1,6 +1,8 @@
1$NetBSD: distinfo,v 1.11 2019/06/05 06:57:04 nia Exp $ 1$NetBSD: distinfo,v 1.12 2020/01/10 21:11:14 joerg Exp $
2 2
3SHA1 (exempi-2.5.0.tar.bz2) = 2461c1149187350c1b174e23b188e7884a32ec66 3SHA1 (exempi-2.5.0.tar.bz2) = 2461c1149187350c1b174e23b188e7884a32ec66
4RMD160 (exempi-2.5.0.tar.bz2) = e4e1fd4e12f6b1ced36e085f524884be45575aa6 4RMD160 (exempi-2.5.0.tar.bz2) = e4e1fd4e12f6b1ced36e085f524884be45575aa6
5SHA512 (exempi-2.5.0.tar.bz2) = 1d042ffe3c3daadf937c4938e7892d52c4835275065e159f7991ddc9f533424fb6cd7d607600c3381440020db9dfa06af5ae15168d7a8012358fa5c8ac453bba 5SHA512 (exempi-2.5.0.tar.bz2) = 1d042ffe3c3daadf937c4938e7892d52c4835275065e159f7991ddc9f533424fb6cd7d607600c3381440020db9dfa06af5ae15168d7a8012358fa5c8ac453bba
6Size (exempi-2.5.0.tar.bz2) = 3658187 bytes 6Size (exempi-2.5.0.tar.bz2) = 3658187 bytes
 7SHA1 (patch-XMPFiles_source_PluginHandler_ModuleUtils.h) = 5147d13838836e0a604bea525a5c0e6b036b3547
 8SHA1 (patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp) = e78f1360c1619b7a595eeefcb87255556e6f036a

File Added: pkgsrc/devel/exempi/patches/Attic/patch-XMPFiles_source_PluginHandler_ModuleUtils.h
$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

File Added: pkgsrc/devel/exempi/patches/Attic/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp
$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 );
 /** ************************************************************************************************************************