mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Merge pull request #788 from aitjcize/avlinking
Fix libtoxav linking issue
This commit is contained in:
commit
c47e727b5d
|
@ -34,7 +34,7 @@ before_script:
|
|||
#installing vpx
|
||||
- git clone http://git.chromium.org/webm/libvpx.git > /dev/null
|
||||
- cd libvpx
|
||||
- ./configure > /dev/null
|
||||
- ./configure --enable-shared > /dev/null
|
||||
- make -j3 >/dev/null
|
||||
- sudo make install > /dev/null
|
||||
- cd ..
|
||||
|
|
|
@ -487,7 +487,7 @@ fi
|
|||
if test "x$BUILD_AV" = "xyes"; then
|
||||
# toxcore lib needs an global?
|
||||
# So far this works okay
|
||||
AV_LIBS="$OPUS_LIBS $VPX_LIBS -ltoxcore"
|
||||
AV_LIBS="$OPUS_LIBS $VPX_LIBS"
|
||||
AC_SUBST(AV_LIBS)
|
||||
|
||||
AV_CFLAGS="$OPUS_CFLAGS $VPX_CFLAGS"
|
||||
|
|
|
@ -26,7 +26,8 @@ libtoxav_la_LDFLAGS = $(TOXAV_LT_LDFLAGS) \
|
|||
$(NACL_LDFLAGS) \
|
||||
$(EXTRA_LT_LDFLAGS)
|
||||
|
||||
libtoxav_la_LIBS = $(NACL_LIBS) \
|
||||
libtoxav_la_LIBADD = libtoxcore.la \
|
||||
$(NACL_LIBS) \
|
||||
$(PTHREAD_LIBS) \
|
||||
$(AV_LIBS)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user