[PATCH] libdockapp: Use Requires.private in pkg-config file to avoid overlinking.

2017-08-12 Thread Doug Torrance
--- libdockapp/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdockapp/Makefile.am b/libdockapp/Makefile.am index 5cbeb55..4570a84 100644 --- a/libdockapp/Makefile.am +++ b/libdockapp/Makefile.am @@ -19,7 +19,7 @@ dockapp.pc: Makefile @echo 'Description:

[PATCH] wmaker: Allow WMRootMenu to reference menu files in proplist format.

2017-08-12 Thread Doug Torrance
Previously, WMRootMenu could either be a menu file in proplist format itself, or it could reference another menu file in the old style format. If WMRootMenu referenced another menu file in proplist format, this file was parsed assuming it was in the old style format and thus failed, as observed

Re: wmaker menu - including files

2017-08-12 Thread Doug Torrance
On 08/07/2017 01:55 PM, Christophe wrote: Hello, - Andreas Metzler a écrit : Hello, [...] However including a menu in proplist format at toplevel fails: [...] Is this intentional behavior? As you probably have deduced by yourself now thanks to the copious amount of

[PATCH 9/9] wmmon: Bump to version 1.3.

2017-08-12 Thread Doug Torrance
Description -- +1.3- Released 20170812 + - Added -b flag to include buffers and cache in total memory + usage. Added global show_buffers, -b parsing code, + associated logic

[PATCH 8/9] wmmon: Update documentation.

2017-08-12 Thread Doug Torrance
--- wmmon/INSTALL | 11 +-- wmmon/README | 16 wmmon/TODO| 2 +- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/wmmon/INSTALL b/wmmon/INSTALL index 7defae3..492390c 100644 --- a/wmmon/INSTALL +++ b/wmmon/INSTALL @@ -2,15 +2,14 @@ Installation

[PATCH 5/9] wmmon: Use consistent data types.

2017-08-12 Thread Doug Torrance
--- wmmon/wmmon-mask.xbm | 2 +- wmmon/wmmon.c| 16 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/wmmon/wmmon-mask.xbm b/wmmon/wmmon-mask.xbm index 43b85a4..3d67e53 100644 --- a/wmmon/wmmon-mask.xbm +++ b/wmmon/wmmon-mask.xbm @@ -1,6 +1,6 @@ #define

[PATCH 6/9] wmmon: Fix jiffy counter overflowing long on 32-bit systems.

2017-08-12 Thread Doug Torrance
Based on patch by Pedro Gimeno Fortea for Debian bug #670151 [1]. [1] https://bugs.debian.org/670151 --- wmmon/Makefile.am | 2 +- wmmon/configure.ac | 1 + wmmon/ulllib.c | 68 +++ wmmon/ulllib.h | 50

[PATCH 7/9] wmmon: Add desktop entry file.

2017-08-12 Thread Doug Torrance
--- wmmon/Makefile.am | 3 +++ wmmon/wmmon.desktop | 7 +++ 2 files changed, 10 insertions(+) create mode 100644 wmmon/wmmon.desktop diff --git a/wmmon/Makefile.am b/wmmon/Makefile.am index 52a3f9a..9e01dcb 100644 --- a/wmmon/Makefile.am +++ b/wmmon/Makefile.am @@ -5,3 +5,6 @@ EXTRA_DIST

[PATCH 1/9] wmmon: Move all source files to top directory for simplicity.

2017-08-12 Thread Doug Torrance
--- wmmon/{wmmon => }/Makefile | 0 wmmon/{wmmon => }/wmmon-mask.xbm | 0 wmmon/{wmmon => }/wmmon-master.xpm | 0 wmmon/{wmmon => }/wmmon.1 | 0 wmmon/{wmmon => }/wmmon.c | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename wmmon/{wmmon => }/Makefile (100%)

[PATCH 3/9] wmmon: Update includes based on results of include-what-you-use.

2017-08-12 Thread Doug Torrance
--- wmmon/wmmon.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wmmon/wmmon.c b/wmmon/wmmon.c index b9e8447..d4adff0 100644 --- a/wmmon/wmmon.c +++ b/wmmon/wmmon.c @@ -101,12 +101,9 @@ #include #include -#include -#include +#include #include -#include

[PATCH 4/9] wmmon: Remove redundant #define.

2017-08-12 Thread Doug Torrance
--- wmmon/wmmon.c | 1 - 1 file changed, 1 deletion(-) diff --git a/wmmon/wmmon.c b/wmmon/wmmon.c index d4adff0..4e7a125 100644 --- a/wmmon/wmmon.c +++ b/wmmon/wmmon.c @@ -115,7 +115,6 @@ /* Defines */ /***/ #define HISTORY_ENTRIES 55 -#define HISTORY_ENTRIES 55 #define MAX_CPU (10)

[PATCH 2/9] wmmon: Use autotools for build.

2017-08-12 Thread Doug Torrance
--- wmmon/Makefile | 21 - wmmon/Makefile.am | 7 +++ wmmon/configure.ac | 8 wmmon/wmmon.c | 3 +-- 4 files changed, 16 insertions(+), 23 deletions(-) delete mode 100644 wmmon/Makefile create mode 100644 wmmon/Makefile.am create mode 100644

[PATCH 0/9] wmmon updates

2017-08-12 Thread Doug Torrance
Here are some updates for wmmon. Carlos, could you tag the last commit wmmon-1.3? We're also missing a tag for an earlier version: git tag wmmon-1.2b2 a5f88e5e5988fa6359c44bcff1363b1cd92a3225 Thanks! Doug Torrance (9): wmmon: Move all source files to top directory for simplicity. wmmon: