diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-04-18 18:39:29 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-18 19:07:53 +0200 |
commit | 3f866eb24b807a2a9055fda7561e835452dca8ed (patch) | |
tree | 8de5390eccf746953e8e4af383b0c6856079b231 | |
parent | 6a2f5264992dc00c3805d86c7822d84ca52ec734 (diff) | |
download | buildroot-3f866eb24b807a2a9055fda7561e835452dca8ed.tar.gz buildroot-3f866eb24b807a2a9055fda7561e835452dca8ed.zip |
package/x11r7/xdriver_xf86-input-keyboard: Fix compile error
lnx_kbd.c: In function 'OpenKeyboard':
lnx_kbd.c:194:8: error: implicit declaration of function 'getpgid' [-Werror=implicit-function-declaration]
rc = tcsetpgrp(pInfo->fd, getpgid(0));
^
lnx_kbd.c:194:8: warning: nested extern declaration of 'getpgid' [-Wnested-externs]
cc1: some warnings being treated as errors
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk b/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk index 209f44afda..eb2d58287f 100644 --- a/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk +++ b/package/x11r7/xdriver_xf86-input-keyboard/xdriver_xf86-input-keyboard.mk @@ -10,5 +10,6 @@ XDRIVER_XF86_INPUT_KEYBOARD_SITE = http://xorg.freedesktop.org/releases/individu XDRIVER_XF86_INPUT_KEYBOARD_LICENSE = MIT XDRIVER_XF86_INPUT_KEYBOARD_LICENSE_FILES = COPYING XDRIVER_XF86_INPUT_KEYBOARD_DEPENDENCIES = xserver_xorg-server xproto_inputproto xproto_kbproto xproto_randrproto xproto_xproto +XDRIVER_XF86_INPUT_KEYBOARD_CONF_OPTS = --disable-selective-werror $(eval $(autotools-package)) |