Hello,
I've tried to compile openssl-1.0.1 with the no-stdio option and ran
into errors..
I reproduce the problem on my linux debian (amd64), see below.

I'm attaching a patch.


$ ./config no-ssl2 no-stdio
$ make depend
$ make build_libs
...
gcc -I. -I.. -I../include -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN
-DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -DTERMIO -O3 -Wall
-DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5
-DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM
-DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -c -o
cryptlib.o cryptlib.c
cryptlib.c: In function ‘OPENSSL_cpuid_setup’:
cryptlib.c:701: warning: implicit declaration of function ‘sscanf’
cryptlib.c:701: warning: incompatible implicit declaration of built-in
function ‘sscanf’
cryptlib.c: In function ‘OPENSSL_showfatal’:
cryptlib.c:906: warning: implicit declaration of function ‘vfprintf’
cryptlib.c:906: error: ‘stderr’ undeclared (first use in this function)
cryptlib.c:906: error: (Each undeclared identifier is reported only once
cryptlib.c:906: error: for each function it appears in.)
cryptlib.c: In function ‘OPENSSL_stderr’:
cryptlib.c:926: error: ‘stderr’ undeclared (first use in this function)


Seulement dans openssl-1.0.1_orig/apps: CA.pl.bak
diff -ru openssl-1.0.1_orig/crypto/cms/cms_io.c openssl-1.0.1/crypto/cms/cms_io.c
--- openssl-1.0.1_orig/crypto/cms/cms_io.c	2008-03-31 17:03:53.000000000 +0200
+++ openssl-1.0.1/crypto/cms/cms_io.c	2012-03-29 22:06:25.000000000 +0200
@@ -51,6 +51,7 @@
  * ====================================================================
  */
 
+#include "e_os.h"
 #include <openssl/asn1t.h>
 #include <openssl/x509.h>
 #include <openssl/err.h>
diff -ru openssl-1.0.1_orig/crypto/conf/conf_def.c openssl-1.0.1/crypto/conf/conf_def.c
--- openssl-1.0.1_orig/crypto/conf/conf_def.c	2010-06-15 19:25:07.000000000 +0200
+++ openssl-1.0.1/crypto/conf/conf_def.c	2012-03-29 21:57:01.000000000 +0200
@@ -82,7 +82,9 @@
 static int def_init_WIN32(CONF *conf);
 static int def_destroy(CONF *conf);
 static int def_destroy_data(CONF *conf);
+#ifndef OPENSSL_NO_FP_API
 static int def_load(CONF *conf, const char *name, long *eline);
+#endif
 static int def_load_bio(CONF *conf, BIO *bp, long *eline);
 static int def_dump(const CONF *conf, BIO *bp);
 static int def_is_number(const CONF *conf, char c);
@@ -100,7 +102,9 @@
 	def_dump,
 	def_is_number,
 	def_to_int,
+#ifndef OPENSSL_NO_FP_API
 	def_load
+#endif
 	};
 
 static CONF_METHOD WIN32_method = {
@@ -113,7 +117,9 @@
 	def_dump,
 	def_is_number,
 	def_to_int,
+#ifndef OPENSSL_NO_FP_API
 	def_load
+#endif
 	};
 
 CONF_METHOD *NCONF_default()
@@ -181,6 +187,7 @@
 	return 1;
 	}
 
+#ifndef OPENSSL_NO_FP_API
 static int def_load(CONF *conf, const char *name, long *line)
 	{
 	int ret;
@@ -205,6 +212,7 @@
 
 	return ret;
 	}
+#endif
 
 static int def_load_bio(CONF *conf, BIO *in, long *line)
 	{
diff -ru openssl-1.0.1_orig/crypto/conf/conf.h openssl-1.0.1/crypto/conf/conf.h
--- openssl-1.0.1_orig/crypto/conf/conf.h	2008-05-31 21:17:25.000000000 +0200
+++ openssl-1.0.1/crypto/conf/conf.h	2012-03-29 19:06:30.000000000 +0200
@@ -134,7 +134,9 @@
 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf,const char *group,
 		     const char *name);
 void CONF_free(LHASH_OF(CONF_VALUE) *conf);
+#ifndef OPENSSL_NO_FP_API
 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
+#endif
 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
 
 void OPENSSL_config(const char *config_name);
@@ -168,7 +170,9 @@
 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
 int NCONF_get_number_e(const CONF *conf,const char *group,const char *name,
 		       long *result);
+#ifndef OPENSSL_NO_FP_API
 int NCONF_dump_fp(const CONF *conf, FILE *out);
+#endif
 int NCONF_dump_bio(const CONF *conf, BIO *out);
 
 #if 0 /* The following function has no error checking,
diff -ru openssl-1.0.1_orig/crypto/conf/conf_lib.c openssl-1.0.1/crypto/conf/conf_lib.c
--- openssl-1.0.1_orig/crypto/conf/conf_lib.c	2008-05-26 13:24:21.000000000 +0200
+++ openssl-1.0.1/crypto/conf/conf_lib.c	2012-03-29 20:21:45.000000000 +0200
@@ -62,6 +62,7 @@
 #include <openssl/conf.h>
 #include <openssl/conf_api.h>
 #include <openssl/lhash.h>
+#include "e_os.h"
 
 const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;
 
@@ -87,6 +88,7 @@
 	return 1;
 	}
 
+#ifndef OPENSSL_NO_FP_API
 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
 				long *eline)
 	{
@@ -109,6 +111,7 @@
 
 	return ltmp;
 	}
+#endif
 
 #ifndef OPENSSL_NO_FP_API
 LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
diff -ru openssl-1.0.1_orig/crypto/cryptlib.c openssl-1.0.1/crypto/cryptlib.c
--- openssl-1.0.1_orig/crypto/cryptlib.c	2012-01-21 13:18:29.000000000 +0100
+++ openssl-1.0.1/crypto/cryptlib.c	2012-03-29 19:05:22.000000000 +0200
@@ -695,11 +695,15 @@
     trigger=1;
     if ((env=getenv("OPENSSL_ia32cap"))) {
 	int off = (env[0]=='~')?1:0;
+#ifndef OPENSSL_NO_STDIO
 #if defined(_WIN32)
 	if (!sscanf(env+off,"%I64i",&vec)) vec = strtoul(env+off,NULL,0);
 #else
 	if (!sscanf(env+off,"%lli",(long long *)&vec)) vec = strtoul(env+off,NULL,0);
 #endif
+#else
+	vec = strtoul(env+off,NULL,0);	/* note : if available, strtoull() could be used instead */
+#endif
 	if (off) vec = OPENSSL_ia32_cpuid()&~vec;
     }
     else
@@ -903,7 +907,11 @@
 { va_list ap;
 
     va_start (ap,fmta);
+#ifndef OPENSSL_NO_STDIO
     vfprintf (stderr,fmta,ap);
+#else
+	/* what to do if there is no stderr ? */
+#endif
     va_end (ap);
 }
 int OPENSSL_isservice (void) { return 0; }
@@ -923,4 +931,9 @@
 #endif
 	}
 
+#ifndef OPENSSL_NO_STDIO
 void *OPENSSL_stderr(void)	{ return stderr; }
+#else
+void *OPENSSL_stderr(void)	{ return NULL; }
+#endif
+
diff -ru openssl-1.0.1_orig/crypto/pem/pem.h openssl-1.0.1/crypto/pem/pem.h
--- openssl-1.0.1_orig/crypto/pem/pem.h	2010-04-06 13:18:31.000000000 +0200
+++ openssl-1.0.1/crypto/pem/pem.h	2012-03-29 19:10:45.000000000 +0200
@@ -325,6 +325,7 @@
 
 #define DECLARE_PEM_read_fp(name, type) /**/
 #define DECLARE_PEM_write_fp(name, type) /**/
+#define DECLARE_PEM_write_fp_const(name, type) /**/
 #define DECLARE_PEM_write_cb_fp(name, type) /**/
 
 #else
@@ -425,6 +426,7 @@
 		unsigned char *kstr, int klen, pem_password_cb *cd, void *u);
 #endif
 
+#ifndef OPENSSL_NO_FP_API
 int	PEM_read(FILE *fp, char **name, char **header,
 		unsigned char **data,long *len);
 int	PEM_write(FILE *fp,char *name,char *hdr,unsigned char *data,long len);
@@ -435,6 +437,7 @@
 		       int klen,pem_password_cb *callback, void *u);
 STACK_OF(X509_INFO) *	PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
 	pem_password_cb *cb, void *u);
+#endif
 
 int	PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,
 		EVP_MD *md_type, unsigned char **ek, int *ekl,
@@ -523,6 +526,7 @@
 				  pem_password_cb *cb, void *u);
 EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u);
 
+#ifndef OPENSSL_NO_FP_API
 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
 				  char *kstr, int klen,
 				  pem_password_cb *cb, void *u);
@@ -537,6 +541,7 @@
 
 int PEM_write_PKCS8PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
 			      char *kstr,int klen, pem_password_cb *cd, void *u);
+#endif
 
 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x);
 int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x);
diff -ru openssl-1.0.1_orig/crypto/srp/srp_vfy.c openssl-1.0.1/crypto/srp/srp_vfy.c
--- openssl-1.0.1_orig/crypto/srp/srp_vfy.c	2011-03-16 12:26:23.000000000 +0100
+++ openssl-1.0.1/crypto/srp/srp_vfy.c	2012-03-29 20:11:44.000000000 +0200
@@ -351,6 +351,7 @@
 	return NULL;
 	}
 
+#ifndef OPENSSL_NO_FP_API
 /* this function parses verifier file. Format is:
  * string(index):base64(N):base64(g):0
  * string(username):base64(v):base64(salt):int(index)
@@ -470,6 +471,7 @@
 	return error_code;
 
 	}
+#endif
 
 
 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username)
diff -ru openssl-1.0.1_orig/crypto/ts/ts.h openssl-1.0.1/crypto/ts/ts.h
--- openssl-1.0.1_orig/crypto/ts/ts.h	2012-01-24 23:59:46.000000000 +0100
+++ openssl-1.0.1/crypto/ts/ts.h	2012-03-29 19:12:33.000000000 +0200
@@ -288,8 +288,10 @@
 
 TS_REQ	*TS_REQ_dup(TS_REQ *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_REQ	*d2i_TS_REQ_fp(FILE *fp, TS_REQ **a);
 int	i2d_TS_REQ_fp(FILE *fp, TS_REQ *a);
+#endif
 TS_REQ	*d2i_TS_REQ_bio(BIO *fp, TS_REQ **a);
 int	i2d_TS_REQ_bio(BIO *fp, TS_REQ *a);
 
@@ -301,8 +303,10 @@
 
 TS_MSG_IMPRINT	*TS_MSG_IMPRINT_dup(TS_MSG_IMPRINT *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_MSG_IMPRINT	*d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a);
 int		i2d_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT *a);
+#endif
 TS_MSG_IMPRINT	*d2i_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT **a);
 int		i2d_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT *a);
 
@@ -313,8 +317,10 @@
 TS_TST_INFO *PKCS7_to_TS_TST_INFO(PKCS7 *token);
 TS_RESP	*TS_RESP_dup(TS_RESP *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_RESP	*d2i_TS_RESP_fp(FILE *fp, TS_RESP **a);
 int	i2d_TS_RESP_fp(FILE *fp, TS_RESP *a);
+#endif
 TS_RESP	*d2i_TS_RESP_bio(BIO *fp, TS_RESP **a);
 int	i2d_TS_RESP_bio(BIO *fp, TS_RESP *a);
 
@@ -332,8 +338,10 @@
 				    long length);
 TS_TST_INFO	*TS_TST_INFO_dup(TS_TST_INFO *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_TST_INFO	*d2i_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO **a);
 int		i2d_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO *a);
+#endif
 TS_TST_INFO	*d2i_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO **a);
 int		i2d_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO *a);
 
diff -ru openssl-1.0.1_orig/crypto/x509v3/v3_pci.c openssl-1.0.1/crypto/x509v3/v3_pci.c
--- openssl-1.0.1_orig/crypto/x509v3/v3_pci.c	2010-05-22 02:31:02.000000000 +0200
+++ openssl-1.0.1/crypto/x509v3/v3_pci.c	2012-03-29 20:14:00.000000000 +0200
@@ -157,6 +157,7 @@
 				}
 			OPENSSL_free(tmp_data2);
 			}
+#ifndef OPENSSL_NO_FP_API
 		else if (strncmp(val->value, "file:", 5) == 0)
 			{
 			unsigned char buf[2048];
@@ -194,6 +195,7 @@
 				goto err;
 				}
 			}
+#endif
 		else if (strncmp(val->value, "text:", 5) == 0)
 			{
 			val_len = strlen(val->value + 5);
diff -ru openssl-1.0.1_orig/crypto/x509v3/x509v3.h openssl-1.0.1/crypto/x509v3/x509v3.h
--- openssl-1.0.1_orig/crypto/x509v3/x509v3.h	2009-07-27 23:08:53.000000000 +0200
+++ openssl-1.0.1/crypto/x509v3/x509v3.h	2012-03-29 19:09:13.000000000 +0200
@@ -670,7 +670,9 @@
 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
 								 int ml);
 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
+#ifndef OPENSSL_NO_FP_API
 int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
+#endif
 
 int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent);
 
diff -ru openssl-1.0.1_orig/include/openssl/conf.h openssl-1.0.1/include/openssl/conf.h
--- openssl-1.0.1_orig/include/openssl/conf.h	2008-05-31 21:17:25.000000000 +0200
+++ openssl-1.0.1/include/openssl/conf.h	2012-03-29 19:06:30.000000000 +0200
@@ -134,7 +134,9 @@
 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf,const char *group,
 		     const char *name);
 void CONF_free(LHASH_OF(CONF_VALUE) *conf);
+#ifndef OPENSSL_NO_FP_API
 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
+#endif
 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
 
 void OPENSSL_config(const char *config_name);
@@ -168,7 +170,9 @@
 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
 int NCONF_get_number_e(const CONF *conf,const char *group,const char *name,
 		       long *result);
+#ifndef OPENSSL_NO_FP_API
 int NCONF_dump_fp(const CONF *conf, FILE *out);
+#endif
 int NCONF_dump_bio(const CONF *conf, BIO *out);
 
 #if 0 /* The following function has no error checking,
diff -ru openssl-1.0.1_orig/include/openssl/pem.h openssl-1.0.1/include/openssl/pem.h
--- openssl-1.0.1_orig/include/openssl/pem.h	2010-04-06 13:18:31.000000000 +0200
+++ openssl-1.0.1/include/openssl/pem.h	2012-03-29 19:10:45.000000000 +0200
@@ -325,6 +325,7 @@
 
 #define DECLARE_PEM_read_fp(name, type) /**/
 #define DECLARE_PEM_write_fp(name, type) /**/
+#define DECLARE_PEM_write_fp_const(name, type) /**/
 #define DECLARE_PEM_write_cb_fp(name, type) /**/
 
 #else
@@ -425,6 +426,7 @@
 		unsigned char *kstr, int klen, pem_password_cb *cd, void *u);
 #endif
 
+#ifndef OPENSSL_NO_FP_API
 int	PEM_read(FILE *fp, char **name, char **header,
 		unsigned char **data,long *len);
 int	PEM_write(FILE *fp,char *name,char *hdr,unsigned char *data,long len);
@@ -435,6 +437,7 @@
 		       int klen,pem_password_cb *callback, void *u);
 STACK_OF(X509_INFO) *	PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
 	pem_password_cb *cb, void *u);
+#endif
 
 int	PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,
 		EVP_MD *md_type, unsigned char **ek, int *ekl,
@@ -523,6 +526,7 @@
 				  pem_password_cb *cb, void *u);
 EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u);
 
+#ifndef OPENSSL_NO_FP_API
 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
 				  char *kstr, int klen,
 				  pem_password_cb *cb, void *u);
@@ -537,6 +541,7 @@
 
 int PEM_write_PKCS8PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
 			      char *kstr,int klen, pem_password_cb *cd, void *u);
+#endif
 
 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x);
 int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x);
diff -ru openssl-1.0.1_orig/include/openssl/ts.h openssl-1.0.1/include/openssl/ts.h
--- openssl-1.0.1_orig/include/openssl/ts.h	2012-01-24 23:59:46.000000000 +0100
+++ openssl-1.0.1/include/openssl/ts.h	2012-03-29 19:12:33.000000000 +0200
@@ -288,8 +288,10 @@
 
 TS_REQ	*TS_REQ_dup(TS_REQ *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_REQ	*d2i_TS_REQ_fp(FILE *fp, TS_REQ **a);
 int	i2d_TS_REQ_fp(FILE *fp, TS_REQ *a);
+#endif
 TS_REQ	*d2i_TS_REQ_bio(BIO *fp, TS_REQ **a);
 int	i2d_TS_REQ_bio(BIO *fp, TS_REQ *a);
 
@@ -301,8 +303,10 @@
 
 TS_MSG_IMPRINT	*TS_MSG_IMPRINT_dup(TS_MSG_IMPRINT *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_MSG_IMPRINT	*d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a);
 int		i2d_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT *a);
+#endif
 TS_MSG_IMPRINT	*d2i_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT **a);
 int		i2d_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT *a);
 
@@ -313,8 +317,10 @@
 TS_TST_INFO *PKCS7_to_TS_TST_INFO(PKCS7 *token);
 TS_RESP	*TS_RESP_dup(TS_RESP *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_RESP	*d2i_TS_RESP_fp(FILE *fp, TS_RESP **a);
 int	i2d_TS_RESP_fp(FILE *fp, TS_RESP *a);
+#endif
 TS_RESP	*d2i_TS_RESP_bio(BIO *fp, TS_RESP **a);
 int	i2d_TS_RESP_bio(BIO *fp, TS_RESP *a);
 
@@ -332,8 +338,10 @@
 				    long length);
 TS_TST_INFO	*TS_TST_INFO_dup(TS_TST_INFO *a);
 
+#ifndef OPENSSL_NO_FP_API
 TS_TST_INFO	*d2i_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO **a);
 int		i2d_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO *a);
+#endif
 TS_TST_INFO	*d2i_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO **a);
 int		i2d_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO *a);
 
diff -ru openssl-1.0.1_orig/include/openssl/x509v3.h openssl-1.0.1/include/openssl/x509v3.h
--- openssl-1.0.1_orig/include/openssl/x509v3.h	2009-07-27 23:08:53.000000000 +0200
+++ openssl-1.0.1/include/openssl/x509v3.h	2012-03-29 19:09:13.000000000 +0200
@@ -670,7 +670,9 @@
 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
 								 int ml);
 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
+#ifndef OPENSSL_NO_FP_API
 int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
+#endif
 
 int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent);
 
diff -ru openssl-1.0.1_orig/ssl/ssl_cert.c openssl-1.0.1/ssl/ssl_cert.c
--- openssl-1.0.1_orig/ssl/ssl_cert.c	2011-05-11 15:37:52.000000000 +0200
+++ openssl-1.0.1/ssl/ssl_cert.c	2012-03-29 20:05:58.000000000 +0200
@@ -730,6 +730,7 @@
 	}
 #endif
 
+#ifndef OPENSSL_NO_STDIO
 /*!
  * Add a file of certs to a stack.
  * \param stack the stack to add to.
@@ -790,7 +791,9 @@
 
 	return ret;
 	}
+#endif
 
+#ifndef OPENSSL_NO_STDIO
 /*!
  * Add a directory of certs to a stack.
  * \param stack the stack to append to.
@@ -850,4 +853,5 @@
 	CRYPTO_w_unlock(CRYPTO_LOCK_READDIR);
 	return ret;
 	}
+#endif
 
Seulement dans openssl-1.0.1_orig/tools: c_rehash.bak

Reply via email to