~ubuntu-branches/ubuntu/natty/lua-sec/natty

« back to all changes in this revision

Viewing changes to debian/Makefile.Debian.conf

  • Committer: Bazaar Package Importer
  • Author(s): Enrico Tassi
  • Date: 2009-11-13 22:18:42 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091113221842-1l4hj1rattecvtu2
Tags: 0.4-3
build depend on liblua5.1-policy-dev >= 26 to specify linker flags
for statical linkage (Closes: #555567)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
### things relative to the C library part
7
7
CLIB_CFLAGS=$(shell pkg-config --cflags libssl)
8
8
CLIB_LDFLAGS=$(shell pkg-config --libs libssl)
 
9
CLIB_LDFLAGS_STATIC=$(shell pkg-config --libs libssl --static)
9
10
CLIB_OBJS= src/buffer.lo src/context.lo src/io.lo src/ssl.lo src/timeout.lo src/usocket.lo
10
 
VERSION_INFO=0:0:0
 
11
VERSION_INFO=1:0:0
11
12
LUA_MODNAME_CPART=ssl.core
12
13
 
13
14
### things relative to the lua library part
14
15
LUA_HEADER=
15
 
LUA_SOURCES=ssl.lua
 
16
LUA_SOURCES=ssl.lua https.lua
16
17
LUA_MODNAME=ssl
17
18
LUA_TEST=test.lua
18
19
 
30
31
### (called in this order)
31
32
pre-all-hook::
32
33
        cp src/ssl.lua .
 
34
        cp src/https.lua .
33
35
post-all-hook::
34
36
pre-test-hook::
35
37
        ln -s ssl/core.so ssl.so
50
52
        rm samples/oneshot/ssl.lua
51
53
pre-clean-hook::
52
54
post-clean-hook::
53
 
        rm ssl.lua
 
55
        rm ssl.lua https.lua