summaryrefslogtreecommitdiff
path: root/vio
diff options
context:
space:
mode:
authorunknown <tonu@x153.internalnet>2001-08-23 03:05:56 +0800
committerunknown <tonu@x153.internalnet>2001-08-23 03:05:56 +0800
commitee5ba7642cb68845a4cb07060b50699a58430b27 (patch)
tree5f5f8dee702080b60bfaf5d38339d4539a5b0c74 /vio
parent55e17c84b41c8ff8e8b6f4c0131dd74e431e82b6 (diff)
downloadmariadb-git-ee5ba7642cb68845a4cb07060b50699a58430b27.tar.gz
Warning fixes
client/thread_test.c: Removed unused variables warnings sql/mysqld.cc: Fixed freeing null ptr warnings vio/Makefile.am: Make more test programs to compile
Diffstat (limited to 'vio')
-rw-r--r--vio/Makefile.am14
1 files changed, 10 insertions, 4 deletions
diff --git a/vio/Makefile.am b/vio/Makefile.am
index e8b226adb37..7119c278862 100644
--- a/vio/Makefile.am
+++ b/vio/Makefile.am
@@ -17,11 +17,17 @@
INCLUDES = -I$(srcdir)/../include -I../include $(openssl_includes)
LDADD = libvio.a $(openssl_libs)
pkglib_LIBRARIES = libvio.a
-noinst_PROGRAMS = viotest-ssl
+noinst_PROGRAMS = test-ssl test-sslserver test-sslclient
noinst_HEADERS =
-viotest_ssl_SOURCES = viotest-ssl.c
-viotest_ssl_LDADD = ../dbug/libdbug.a libvio.a ../mysys/libmysys.a ../strings/libmystrings.a \
- libvio.a $(openssl_libs)
+test_ssl_SOURCES = test-ssl.c
+test_ssl_LDADD = ../dbug/libdbug.a libvio.a ../mysys/libmysys.a \
+ ../strings/libmystrings.a libvio.a $(openssl_libs)
+test_sslserver_SOURCES = test-sslserver.c
+test_sslserver_LDADD = ../dbug/libdbug.a libvio.a ../mysys/libmysys.a \
+ ../strings/libmystrings.a libvio.a $(openssl_libs)
+test_sslclient_SOURCES = test-sslclient.c
+test_sslclient_LDADD = ../dbug/libdbug.a libvio.a ../mysys/libmysys.a \
+ ../strings/libmystrings.a libvio.a $(openssl_libs)
libvio_a_SOURCES = vio.c viosocket.c viossl.c viosslfactories.c
OMIT_DEPENDENCIES = pthread.h stdio.h __stdio.h stdlib.h __stdlib.h math.h\