~ubuntu-branches/ubuntu/trusty/irssi-plugin-xmpp/trusty

« back to all changes in this revision

Viewing changes to .pc/hardening.patch/config.mk

  • Committer: Package Import Robot
  • Author(s): Florian Schlichting, Florian Schlichting
  • Date: 2014-01-03 00:25:20 UTC
  • mfrom: (2.2.7 sid)
  • Revision ID: package-import@ubuntu.com-20140103002520-4ztm9phbq47vn4bl
Tags: 0.52+git20140102-1
[ Florian Schlichting ]
* Import Upstream version 0.52+git20140102
* Add VCS-* fields for collab-maint on alioth
* Add upstream git URL to Source field in debian/copyright
* Drop patches plucked from upstream CVS
* Refresh hardening.patch (offset, drop hunk fixed upstream)
* Provide xmpp-admin.pl script by Seth Difley
* Add GTalk-MUC-support.patch, plucked from github/freemandrew
* Add support for XMPP-PGP, plucked from github/singpolyma
* New useless-dependency-on-libidn.patch, to fix a lintian warning
* Declare compliance with Debian Policy 3.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# paths
2
 
PREFIX ?= /usr/local
3
 
 
4
 
# where are the sources of irssi?
5
 
IRSSI_INCLUDE ?= ${PREFIX}/include/irssi
6
 
# where should be installed the module?
7
 
IRSSI_LIB ?= ${PREFIX}/lib/irssi
8
 
# where should be installed the documentation?
9
 
IRSSI_DOC ?= ${PREFIX}/share/doc/irssi
10
 
# where should be installed the help for commands ?
11
 
IRSSI_HELP ?= ${PREFIX}/share/irssi/help
12
 
 
13
 
# includes and libs
14
 
INCS =  ${LIB_INCS} \
15
 
        -I../../src/core \
16
 
        -I${IRSSI_INCLUDE} \
17
 
        -I${IRSSI_INCLUDE}/src \
18
 
        -I${IRSSI_INCLUDE}/src/core \
19
 
        -I$(IRSSI_INCLUDE)/src/fe-common/core \
20
 
        -I$(IRSSI_INCLUDE)/src/fe-text \
21
 
        `pkg-config --cflags loudmouth-1.0`
22
 
LIBS =  ${LIB_LIBS}
23
 
 
24
 
# flags
25
 
CFLAGS = -fPIC -std=c99 -DUOFF_T_LONG
26
 
LDFLAGS = -shared
27
 
 
28
 
# debug
29
 
#CFLAGS += -W -g -Wall -Wno-unused-parameter
30
 
 
31
 
# compiler and linker
32
 
CC = cc