diff options
author | Brian <brian@yutani.localnet.net> | 2007-04-03 09:27:57 -0600 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-04-03 09:28:21 -0600 |
commit | a240c039c47c0be22ea5e100692307b26d938747 (patch) | |
tree | 3ccf208e7b1769d105a494f1331978953dcf1cb5 /hw/xnest | |
parent | 1cc8db72816cd079f30255046e10043c350bf683 (diff) |
Split the xserver/fb/fbcmap.c file into two files.
Now, fbcmap_mi.c contains the fb functions which just wrap mi functions.
Previously, these were in fbcmap.c and compiled when XFree86Server was defined.
Now, clients of fbcmap should either use fbcmap.c or fbcmap_mi.c and not worry
about setting the XFree86Server symbol.
Diffstat (limited to 'hw/xnest')
-rw-r--r-- | hw/xnest/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xnest/Makefile.am b/hw/xnest/Makefile.am index b89761651..e958c0eee 100644 --- a/hw/xnest/Makefile.am +++ b/hw/xnest/Makefile.am @@ -45,8 +45,8 @@ SRCS = Args.c \ $(top_srcdir)/Xi/stubs.c \ $(top_srcdir)/mi/miinitext.c -libfbcmap_a_SOURCES = $(top_srcdir)/fb/fbcmap.c -libfbcmap_a_CFLAGS = $(AM_CFLAGS) -DXFree86Server +libfbcmap_a_SOURCES = $(top_srcdir)/fb/fbcmap_mi.c +libfbcmap_a_CFLAGS = $(AM_CFLAGS) Xnest_SOURCES = $(SRCS) |