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

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/pjlib/build/os-linux-kernel.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
# OS specific configuration for Linux Kernel module target. 
 
3
#
 
4
 
 
5
#
 
6
# PJLIB_OBJS specified here are object files to be included in PJLIB
 
7
# (the library) for this specific operating system. Object files common 
 
8
# to all operating systems should go in Makefile instead.
 
9
#
 
10
export PJLIB_OBJS +=    compat/sigjmp.o compat/setjmp_i386.o \
 
11
                        compat/longjmp_i386.o compat/string.o \
 
12
                        addr_resolv_linux_kernel.o \
 
13
                        guid_simple.o \
 
14
                        log_writer_printk.o pool_policy_kmalloc.o \
 
15
                        os_error_linux_kernel.o os_core_linux_kernel.o \
 
16
                        os_time_linux_kernel.o os_timestamp_common.o \
 
17
                        os_timestamp_linux_kernel.o \
 
18
                        sock_linux_kernel.o sock_select.o
 
19
 
 
20
# For IOQueue, we can use either epoll or select
 
21
export PJLIB_OBJS +=    ioqueue_epoll.o 
 
22
#export PJLIB_OBJS +=   ioqueue_select.o 
 
23
 
 
24
#
 
25
# TEST_OBJS are operating system specific object files to be included in
 
26
# the test application.
 
27
#
 
28
export TEST_OBJS +=     main_mod.o
 
29
 
 
30
#
 
31
# Additional CFLAGS
 
32
#
 
33
export TEST_CFLAGS += -msoft-float
 
34
 
 
35
#
 
36
# Additional LD_FLAGS for this target.
 
37
#
 
38
export TEST_LDFLAGS += -lgcc
 
39
 
 
40
 
 
41
#
 
42
# TARGETS are make targets in the Makefile, to be executed for this given
 
43
# operating system.
 
44
#
 
45
export TARGETS :=       ../lib/pjlib.ko ../lib/pjlib-test.ko
 
46
 
 
47