Re: Github repository

2013-11-17 Thread Rodolfo García Peñas (kix)
On 17/11/2013 13:44, Carlos R. Mafra wrote: On Sun, 17 Nov 2013 at 11:45:23 +0100, Rodolfo García Peñas (kix) wrote: On 17/11/2013 9:37, Carlos R. Mafra wrote: On Sat, 16 Nov 2013 at 23:39:18 +0100, Rodolfo García Peñas wrote: On Thu, 14 Nov 2013, Carlos R. Mafra escribió: I created a wmaker

Re: Github repository

2013-11-17 Thread Carlos R. Mafra
On Sun, 17 Nov 2013 at 14:34:06 +0100, Rodolfo García Peñas (kix) wrote: On 17/11/2013 13:44, Carlos R. Mafra wrote: On Sun, 17 Nov 2013 at 11:45:23 +0100, Rodolfo García Peñas (kix) wrote: On 17/11/2013 9:37, Carlos R. Mafra wrote: On Sat, 16 Nov 2013 at 23:39:18 +0100, Rodolfo García

Re: Is WindowMaker buildable for Mac OS X? (tried once b4 but failed)

2013-11-17 Thread Yaroslav Fedevych
I think macports have it; haven't tried myself, though. On Nov 17, 2013 2:14 AM, Upi Weston m...@internode.on.net wrote: Hi WindowMaker fans, I have been using an old version of WindowMaker 0.80.1 for ages. I'd really like to get a newer version with all the improvements I see listed on this

Re: Github repository

2013-11-17 Thread Christian
Hey guys, please calm down. :) Having code in github is a great idea. You can branch, make changes and submit your code via 'merge requests'. Anybody who is interested to see code changes should then add 'wmaker' to his watch list. Or try to get merge requests automatically mailed to the

[PATCH 02/12] configure: made the functions to try lib link+compile more generic

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The function can have a wider use, so moved then to a more neutral place and gave them more generic names. Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- m4/windowmaker.m4 | 43 m4/wm_imgfmt_check.m4

[PATCH 03/12] configure: Created new macro to append only once a flag to a variable

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- m4/windowmaker.m4 | 19 +++ m4/wm_imgfmt_check.m4 | 12 ++-- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/m4/windowmaker.m4

[PATCH 05/12] configure: Moved configure's detection of XShape to a dedicated macro

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The original check was not compliant with autoconf's syntax, did not have a very good behaviour for user and was not easy to make evolve. The new macro: - uses as much as possible autoconf macros for portability and code consistency; - checks

[PATCH 04/12] configure: Created new macro to perform the repetitive part of Library check

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr There are a number of steps in the library check procedure that are a bit repetitive, and have been placed into the macro WM_LIB_CHECK to make the code simpler to write. Signed-off-by: Christophe CURIS christophe.cu...@free.fr ---

[PATCH 10/12] Code refactoring: replaced macro 'XSHM' by 'USE_XSHM' for consistency

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The usual way to define a macro in is to name macro with 'USE_xxx' when they are used to enable a feature 'xxx'. Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- configure.ac| 2 +- wrlib/context.c | 2 +- wrlib/convert.c | 10

[PATCH 09/12] configure: Moved configure's detection of XRandR to a dedicated macro

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The original check was not compliant with autoconf's syntax, did not have a very good behaviour for user and was not easy to make evolve. The new macro: - uses as much as possible autoconf macros for portability and code consistency; - checks

[PATCH 07/12] configure: Moved configure's detection of Xinerama to a dedicated macro

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The original check was not compliant with autoconf's syntax, did not have a very good behaviour for user and was not easy to make evolve. The new macro: - uses as much as possible autoconf macros for portability and code consistency; - checks

[PATCH 08/12] Code refactoring: replaced macro 'HAVE_XRANDR' by 'USE_XRANDR' for consistency

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The usual way to define a macro in is to name macro with 'USE_xxx' when they are used to enable a feature 'xxx'. Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- configure.ac | 2 +- src/WindowMaker.h | 2 +- src/dialog.c | 2

[PATCH 12/12] Configure: Added proper check for Xmu library for WRaster

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The original code supposed that the library was available and ready to use. As it may not be the case (modern distro generally don't include dev files by defaults), add a the appropriate checks to make sure WRaster compilation will not fail later.

Re: action of alt-tab + left/right arrow crippled

2013-11-17 Thread Josip Deanovic
Hi! It would be nice (at least for me) that Windowmaker act a bit more as it did in pre 0.90.0 versions. I'll try to explain what is going on. I have disabled switchpanel and I am using ALT+TAB for window cycling and ALT+Left/ALT+Right for workspace cycling. Everything works fine until I try to

Re: [PATCH 03/12] configure: Created new macro to append only once a flag to a variable

2013-11-17 Thread BALATON Zoltan
On Sun, 17 Nov 2013, Christophe wrote: From: Christophe CURIS christophe.cu...@free.fr Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- m4/windowmaker.m4 | 19 +++ m4/wm_imgfmt_check.m4 | 12 ++-- 2 files changed, 25 insertions(+), 6 deletions(-) diff

Re: [PATCH 03/12] configure: Created new macro to append only once a flag to a variable

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr - BALATON Zoltan bala...@eik.bme.hu a �crit : On Sun, 17 Nov 2013, Christophe wrote: [...] +# +# Append flags to a variable, but only if not already present +# +# Usage: MW_LIB_APPEND_ONCE([libflags], [variable]) There's a typo

[PATCH] configure: Created new macro to append only once a flag to a variable

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- m4/windowmaker.m4 | 19 +++ m4/wm_imgfmt_check.m4 | 12 ++-- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/m4/windowmaker.m4

Re: [PATCH 01/12] Code refactoring: replaced macro 'SHAPE' by 'USE_XSHAPE' for consistency

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr Hello, Just noticed I missed a replace in wconfig.h.in, here a new version of the patch including the fix. Regards, Christophe. -- To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

[PATCH] Code refactoring: replaced macro 'SHAPE' by 'USE_XSHAPE' for consistency

2013-11-17 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr The usual way to define a macro in is to name macro with 'USE_xxx' when they are used to enable a feature 'xxx' Signed-off-by: Christophe CURIS christophe.cu...@free.fr --- WINGs/dragsource.c | 4 ++-- WINGs/wballoon.c| 4 ++--

Re: Github repository

2013-11-17 Thread Rodolfo García Peñas (kix)
On 17/11/2013 17:24, Christian wrote: Hey guys, please calm down. :) My reply. Having code in github is a great idea. +1 You can branch, make changes and submit your code via 'merge requests'. +1 Anybody who is interested to see code changes should then add 'wmaker' to his watch

Re: Github repository

2013-11-17 Thread Rodolfo García Peñas (kix)
On 17/11/2013 15:53, Carlos R. Mafra wrote: On Sun, 17 Nov 2013 at 14:34:06 +0100, Rodolfo García Peñas (kix) wrote: On 17/11/2013 13:44, Carlos R. Mafra wrote: On Sun, 17 Nov 2013 at 11:45:23 +0100, Rodolfo García Peñas (kix) wrote: On 17/11/2013 9:37, Carlos R. Mafra wrote: On Sat, 16 Nov