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

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.2.1/pjsip/include/pjsua2/config.hpp

  • 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
/* $Id: config.hpp 4704 2014-01-16 05:30:46Z ming $ */
 
2
/*
 
3
 * Copyright (C) 2013 Teluu Inc. (http://www.teluu.com)
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 */
 
19
#ifndef __PJSUA2_CONFIG_HPP__
 
20
#define __PJSUA2_CONFIG_HPP__
 
21
 
 
22
/**
 
23
 * @file pjsua2/config.hpp
 
24
 * @brief PJSUA2 Base Agent Operation
 
25
 */
 
26
#include <pjsua-lib/pjsua.h>
 
27
 
 
28
/**
 
29
 * @defgroup PJSUA2_CFG_Compile Compile time settings
 
30
 * @ingroup PJSUA2_DS
 
31
 * @{
 
32
 */
 
33
 
 
34
/**
 
35
 * Specify if the Error exception info should contain operation and source
 
36
 * file information.
 
37
 */
 
38
#ifndef PJSUA2_ERROR_HAS_EXTRA_INFO
 
39
#   define PJSUA2_ERROR_HAS_EXTRA_INFO          1
 
40
#endif
 
41
 
 
42
 
 
43
/**
 
44
 * @}  PJSUA2_CFG
 
45
 */
 
46
 
 
47
#endif  /* __PJSUA2_CONFIG_HPP__ */