Some fixes for build with autotools.

This commit is contained in:
Ghislain MARY 2016-11-15 16:04:03 +01:00
parent 07f8f0ac8e
commit 3819580b9a
5 changed files with 7 additions and 6 deletions

View file

@ -100,7 +100,7 @@ endif
endif
AM_CPPFLAGS= -I$(top_srcdir)/coreapi/ -I$(top_builddir)/coreapi/ \
AM_CPPFLAGS= -I$(top_srcdir)/include/ -I$(top_builddir)/coreapi/ \
$(MEDIASTREAMER_CFLAGS) \
$(ORTP_CFLAGS) $(BELLESIP_CFLAGS) \
$(STRICT_OPTIONS) $(STRICT_OPTIONS_CC) $(LIBGTK_CFLAGS) $(LIBGTKMAC_CFLAGS) $(IPV6_CFLAGS) \

View file

@ -2,6 +2,7 @@
AM_CPPFLAGS=\
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/coreapi
COMMON_CFLAGS=\

View file

@ -18,8 +18,8 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "linphonecore.h"
#include "linphonecore_utils.h"
#include "linphone/core.h"
#include "linphone/core_utils.h"
#if _MSC_VER
#include <io.h>
#endif

View file

@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
This file is a test program that plays several sound files and places a call simultatenously.
*/
#include "linphonecore_utils.h"
#include "linphone/core_utils.h"
static void play_finished(LsdPlayer *p) {
const char *filename = (const char *)lsd_player_get_user_pointer(p);

View file

@ -18,8 +18,8 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "linphonecore.h"
#include "linphonecore_utils.h"
#include "linphone/core.h"
#include "linphone/core_utils.h"
int main(int argc, char *argv[]) {
LinphoneProxyConfig *cfg;