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

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.2.1/pjlib/build/os-darwinos.mak

  • Committer: Package Import Robot
  • Author(s): Francois Marier, Francois Marier, Mark Purcell
  • Date: 2014-10-18 15:08:50 UTC
  • mfrom: (1.1.12)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20141018150850-2exfk34ckb15pcwi
Tags: 1.4.1-0.1
[ Francois Marier ]
* Non-maintainer upload
* New upstream release (closes: #759576, #741130)
  - debian/rules +PJPROJECT_VERSION := 2.2.1
  - add upstream patch to fix broken TLS support
  - add patch to fix pjproject regression

[ Mark Purcell ]
* Build-Depends:
  - sflphone-daemon + libavformat-dev, libavcodec-dev, libswscale-dev,
  libavdevice-dev, libavutil-dev
  - sflphone-gnome + libclutter-gtk-1.0-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# PJLIB OS specific configuration for Darwin/MacOSX 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 +=    addr_resolv_sock.o guid_simple.o \
 
11
                        log_writer_stdout.o os_core_unix.o \
 
12
                        os_error_unix.o os_time_unix.o \
 
13
                        os_timestamp_common.o os_timestamp_posix.o \
 
14
                        pool_policy_malloc.o sock_bsd.o sock_select.o
 
15
 
 
16
export PJLIB_OBJS += ioqueue_select.o 
 
17
#export PJLIB_OBJS += ioqueue_epoll.o
 
18
 
 
19
export PJLIB_OBJS += file_access_unistd.o file_io_ansi.o
 
20
 
 
21
#
 
22
# TEST_OBJS are operating system specific object files to be included in
 
23
# the test application.
 
24
#
 
25
export TEST_OBJS +=     main.o
 
26
 
 
27
#
 
28
# Additional LDFLAGS for pjlib-test
 
29
#
 
30
export TEST_LDFLAGS += -lm 
 
31
 
 
32
#
 
33
# TARGETS are make targets in the Makefile, to be executed for this given
 
34
# operating system.
 
35
#
 
36
export TARGETS      =   $(PJLIB_LIB) $(PJLIB_SONAME) $(TEST_EXE)
 
37