From 0485ee0e2d74cdfa2d8ed96d7320ce4b210afbba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Fri, 1 Sep 2017 16:58:04 +0200 Subject: [PATCH] enigma: fix build --- srcpkgs/enigma/patches/fix-ifstream_test.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 srcpkgs/enigma/patches/fix-ifstream_test.patch diff --git a/srcpkgs/enigma/patches/fix-ifstream_test.patch b/srcpkgs/enigma/patches/fix-ifstream_test.patch new file mode 100644 index 00000000000..57c10d75b5c --- /dev/null +++ b/srcpkgs/enigma/patches/fix-ifstream_test.patch @@ -0,0 +1,11 @@ +--- src/lev/Proxy.cc 2014-12-19 22:24:37.000000000 +0100 ++++ src/lev/Proxy.cc 2017-09-01 16:55:50.009413332 +0200 +@@ -933,7 +933,7 @@ + } else if (haveLocalCopy) { + // plain file + basic_ifstream ifs(absExtPath.c_str(), ios::binary | ios::in); +- if (ifs != NULL) ++ if (ifs) + Readfile(ifs, extCode); + else + haveLocalCopy = false;