Skip to content

Commit

Permalink
Re #1768: fixed wrong JNI compilation flags used by pjsua2 Android sa…
Browse files Browse the repository at this point in the history
…mple app

git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4841 74dad513-b988-da41-8d7b-12977e46ad98
  • Loading branch information
bennylp committed May 9, 2014
1 parent f15d148 commit 75c20a2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pjsip-apps/src/swig/java/android/jni/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ LOCAL_PATH := $(PJDIR)/pjsip-apps/src/swig/java/android
include $(CLEAR_VARS)

LOCAL_MODULE := libpjsua2
LOCAL_CFLAGS := $(APP_CFLAGS) -frtti -fexceptions
LOCAL_LDFLAGS := $(APP_LDFLAGS)
LOCAL_LDLIBS := $(APP_LDLIBS)
LOCAL_CFLAGS := $(APP_CXXFLAGS) -frtti -fexceptions
LOCAL_LDFLAGS := $(APP_LDXXFLAGS)
LOCAL_LDLIBS := $(APP_LDXXLIBS)
#LOCAL_SHARED_LIBRARIES := $(APP_LDXXLIBS)
LOCAL_SRC_FILES := ../output/pjsua2_wrap.cpp

include $(BUILD_SHARED_LIBRARY)

0 comments on commit 75c20a2

Please sign in to comment.