summaryrefslogtreecommitdiff
path: root/graphics/pfstools/files/patch-src-pfs-pfs.cpp
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-03-20 06:33:01 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-03-20 06:33:01 +0000
commit54975cd08c68b62b6b079b6c30c7868ffd7db5a8 (patch)
tree26ee11762268f4c16b74fc0b9210b6c16cbc941b /graphics/pfstools/files/patch-src-pfs-pfs.cpp
parentFix build with clang 6 (diff)
graphics/pfstools: Update to 2.1.0
Port changes: * Change to DISTVERSION * Add LICENSE_FILE * Change to cmake (from gmake) * Update of all options accordingly PR: 225537 Submitted by: Iouri V. Ivliev <fbsd@any.com.ru> (maintainer)
Diffstat (limited to 'graphics/pfstools/files/patch-src-pfs-pfs.cpp')
-rw-r--r--graphics/pfstools/files/patch-src-pfs-pfs.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/graphics/pfstools/files/patch-src-pfs-pfs.cpp b/graphics/pfstools/files/patch-src-pfs-pfs.cpp
deleted file mode 100644
index 4187db3924ba..000000000000
--- a/graphics/pfstools/files/patch-src-pfs-pfs.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/pfs/pfs.cpp.orig 2010-07-14 09:44:27 UTC
-+++ src/pfs/pfs.cpp
-@@ -71,7 +71,7 @@ const char *PFSFILEID="PFS1\x0a";
- // TagContainer implementation
- //------------------------------------------------------------------------------
-
--typedef list<string> TagList;
-+typedef std::list<string> TagList;
-
- class TagIteratorImpl: public TagIterator
- {
-@@ -570,7 +570,7 @@ public:
-
- //Read channel IDs and tags
- // FrameImpl::ChannelID *channelID = new FrameImpl::ChannelID[channelCount];
-- list<ChannelImpl*> orderedChannel;
-+ std::list<ChannelImpl*> orderedChannel;
- for( int i = 0; i < channelCount; i++ ) {
- char channelName[MAX_CHANNEL_NAME+1], *rs;
- rs = fgets( channelName, MAX_CHANNEL_NAME, inputStream );
-@@ -592,7 +592,7 @@ public:
-
-
- //Read channels
-- list<ChannelImpl*>::iterator it;
-+ std::list<ChannelImpl*>::iterator it;
- for( it = orderedChannel.begin(); it != orderedChannel.end(); it++ ) {
- ChannelImpl *ch = *it;
- int size = frame->getWidth()*frame->getHeight();