SOURCE[bioprinttest]=bioprinttest.c
INCLUDE[bioprinttest]=../include
DEPEND[bioprinttest]=../libcrypto
- {-
+
+ SOURCE[sslapitest]=sslapitest.c ssltestlib.c testutil.c
+ INCLUDE[sslapitest]=../include
+ DEPEND[sslapitest]=../libcrypto ../libssl
+ENDIF
+
+{-
use File::Spec::Functions;
use File::Basename;
use if $^O ne "VMS", 'File::Glob' => qw/glob/;
DEPEND[buildtest_$name]=../libssl ../libcrypto
_____
}
- -}
-
- SOURCE[sslapitest]=sslapitest.c ssltestlib.c testutil.c
- INCLUDE[sslapitest]=../include
- DEPEND[sslapitest]=../libcrypto ../libssl
-ENDIF
+-}
# First argument is name;
my $name = shift @ARGV;
+my $name_uc = uc $name;
# All other arguments are ignored for now
print <<"_____";
* Generated with test/generate_buildtest.pl, to check that such a simple
* program builds.
*/
-#include <openssl/$name.h>
+#include <openssl/opensslconf.h>
+#ifndef OPENSSL_NO_STDIO
+# include <stdio.h>
+#endif
+#ifndef OPENSSL_NO_${name_uc}
+# include <openssl/$name.h>
+#endif
int main()
{