aboutsummaryrefslogtreecommitdiffstats
path: root/community/lshw/lshw-gcc43.patch
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2018-09-28 23:19:25 +0200
committerFrancesco Colista <fcolista@alpinelinux.org>2018-10-03 11:49:35 +0000
commita838e377b39d575ea816934e31c6b4d88eb0ecad (patch)
tree8a46ad8501143336d6602b3ddb5c1537d27a531e /community/lshw/lshw-gcc43.patch
parent3018a6b879c51d7823b4dcf6f5ffe7f9d3b34412 (diff)
downloadaports-a838e377b39d575ea816934e31c6b4d88eb0ecad.tar.bz2
aports-a838e377b39d575ea816934e31c6b4d88eb0ecad.tar.xz
community/lshw: upgrade to 02.18
Diffstat (limited to 'community/lshw/lshw-gcc43.patch')
-rw-r--r--community/lshw/lshw-gcc43.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/community/lshw/lshw-gcc43.patch b/community/lshw/lshw-gcc43.patch
deleted file mode 100644
index c56b03890b..0000000000
--- a/community/lshw/lshw-gcc43.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/core/abi.cc.orig 2010-03-15 21:26:20.000000000 +0100
-+++ src/core/abi.cc 2013-08-06 21:05:08.693772583 +0200
-@@ -11,6 +11,7 @@
- #include <unistd.h>
- #include <stdlib.h>
- #include <dirent.h>
-+#include <cstdlib>
-
- __ID("@(#) $Id: mem.cc 1352 2006-05-27 23:54:13Z ezix $");
-
-@@ -38,10 +39,10 @@
- for(i=0; i<n; i++)
- {
- system.addCapability(namelist[i]->d_name);
-- free(namelist[i]);
-+ std::free(namelist[i]);
- }
- if(namelist)
-- free(namelist);
-+ std::free(namelist);
- }
-
- popd();