mirror of
				https://github.com/yuzu-emu/mbedtls.git
				synced 2025-11-04 14:25:15 +00:00 
			
		
		
		
	Merge pull request #142 from Patater/no-relative-includes
psa: Avoid use of relative include paths
This commit is contained in:
		
						commit
						3d94e3468e
					
				| 
						 | 
					@ -38,7 +38,7 @@
 | 
				
			||||||
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
 | 
					/* Include the Mbed TLS configuration file, the way Mbed TLS does it
 | 
				
			||||||
 * in each of its header files. */
 | 
					 * in each of its header files. */
 | 
				
			||||||
#if !defined(MBEDTLS_CONFIG_FILE)
 | 
					#if !defined(MBEDTLS_CONFIG_FILE)
 | 
				
			||||||
#include "../mbedtls/config.h"
 | 
					#include "mbedtls/config.h"
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
#include MBEDTLS_CONFIG_FILE
 | 
					#include MBEDTLS_CONFIG_FILE
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -45,7 +45,7 @@
 | 
				
			||||||
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
 | 
					/* Include the Mbed TLS configuration file, the way Mbed TLS does it
 | 
				
			||||||
 * in each of its header files. */
 | 
					 * in each of its header files. */
 | 
				
			||||||
#if !defined(MBEDTLS_CONFIG_FILE)
 | 
					#if !defined(MBEDTLS_CONFIG_FILE)
 | 
				
			||||||
#include "../mbedtls/config.h"
 | 
					#include "mbedtls/config.h"
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
#include MBEDTLS_CONFIG_FILE
 | 
					#include MBEDTLS_CONFIG_FILE
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -38,7 +38,7 @@
 | 
				
			||||||
/* Include the Mbed TLS configuration file, the way Mbed TLS does it
 | 
					/* Include the Mbed TLS configuration file, the way Mbed TLS does it
 | 
				
			||||||
 * in each of its header files. */
 | 
					 * in each of its header files. */
 | 
				
			||||||
#if !defined(MBEDTLS_CONFIG_FILE)
 | 
					#if !defined(MBEDTLS_CONFIG_FILE)
 | 
				
			||||||
#include "../mbedtls/config.h"
 | 
					#include "mbedtls/config.h"
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
#include MBEDTLS_CONFIG_FILE
 | 
					#include MBEDTLS_CONFIG_FILE
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue