summaryrefslogtreecommitdiffstats
path: root/testing/lshw/lshw-gcc43.patch
diff options
context:
space:
mode:
authorPaul Kilar <pkilar@gmail.com>2013-08-28 11:47:47 -0400
committerNatanael Copa <ncopa@alpinelinux.org>2013-08-28 18:21:34 +0000
commitf2fbff6ef653ee27fc8451c438b3363a89ee7132 (patch)
tree0696c4a2af08bd4be2ab7da788bc1a4d77c783be /testing/lshw/lshw-gcc43.patch
parentc75c0f816082640c69cd0b819c658e1174e6fabb (diff)
downloadaports-f2fbff6ef653ee27fc8451c438b3363a89ee7132.tar.bz2
aports-f2fbff6ef653ee27fc8451c438b3363a89ee7132.tar.xz
testing/lshw: new aport
lshw (Hardware Lister) is a small tool to provide detailed information on the hardware configuration of the machine. http://www.ezix.org/software/lshw.html
Diffstat (limited to 'testing/lshw/lshw-gcc43.patch')
-rw-r--r--testing/lshw/lshw-gcc43.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/lshw/lshw-gcc43.patch b/testing/lshw/lshw-gcc43.patch
new file mode 100644
index 000000000..c56b03890
--- /dev/null
+++ b/testing/lshw/lshw-gcc43.patch
@@ -0,0 +1,23 @@
+--- 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();