summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2005-12-02 01:40:06 +0000
committerKevin E Martin <kem@kem.org>2005-12-02 01:40:06 +0000
commitf1226de089929e89ed0e77535ae129373935f4b5 (patch)
tree126ed5685c3d3094fa71ec05934ad5b401c7d50f
parent93b6b4cda7a0a2323a10405bb8b7af0e4a1a6110 (diff)
Change the default rgb dir to be the same path as the X server.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 67f30e4..af2507a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-01 Kevin E. Martin <kem-at-freedesktop-dot-org>
+
+ * configure.ac:
+ Change the default rgb dir to be the same path as the X server.
+
2005-11-23 Alan Coopersmith <alan.coopersmith@sun.com>
* configure.ac:
diff --git a/configure.ac b/configure.ac
index 9106c90..742d63b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,8 +40,8 @@ AC_PROG_INSTALL
AC_MSG_CHECKING([for rgb database location])
AC_ARG_WITH([rgb-db-dir],
AC_HELP_STRING([--with-rgb-db-dir=<path>],
- [rgb database location (default is libdir/X11/rgb)]),
- [db_path=$withval], [db_path=$libdir/X11/rgb])
+ [rgb database location (default is ${datadir}/X11/rgb)]),
+ [db_path=$withval], [db_path=${datadir}/X11/rgb])
AC_MSG_RESULT([$db_path])
dnl XXX not working - AC_DEFINE([RGB_DB], $db_path, [set to location of rgb database (without any file type suffix)])
db_file=`basename $db_path`