diff options
author | Colin Hill <colin.james.hill@gmail.com> | 2011-01-24 09:16:24 -0800 |
---|---|---|
committer | Colin Hill <colin.james.hill@gmail.com> | 2011-01-24 09:16:24 -0800 |
commit | 61e7dbfe8e955b7915ba1a61ed3ad368ea668566 (patch) | |
tree | 70bf5facf379886a6297237a5ed0c299df70b128 | |
parent | f64d324cee078c9178e39f0855925c09696973e6 (diff) |
Fixed build files to reflect new name.
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/Makefile.am | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index c21f77b..cc032a0 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ dnl Author: Paulo Zanoni <pzanoni@mandriva.com> dnl AC_PREREQ([2.65]) -AC_INIT([xf86-video-nestedv], [0.1.0], [pzanoni@mandriva.com]) +AC_INIT([xf86-video-nested], [0.1.0], [pzanoni@mandriva.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign -Wall -Werror dist-bzip2]) AM_MAINTAINER_MODE @@ -48,7 +48,7 @@ PKG_CHECK_MODULES(XORG, [xorg-server]) PKG_CHECK_MODULES(X11, x11) PKG_CHECK_MODULES(XEXT, xext) -DRIVER_NAME=nestedv +DRIVER_NAME=nested AC_SUBST([DRIVR_NAME]) AC_CONFIG_HEADERS([config.h]) diff --git a/src/Makefile.am b/src/Makefile.am index 8f4590c..8a1615c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -21,11 +21,10 @@ # Author: Paulo Zanoni <pzanoni@mandriva.com> # - AM_CFLAGS = $(XORG_CFLAGS) $(PCIACCESS_CFLAGS) $(X11_CFLAGS) $(XEXT_CFLAGS) -nestedv_drv_la_LTLIBRARIES = nestedv_drv.la -nestedv_drv_la_LDFLAGS = -module -avoid-version $(X11_LIBS) $(XEXT_LIBS) -nestedv_drv_ladir = @moduledir@/drivers +nested_drv_la_LTLIBRARIES = nested_drv.la +nested_drv_la_LDFLAGS = -module -avoid-version $(X11_LIBS) $(XEXT_LIBS) +nested_drv_ladir = @moduledir@/drivers -nestedv_drv_la_SOURCES = driver.c xlibclient.c client.h +nested_drv_la_SOURCES = driver.c xlibclient.c client.h |