commit b5bcf7626db282e859307609bb8ffdfafe43584d Author: Jacob Appelbaum jacob@appelbaum.net Date: Wed Apr 24 11:39:54 2013 -0700
Allow for generic builds when we do not explicitly support the OS --- src/include.am | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+)
diff --git a/src/include.am b/src/include.am index 0ec38b2..a045759 100644 --- a/src/include.am +++ b/src/include.am @@ -308,6 +308,70 @@ if HAVE_ANDROID noinst_HEADERS+= src/common/android.h endif
+# This is our explicit target list +# We do not attempt to build with PolarSSL +if !POLARSSL +if !TARGET_HAIKU +if !TARGET_LINUX +if !TARGET_OSX +if !TARGET_OPENBSD +if !TARGET_NETBSD +if !TARGET_FREEBSD +if !TARGET_DRAGONFLYBSD +if !TARGET_HAIKU +if !TARGET_CYGWIN +if !TARGET_BSD +bin_PROGRAMS+= src/tlsdate +bin_PROGRAMS+= src/tlsdate-helper + +src_conf_unittest_SOURCES = src/conf.c +src_conf_unittest_SOURCES+= src/conf-unittest.c +src_conf_unittest_SOURCES+= src/common/android.c +check_PROGRAMS+= src/conf_unittest +noinst_PROGRAMS+= src/conf_unittest +endif +endif +endif +endif +endif +endif +endif +endif +endif +endif +endif + +if !POLARSSL +if !TARGET_HAIKU +if !TARGET_LINUX +if !TARGET_OSX +if !TARGET_OPENBSD +if !TARGET_NETBSD +if !TARGET_FREEBSD +if !TARGET_DRAGONFLYBSD +if !TARGET_HAIKU +if !TARGET_CYGWIN +if !TARGET_BSD +src_proxy_bio_unittest_LDADD = @SSL_LIBS@ +src_proxy_bio_unittest_SOURCES = src/proxy-bio.c +src_proxy_bio_unittest_SOURCES+= src/proxy-bio-unittest.c +src_proxy_bio_unittest_SOURCES+= src/test-bio.c +src_proxy_bio_unittest_SOURCES+= src/util.c +src_proxy_bio_unittest_SOURCES+= src/common/android.c +check_PROGRAMS+= src/proxy-bio_unittest +noinst_PROGRAMS+= src/proxy-bio_unittest +endif +endif +endif +endif +endif +endif +endif +endif +endif +endif +endif + if !TARGET_OSX check_PROGRAMS+= src/test/proxy-override src/test/return-argc \ src/test/rotate src/test/sleep-wrap
tor-commits@lists.torproject.org