~ubuntu-branches/ubuntu/precise/stunnel4/precise-security

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lemoine
  • Date: 2005-04-20 21:07:50 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050420210750-0vk5fj5vh75o4d00
Tags: 2:4.090-1
* New upstream release
* include better stunnel3 compability script from upstream, options 
  like -cd can now be use instead of -c -d ...
  (closes: #305259)
* Added depends on perl-modules to allow use of stunnel3 compatibilty script

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
1
3
# File lists
2
4
 
3
5
common_headers = common.h prototypes.h
4
6
common_sources = client.c log.c options.c protocol.c \
5
 
    sselect.c ssl.c sthreads.c stunnel.c
 
7
    network.c resolver.c ssl.c sthreads.c stunnel.c
6
8
unix_sources = pty.c
7
9
shared_sources = env.c
8
10
win32_sources = gui.c resources.h resources.rc stunnel.ico
12
14
sbin_PROGRAMS = stunnel
13
15
stunnel_SOURCES = $(common_headers) $(common_sources) $(unix_sources)
14
16
 
 
17
sbin_SCRIPTS = stunnel3
 
18
 
15
19
# Unix shared library
16
20
 
17
21
lib_LTLIBRARIES = libstunnel.la
19
23
libstunnel_la_LDFLAGS = -avoid-version
20
24
 
21
25
# Red Hat "by design" bug #82369
 
26
 
22
27
INCLUDES = -I/usr/kerberos/include
23
28
 
24
29
# Win32 executable
26
31
EXTRA_DIST = stunnel.exe make.bat Makefile.w32
27
32
EXTRA_PROGRAMS = stunnel.exe
28
33
stunnel_exe_SOURCES =  $(common_headers) $(common_sources) $(win32_sources)
 
34
# dist-hook: stunnel.exe
 
35
#       cp -p stunnel.exe $(distdir)/../
29
36
 
30
 
OPENSSLDIR=/usr/src/openssl-0.9.7c
 
37
OPENSSLDIR=/usr/src/openssl-0.9.7f
31
38
WINCFLAGS=-O2 -Wall -I$(OPENSSLDIR)/outinc \
32
39
        -DUSE_WIN32=1 -DHAVE_OPENSSL=1 -DVERSION=\"@VERSION@\"
33
 
WINLIBS=-L$(OPENSSLDIR)/out -leay32 -lssl32 -lwsock32 -lgdi32 -mwindows
34
 
WINOBJ=client.obj log.obj options.obj protocol.obj sselect.obj \
35
 
    ssl.obj sthreads.obj stunnel.obj gui.obj resources.obj
 
40
WINLIBS=-L$(OPENSSLDIR)/out -leay32 -lssl32 -lws2_32 -lgdi32 -mwindows
 
41
WINOBJ=client.obj log.obj options.obj protocol.obj network.obj \
 
42
    resolver.obj ssl.obj sthreads.obj stunnel.obj gui.obj resources.obj
36
43
WINGCC=i586-mingw32msvc-gcc
37
44
WINDRES=i586-mingw32msvc-windres
38
45