| 
									
										
										
										
											2016-06-03 21:02:10 +08:00
										 |  |  | #! /usr/bin/env perl | 
					
						
							| 
									
										
										
										
											2018-05-29 20:07:08 +08:00
										 |  |  | # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-06-03 21:02:10 +08:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  | # Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-06-03 21:02:10 +08:00
										 |  |  | # this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | # in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | # https://www.openssl.org/source/license.html | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use strict; | 
					
						
							|  |  |  | use warnings; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # First argument is name; | 
					
						
							|  |  |  | my $name = shift @ARGV; | 
					
						
							| 
									
										
										
										
											2016-08-05 06:32:36 +08:00
										 |  |  | my $name_uc = uc $name; | 
					
						
							| 
									
										
										
										
											2016-06-03 21:02:10 +08:00
										 |  |  | # All other arguments are ignored for now | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | print <<"_____"; | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Generated with test/generate_buildtest.pl, to check that such a simple | 
					
						
							|  |  |  |  * program builds. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-08-05 06:32:36 +08:00
										 |  |  | #include <openssl/opensslconf.h> | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_STDIO | 
					
						
							|  |  |  | # include <stdio.h> | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_${name_uc} | 
					
						
							|  |  |  | # include <openssl/$name.h> | 
					
						
							|  |  |  | #endif | 
					
						
							| 
									
										
										
										
											2016-06-03 21:02:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 23:09:50 +08:00
										 |  |  | int main(void) | 
					
						
							| 
									
										
										
										
											2016-06-03 21:02:10 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | _____ |