fix mac build
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13822 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
0c1a558520
commit
3e8189ad8f
|
@ -108,6 +108,7 @@ AC_ARG_ENABLE(demorecog-plugin,
|
|||
|
||||
AM_CONDITIONAL([DEMORECOG_PLUGIN],[test "${enable_demorecog_plugin}" = "yes"])
|
||||
|
||||
AM_CONDITIONAL(ISMAC, [test `uname -s` = Darwin])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
|
|
|
@ -22,3 +22,7 @@ unimrcpclient_SOURCES = src/main.c \
|
|||
src/demo_discover_application.c \
|
||||
src/demo_util.c
|
||||
unimrcpclient_LDADD = $(top_builddir)/platforms/libunimrcp-client/libunimrcpclient.la
|
||||
|
||||
if ISMAC
|
||||
unimrcpclient_LDFLAGS = -framework CoreFoundation -framework SystemConfiguration
|
||||
endif
|
||||
|
|
|
@ -17,3 +17,7 @@ INCLUDES = -Iinclude \
|
|||
bin_PROGRAMS = unimrcpserver
|
||||
unimrcpserver_SOURCES = src/main.c src/uni_cmdline.c src/uni_daemon.c
|
||||
unimrcpserver_LDADD = $(top_builddir)/platforms/libunimrcp-server/libunimrcpserver.la
|
||||
|
||||
if ISMAC
|
||||
unimrcpserver_LDFLAGS = -framework CoreFoundation -framework SystemConfiguration
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue