diff options
author | Ben Laurie <ben@apache.org> | 2001-02-11 18:46:19 +0100 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 2001-02-11 18:46:19 +0100 |
commit | 29a10959c06eec90fef7309849b420e3d1b49f4f (patch) | |
tree | 366054630b2938f47f8a5bf3f996ffb7d6e39249 /modules/tls/Makefile.in | |
parent | Clean up the filter.html and handler.html files a little. (diff) | |
download | apache2-29a10959c06eec90fef7309849b420e3d1b49f4f.tar.xz apache2-29a10959c06eec90fef7309849b420e3d1b49f4f.zip |
First cut of TLS support.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88090 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/tls/Makefile.in')
-rw-r--r-- | modules/tls/Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/tls/Makefile.in b/modules/tls/Makefile.in new file mode 100644 index 0000000000..361b134e90 --- /dev/null +++ b/modules/tls/Makefile.in @@ -0,0 +1,9 @@ +LTLIBRARY_NAME = libapachemod_tls.la +LTLIBRARY_SOURCES = mod_tls.lo openssl_state_machine.lo + +# temp! +openssl_state_machine.lo: openssl_state_machine.c + gcc -I. -I/usr/home/ben/work/httpd-2.0/modules/tls -I/usr/home/ben/work/httpd-2.0/server/mpm/prefork -I/usr/home/ben/work/httpd-2.0/include -I/usr/home/ben/work/httpd-2.0/srclib/apr/include -I/usr/home/ben/work/httpd-2.0/srclib/apr-util/include -I/usr/home/ben/work/httpd-2.0/os/unix -I/usr/home/ben/work/httpd-2.0/srclib/expat-lite -I/home/ben/work/openssl/include -I/home/ben/work/openssl/include -D_REENTRANT -D_THREAD_SAFE -g -O2 -g -Wall -Wmissing-prototypes -Wmissing-declarations -DAP_DEBUG -DNO_KRB5 -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -c openssl_state_machine.c -o openssl_state_machine.lo + +include $(top_srcdir)/build/ltlib.mk + |