ossp-pkg/sio/sio_test.c 1.6 -> 1.7
--- sio_test.c 2003/01/06 19:04:56 1.6
+++ sio_test.c 2003/01/20 15:34:13 1.7
@@ -28,12 +28,21 @@
** sio_test.c: test suite
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#ifndef ENABLE_BIO
+#error Test requires BIO + SSL
+#endif
+
#include <stdio.h>
#include "al.h"
#include "sio.h"
#include "sa.h"
+
#include <openssl/ssl.h>
#include <openssl/bio.h>
extern BIO_METHOD *BIO_s_socket();
|
|