|  | @@ -50,6 +50,9 @@ DODEBUG = false
 | 
	
		
			
				|  |  |  # Compiler warnings you want to see 
 | 
	
		
			
				|  |  |  WARNINGS=-Wall
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +# Enable support for shared libraries?
 | 
	
		
			
				|  |  | +HAVE_SHARED = true
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  # Note that the kernel source you use to compile with should be the same as the
 | 
	
		
			
				|  |  |  # Linux kernel you run your apps on.  uClibc doesn't even try to achieve binary
 | 
	
		
			
				|  |  |  # compatibility across kernel versions.  So don't expect, for example, uClibc
 | 
	
	
		
			
				|  | @@ -70,11 +73,11 @@ HAS_FLOATING_POINT = true
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Set this to `false' if you don't have/need float functions in libm.
 | 
	
		
			
				|  |  |  # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
 | 
	
		
			
				|  |  | -HAS_LIBM_FLOAT = false
 | 
	
		
			
				|  |  | +HAS_LIBM_FLOAT = true
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Set this to `false' if you don't have/need double functions in libm.
 | 
	
		
			
				|  |  |  # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
 | 
	
		
			
				|  |  | -HAS_LIBM_DOUBLE = false
 | 
	
		
			
				|  |  | +HAS_LIBM_DOUBLE = true
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Set this to `false' if you don't have/need long double functions in libm.
 | 
	
		
			
				|  |  |  # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well.
 |