Correct xf86acpiDisableFlag symbol.
It is declared as <hash>ifdef HAVE_ACPI Bool xf86acpiDisableFlag = FALSE; <hash>endif in hw/xfree86/common/xf86Globals.c but not protected by the ifdef in the sdk header xf86Priv.h, what caused a build failure in the tinderbox, due to the address of the symbol being taken (to ensure it is available) in sdksyms.c.
This commit is contained in:
		
							parent
							
								
									b1dac41fb3
								
							
						
					
					
						commit
						bf4c29ab48
					
				| 
						 | 
				
			
			@ -56,7 +56,9 @@ extern _X_EXPORT  Bool xf86sFlag;
 | 
			
		|||
extern _X_EXPORT  Bool xf86bsEnableFlag;
 | 
			
		||||
extern _X_EXPORT  Bool xf86bsDisableFlag;
 | 
			
		||||
extern _X_EXPORT  Bool xf86silkenMouseDisableFlag;
 | 
			
		||||
#ifdef HAVE_ACPI
 | 
			
		||||
extern _X_EXPORT  Bool xf86acpiDisableFlag;
 | 
			
		||||
#endif
 | 
			
		||||
extern _X_EXPORT  char *xf86LayoutName;
 | 
			
		||||
extern _X_EXPORT  char *xf86ScreenName;
 | 
			
		||||
extern _X_EXPORT  char *xf86PointerName;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue