~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to modules/gzcompress/Makefile

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# gzcompress module makefile
 
3
#
 
4
 
5
# WARNING: do not run this directly, it should be run by the master Makefile
 
6
 
 
7
include ../../Makefile.defs
 
8
auto_gen=
 
9
NAME=gzcompress.so
 
10
 
 
11
ifeq ($(CROSS_COMPILE),)
 
12
        BUILDER = $(shell which pkg-config)
 
13
endif
 
14
 
 
15
ifneq ($(BUILDER),)
 
16
        DEFS += $(shell $(BUILDER) --cflags zlib)
 
17
        LIBS += $(shell $(BUILDER) --libs zlib)
 
18
else
 
19
        DEFS += -I$(LOCALBASE)/include
 
20
        LIBS += -L$(LOCALBASE)/lib -lz
 
21
endif
 
22
 
 
23
DEFS+=-DKAMAILIO_MOD_INTERFACE
 
24
 
 
25
include ../../Makefile.modules