Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
9fdecfa6
Commit
9fdecfa6
authored
9 years ago
by
Gautier Pelloux-Prayer
Browse files
Options
Download
Patches
Plain Diff
autotools: add mac.m for autotools build process
parent
d6910509
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
.gitignore
configure.ac
+3
-0
configure.ac
coreapi/help/realtimetext_sender.c
+1
-1
coreapi/help/realtimetext_sender.c
gtk/Makefile.am
+6
-2
gtk/Makefile.am
with
11 additions
and
3 deletions
.gitignore
+
1
−
0
View file @
9fdecfa6
...
...
@@ -98,3 +98,4 @@ tester/stereo-record.wav
git-clang-format.diff
*.log
.bc_tester_utils.tmp
tools/lp-test-ecc
This diff is collapsed.
Click to expand it.
configure.ac
+
3
−
0
View file @
9fdecfa6
...
...
@@ -39,6 +39,7 @@ AC_CONFIG_MACRO_DIR([m4])
dnl do not put anythingelse before AC_PROG_CC unless checking if macro still work for clang
AC_PROG_CXX(["xcrun clang++" g++])
AC_PROG_CC(["xcrun clang" gcc])
AC_PROG_OBJC(["xcrun clang" gcc])
gl_LD_OUTPUT_DEF
...
...
@@ -595,6 +596,8 @@ AC_ARG_WITH(ffmpeg,
[ ffmpegdir=/usr ]
)
AM_CONDITIONAL([BUILD_MACOS], [test "x$build_macos" = "xyes"])
if test "$video" = "true"; then
if test "$enable_x11" = "true"; then
...
...
This diff is collapsed.
Click to expand it.
coreapi/help/realtimetext_sender.c
+
1
−
1
View file @
9fdecfa6
...
...
@@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* @defgroup real_time_text Real Time Text Sender
* @defgroup real_time_text
_sender
Real Time Text Sender
* @ingroup tutorials
This program just send chat message in real time to dest uri. Use realtimetext_receiver to receive message.
usage: ./realtimetext_sender sip:localhost:5060
...
...
This diff is collapsed.
Click to expand it.
gtk/Makefile.am
+
6
−
2
View file @
9fdecfa6
...
...
@@ -74,6 +74,7 @@ linphone_SOURCES+= \
status_notifier.h
endif
linphone_LDADD
=
$(
top_builddir
)
/coreapi/liblinphone.la
\
$(
LIBGTK_LIBS
)
$(
NOTIFY1_LIBS
)
$(
NOTIFY4_LIBS
)
$(
LIBGTKMAC_LIBS
)
$(
INTLLIBS
)
$(
SQLITE3_LIBS
)
$(
BELLESIP_LIBS
)
...
...
@@ -92,17 +93,20 @@ endif
uidir
=
$(
datadir
)
/linphone
dist_ui_DATA
=
$(
UI_FILES
)
$(
PIXMAPS
)
$(
top_srcdir
)
/COPYING
if
BUILD_MACOS
linphone_SOURCES
+=
mac.m
linphone_LDFLAGS
+=
-framework
Cocoa
endif
endif
AM_CFLAGS
=
-DIN_LINPHONE
-I
$(
top_srcdir
)
/coreapi/
-I
$(
top_builddir
)
/coreapi/
\
AM_C
PP
FLAGS
=
-DIN_LINPHONE
-I
$(
top_srcdir
)
/coreapi/
-I
$(
top_builddir
)
/coreapi/
\
$(
MEDIASTREAMER_CFLAGS
)
\
$(
ORTP_CFLAGS
)
$(
BELLESIP_CFLAGS
)
\
$(
STRICT_OPTIONS
)
$(
STRICT_OPTIONS_CC
)
$(
LIBGTK_CFLAGS
)
$(
LIBGTKMAC_CFLAGS
)
$(
IPV6_CFLAGS
)
\
$(
TUNNEL_CFLAGS
)
\
$(
SQLITE3_CFLAGS
)
version_date.h
:
$(top_srcdir)/configure.ac
echo
"#define LINPHONE_VERSION_DATE
\"
$(
VERSION
)
-
`
date
+%y%m%d
`
\"
"
>
$@
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets