This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/xawtv3.git tree:
Subject: Automatically detects Xorg's default place for app-defaults Author: Dmitry Butskoy <[email protected]> Date: Fri Jan 28 15:36:05 2011 -0200 Allows to find "app-defaults" under /usr/share/X11, avoiding the need of an extra resdir=... in make cmdline Signed-off-by: Mauro Carvalho Chehab <[email protected]> configure.ac | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) --- http://git.linuxtv.org/xawtv3.git?a=commitdiff;h=e5c870ba0b9010f496620db2bcc5b10362ae2f86 diff --git a/configure.ac b/configure.ac index 60615b5..b057f7f 100644 --- a/configure.ac +++ b/configure.ac @@ -301,6 +301,9 @@ AC_SUBST(x11conf) AC_MSG_CHECKING(for X11 app-defaults directory) resdir=/usr/lib/X11 +if test -d /usr/share/X11/app-defaults; then + resdir=/usr/share/X11 +fi if test -d /etc/X11/app-defaults; then resdir=/etc/X11 fi _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
