tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

include.am (1911B)


      1 # sample/include.am for libevent
      2 # Copyright 2000-2007 Niels Provos
      3 # Copyright 2007-2012 Niels Provos and Nick Mathewson
      4 #
      5 # See LICENSE for copying information.
      6 
      7 SAMPLES = \
      8 	sample/dns-example				\
      9 	sample/event-read-fifo			\
     10 	sample/hello-world				\
     11 	sample/http-server				\
     12 	sample/http-connect				\
     13 	sample/signal-test				\
     14 	sample/time-test
     15 
     16 if OPENSSL
     17 SAMPLES += sample/le-proxy
     18 sample_le_proxy_SOURCES = sample/le-proxy.c
     19 sample_le_proxy_LDADD = libevent.la libevent_openssl.la $(OPENSSL_LIBS) $(OPENSSL_LIBADD)
     20 sample_le_proxy_CPPFLAGS = $(AM_CPPFLAGS) $(OPENSSL_INCS)
     21 
     22 SAMPLES += sample/https-client
     23 sample_https_client_SOURCES = \
     24 	sample/https-client.c \
     25 	sample/hostcheck.c \
     26 	sample/openssl_hostname_validation.c
     27 sample_https_client_LDADD = libevent.la libevent_openssl.la $(OPENSSL_LIBS) $(OPENSSL_LIBADD)
     28 if BUILD_WIN32
     29 sample_https_client_LDADD += -lcrypt32
     30 endif
     31 sample_https_client_CPPFLAGS = $(AM_CPPFLAGS) $(OPENSSL_INCS)
     32 noinst_HEADERS += \
     33 	sample/hostcheck.h \
     34 	sample/openssl_hostname_validation.h
     35 endif
     36 
     37 if BUILD_SAMPLES
     38 noinst_PROGRAMS += $(SAMPLES)
     39 endif
     40 
     41 $(SAMPLES) : libevent.la
     42 
     43 sample_event_read_fifo_SOURCES = sample/event-read-fifo.c
     44 sample_event_read_fifo_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
     45 sample_time_test_SOURCES = sample/time-test.c
     46 sample_time_test_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
     47 sample_signal_test_SOURCES = sample/signal-test.c
     48 sample_signal_test_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
     49 sample_dns_example_SOURCES = sample/dns-example.c
     50 sample_dns_example_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
     51 sample_hello_world_SOURCES = sample/hello-world.c
     52 sample_hello_world_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
     53 sample_http_server_SOURCES = sample/http-server.c
     54 sample_http_server_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la
     55 sample_http_connect_SOURCES = sample/http-connect.c
     56 sample_http_connect_LDADD = $(LIBEVENT_GC_SECTIONS) libevent.la