diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-03-20 06:33:01 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-03-20 06:33:01 +0000 |
commit | 54975cd08c68b62b6b079b6c30c7868ffd7db5a8 (patch) | |
tree | 26ee11762268f4c16b74fc0b9210b6c16cbc941b /graphics/pfstools/files/patch-config.h.in | |
parent | Fix 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-config.h.in')
-rw-r--r-- | graphics/pfstools/files/patch-config.h.in | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/graphics/pfstools/files/patch-config.h.in b/graphics/pfstools/files/patch-config.h.in deleted file mode 100644 index c8fcc2950043..000000000000 --- a/graphics/pfstools/files/patch-config.h.in +++ /dev/null @@ -1,19 +0,0 @@ ---- config.h.in.orig 2011-10-27 08:40:42 UTC -+++ config.h.in -@@ -99,13 +99,13 @@ - - /* Output stream for debug messages. */ - #ifdef DEBUG --#define DEBUG_STR cerr -+#define DEBUG_STR std::cerr - #else --#define DEBUG_STR if(1); else cerr -+#define DEBUG_STR if(1); else std::cerr - #endif - /* Output stream for verbose messages */ - #define VERBOSE_STR if(verbose) std::cerr << PROG_NAME << ": " - - - /* On some systems iostream, string etc are in 'std' namespace */ --using namespace std; -+//using namespace std; |