Set --enable-builtin-fonts as default.
Some reasons to embed fonts by default: 1. X server doesn't pick a good default font path so it's easiest just to built in the core fonts and let new X hackers more happy. Developers and distro guys are wise enough to just set --disable-builtin-fonts when they want. 2. Seems that this is by far the most popular FAQ (http://www.x.org/wiki/FAQErrorMessages). 3. No one gave a good argument to not do this: http://lists.freedesktop.org/archives/xorg/2008-May/035479.html
This commit is contained in:
		
							parent
							
								
									f3b29efc4d
								
							
						
					
					
						commit
						385943e0e9
					
				| 
						 | 
				
			
			@ -505,9 +505,9 @@ AC_ARG_ENABLE(install-libxf86config,
 | 
			
		|||
				[Install libxf86config (default: disabled)]),
 | 
			
		||||
				[INSTALL_LIBXF86CONFIG=$enableval],
 | 
			
		||||
				[INSTALL_LIBXF86CONFIG=no])
 | 
			
		||||
AC_ARG_ENABLE(builtin-fonts,  AS_HELP_STRING([--enable-builtin-fonts], [Use only built-in fonts (default: use external)]),
 | 
			
		||||
AC_ARG_ENABLE(builtin-fonts,  AS_HELP_STRING([--enable-builtin-fonts], [Use only built-in fonts (default: yes)]),
 | 
			
		||||
                                [BUILTIN_FONTS=$enableval],
 | 
			
		||||
                                [BUILTIN_FONTS=no])
 | 
			
		||||
                                [BUILTIN_FONTS=yes])
 | 
			
		||||
AC_ARG_ENABLE(null-root-cursor, AS_HELP_STRING([--enable-null-root-cursor], [Use an empty root cursor (default: use core cursor)]),
 | 
			
		||||
                                 [NULL_ROOT_CURSOR=$enableval],
 | 
			
		||||
                                 [NULL_ROOT_CURSOR=no])
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue