nanogui: pre4 makefile problems with Linux svga


Previous by date: 24 Jan 2000 05:33:04 -0000 Re: GdFindNearestColor, Greg Haerr
Next by date: 24 Jan 2000 05:33:04 -0000 Re: pre4 makefile problems with Linux svga, Greg Haerr
Previous in thread:
Next in thread: 24 Jan 2000 05:33:04 -0000 Re: pre4 makefile problems with Linux svga, Greg Haerr

Subject: pre4 makefile problems with Linux svga
From: Chris Johns ####@####.####
Date: 24 Jan 2000 05:33:04 -0000
Message-Id: <388BE16D.230A712C@acm.org>

Hi all,

Further to the already posted makefile problems with pre4 it seems other
problems exist in the drivers directory.

The conditionals :

 ifeq ($(PORTRAIT_MODE), Y)
 OBJS += scr_fbportrait.o
 else
 OBJS += scr_fb.o
 endif

 ifeq ($(SA1100_LCD_LTLEND), Y)
 OBJS += fblin4sa1100.o
 else
 OBJS += fblin4.o
 endif

cause a trail into the frame buffer code to start. This stop the sgva
code from working. In a svga case only :

 ifeq ($(VGALIB), Y)
 OBJS += scr_svga.o genfont.o
 endif

is required. In the case of SVGA the `else' parts are wrong. Maybe they
should become :

 ifdef PORTRAIT_MODE
 ifeq ($(PORTRAIT_MODE), Y)
 OBJS += scr_fbportrait.o
 else
 OBJS += scr_fb.o
 endif
 endif

 ifdef SA1100_LCD_LTLEND
 ifeq ($(SA1100_LCD_LTLEND), Y)
 OBJS += fblin4sa1100.o
 else
 OBJS += fblin4.o
 endif
 endif

I have commented out the `PORTRAIT_MODE' and `SA1100_LCD_LTLEND' in my
config file. This change effects the `configure' program.

Regards

-- 
 Chris Johns, ####@####.####

Previous by date: 24 Jan 2000 05:33:04 -0000 Re: GdFindNearestColor, Greg Haerr
Next by date: 24 Jan 2000 05:33:04 -0000 Re: pre4 makefile problems with Linux svga, Greg Haerr
Previous in thread:
Next in thread: 24 Jan 2000 05:33:04 -0000 Re: pre4 makefile problems with Linux svga, Greg Haerr


Powered by ezmlm-browse 0.20.