diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-09-01 14:56:35 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-09-01 14:56:35 +0000 |
commit | 94fbdb5c6d2cdc7b70ecdabe22a9de8b9aabeced (patch) | |
tree | 596ed2f68ec1aab10c00be6b8d5a2852b300295b | |
parent | a65c5796133d126b1810749b5206607e7c42d787 (diff) |
Make RGB_PATH configurable.
Move I2C modules back to $(moduledir)/multimedia.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | hw/xfree86/i2c/Makefile.am | 3 | ||||
-rw-r--r-- | include/dix-config.h.in | 3 |
4 files changed, 19 insertions, 2 deletions
@@ -1,3 +1,12 @@ +2005-09-01 Daniel Stone <daniel@freedesktop.org> + + * configure.ac: + * include/config.h.in: + Make RGB_PATH configurable. + + * hw/xfree86/i2c/Makefile.am: + Move I2C modules back to $(moduledir)/multimedia. + 2005-08-30 Kristian Høgsberg <krh@redhat.com> * hw/xfree86/dri/Makefile.am: diff --git a/configure.ac b/configure.ac index 5e5bf7d30..cd9872c22 100644 --- a/configure.ac +++ b/configure.ac @@ -214,6 +214,9 @@ AC_ARG_WITH(default-font-path, [ --with-default-font-path=PATH ], AC_ARG_WITH(xkb-path, [ --with-xkb-path=PATH ], [ XKBPATH="$withval" ], [ XKBPATH="${datadir}/X11/xkb" ]) +AC_ARG_WITH(rgb-path, [ --with-rgb-path=PATH ], + [ RGBPATH="$withval" ], + [ RGBPATH="${datadir}/X11/rgb" ]) dnl Extensions. AC_ARG_ENABLE(composite, [ --disable-composite ], [COMPOSITE=$enableval], [COMPOSITE=yes]) @@ -444,7 +447,8 @@ if test "x$USE_RGB_BUILTIN" = xyes; then AC_DEFINE(USE_RGB_BUILTIN, 1, [Use built-in RGB color database]) fi -AC_DEFINE_DIR(COMPILEDDEFAULTFONTPATH, ["$FONTPATH"], [Default font path]) +AC_DEFINE_DIR(COMPILEDDEFAULTFONTPATH, FONTPATH, [Default font path]) +AC_DEFINE_DIR(RGB_PATH, RGBPATH, [Default RGB path]) AC_DEFINE_UNQUOTED(XVENDORNAME, ["$VENDOR_STRING"], [Vendor name]) AC_DEFINE_UNQUOTED(XORG_RELEASE, ["$VENDOR_RELEASE"], [Vendor release]) AC_DEFINE_UNQUOTED(BUILDERADDR, ["$BUILDERADDR"], [Builder address]) diff --git a/hw/xfree86/i2c/Makefile.am b/hw/xfree86/i2c/Makefile.am index 4022673ba..00053dd6a 100644 --- a/hw/xfree86/i2c/Makefile.am +++ b/hw/xfree86/i2c/Makefile.am @@ -1,4 +1,5 @@ -module_LTLIBRARIES = \ +multimediadir = $(moduledir)/multimedia +multimedia_LTLIBRARIES = \ libi2c.la \ bt829_drv.la \ fi1236_drv.la \ diff --git a/include/dix-config.h.in b/include/dix-config.h.in index f4d40353a..fd681be53 100644 --- a/include/dix-config.h.in +++ b/include/dix-config.h.in @@ -388,4 +388,7 @@ /* Define to 1 if unsigned long is 64 bits. */ #undef _XSERVER64 +/* Define to location of RGB database */ +#undef RGB_PATH + #endif /* _DIX_CONFIG_H_ */ |