[PATCH weston] Fix build error caused by missing header inclusion

2015-11-13 Thread ahmet acar
Hi. This fix that: https://bugs.freedesktop.org/show_bug.cgi?id=92104 --- shared/platform.h | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/platform.h b/shared/platform.h index 64e1fbf..cf4ecc0 100644 --- a/shared/platform.h +++ b/shared/platform.h @@ -29,6 +29,7 @@ #include

Re: [PATCH weston 00/10] weston wayland-protocols migration

2015-11-06 Thread ahmet acar
November 6 2015 2:32 AM, "Jonas Ã…dahl" wrote: > More or less. The question is whether it would be Ok to break builds, > and if so how "soon"? > are builds have to breaks? If build systems smarts enought(no needs for so complicated) and its behaivour known clearly both by

Re:[PATCH weston, v3] weston-terminal: Add cwd and command options

2015-09-25 Thread ahmet acar
Hi Derek. Thanks for review. > Really silly nit-pick, but I think most terminals (gnome-terminal, > xterm, terminology anyway) call this -e > So I guess it would be nice to be consistent. NO. I tested it that '-e' switch didn't work. it works with script files(*.sh) as its argument but can't

Re:[weston] weston-terminal: Add a few nice features

2015-09-23 Thread ahmet acar
>I'm going to apologize upfront, since what lies below is a pretty >intense review First; thank you for your intense review.i am happy with it. > I hope you'll fix up your patch and resubmit Sure. >Sounds useful! I would suggestion though to make your commit >message more >descriptive

[PATCH weston, v2] weston-terminal: Add cwd and command options

2015-09-23 Thread ahmet acar
Add 'cwd' (current working directory) and 'command' (run specified command immediately after startup) to weston-terminal. v2: -improve commit title and description -remove unneeded 'Changes from' thing -use weston_config_section_get_string() instead off -follow wayland coding style

[PATCH weston, v3] weston-terminal: Add cwd and command options

2015-09-23 Thread ahmet acar
Add 'cwd' (current working directory) and 'command' (run specified command immediately after startup) switch to weston-terminal. Both switch are optional. v3: -change command execution mechanism as 'bash -c command' (Bill Spitzak) Running weston-terminal --command="nano main.c" equals below:

[weston] weston-terminal: Add a few nice features

2015-09-21 Thread ahmet acar
Hi.This trivial patch adds 'cwd' (current working directory) and 'command' (run specified command immediatelly after open) features to weston-terminal.So this adds more use cases and flexibility to our terminal. Changes from: commit 90e2d07ec1e6e46136e7b43f427a838f3e5b01ed Author: Bryce

PATCH

2015-09-20 Thread ahmet acar
Hi. I just tried to make a little contribution. Patch attached. regards.From 7425104627516fbc08340ead6452bfdb9858bd9b Mon Sep 17 00:00:00 2001 From: canatan Date: Sun, 20 Sep 2015 15:08:06 + Subject: [PATCH] Add a few nice features to weston-terminal Hi.This trivial