You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							622 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							622 B
						
					
					
				| dnl @synopsis XERCES_LINK_DARWIN_FRAMEWORK | |
| dnl | |
| dnl Adds the specified framework to LIBS if it's not already there. | |
| dnl | |
| dnl @category C | |
| dnl @author James Berry | |
| dnl @version 2005-02-20 | |
| dnl @license AllPermissive | |
| dnl | |
| dnl $Id: xerces_link_darwin_framework.m4 190921 2005-06-16 14:18:12Z jberry $ | |
| 
 | |
| AC_DEFUN([XERCES_LINK_DARWIN_FRAMEWORK], [ | |
| 	case $host_os in | |
| 	darwin*) | |
| 		test -z "${xerces_darwin_frameworks}" && xerces_darwin_frameworks="-" | |
| 		case ${xerces_darwin_frameworks} in | |
| 		*-$1-*) | |
| 			;; | |
| 		*) | |
| 			xerces_darwin_frameworks="-$1${xerces_darwin_frameworks}" | |
| 			LIBS="-Wl,-framework -Wl,$1 $LIBS" | |
| 			;; | |
| 		esac | |
| 		;; | |
| 	esac | |
| ]) | |
| 
 |