~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/build/common.mak

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (1.1.11)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20140128182336-3xenud1kbnwmf3mz
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Include host/target/compiler selection.
 
3
# This will export CC_NAME, MACHINE_NAME, OS_NAME, and HOST_NAME variables.
 
4
#
 
5
include $(PJDIR)/build.mak
 
6
 
 
7
#
 
8
# Include global compiler specific definitions
 
9
#
 
10
include $(PJDIR)/build/cc-$(CC_NAME).mak
 
11
 
 
12
#
 
13
# (Optionally) Include compiler specific configuration that is
 
14
# specific to this project. This configuration file is
 
15
# located in this directory.
 
16
#
 
17
-include cc-$(CC_NAME).mak
 
18
 
 
19
#
 
20
# Include auto configured compiler specification.
 
21
# This will override the compiler settings above.
 
22
# Currently this is made OPTIONAL, to prevent people
 
23
# from getting errors because they don't re-run ./configure
 
24
# after downloading new PJSIP.
 
25
#
 
26
-include $(PJDIR)/build/cc-auto.mak
 
27
 
 
28
#
 
29
# Include global machine specific definitions
 
30
#
 
31
include $(PJDIR)/build/m-$(MACHINE_NAME).mak
 
32
-include m-$(MACHINE_NAME).mak
 
33
 
 
34
#
 
35
# Include target OS specific definitions
 
36
#
 
37
include $(PJDIR)/build/os-$(OS_NAME).mak
 
38
 
 
39
#
 
40
# (Optionally) Include target OS specific configuration that is
 
41
# specific to this project. This configuration file is
 
42
# located in this directory.
 
43
#
 
44
-include os-$(OS_NAME).mak
 
45
 
 
46
#
 
47
# Include host specific definitions
 
48
#
 
49
include $(PJDIR)/build/host-$(HOST_NAME).mak
 
50
 
 
51
#
 
52
# (Optionally) Include host specific configuration that is
 
53
# specific to this project. This configuration file is
 
54
# located in this directory.
 
55
#
 
56
-include host-$(HOST_NAME).mak
 
57
 
 
58
#
 
59
# Include global user configuration, if any
 
60
#
 
61
-include $(PJDIR)/user.mak
 
62
 
 
63