diff --git a/pjsip-apps/src/swig/java/Makefile b/pjsip-apps/src/swig/java/Makefile index c635266583..172a35571d 100644 --- a/pjsip-apps/src/swig/java/Makefile +++ b/pjsip-apps/src/swig/java/Makefile @@ -9,6 +9,9 @@ SWIG_FLAGS=-I../../../../pjlib/include \ SRC_DIR=../../../../pjsip/include SRCS=$(SRC_DIR)/pjsua2/endpoint.hpp $(SRC_DIR)/pjsua2/types.hpp +GEN_DOC = -doxygen +SWIG_FLAGS += $(GEN_DOC) + ifneq ($(findstring android,$(TARGET_NAME)),) OS=android ifeq ("$(JAVA_HOME)","") diff --git a/pjsip-apps/src/swig/python/Makefile b/pjsip-apps/src/swig/python/Makefile index ffe4f86ffe..7da0ed4772 100644 --- a/pjsip-apps/src/swig/python/Makefile +++ b/pjsip-apps/src/swig/python/Makefile @@ -26,10 +26,11 @@ SWIG_FLAGS=-I../../../../pjlib/include \ SRC_DIR=../../../../pjsip/include SRCS=$(SRC_DIR)/pjsua2/endpoint.hpp $(SRC_DIR)/pjsua2/types.hpp +GEN_DOC = -doxygen USE_THREADS = -threads # In SWIG 4.2 the build will fail if we use this flag #-DSWIG_NO_EXPORT_ITERATOR_METHODS -SWIG_FLAGS += -w312 $(USE_THREADS) +SWIG_FLAGS += -w312 $(USE_THREADS) $(GEN_DOC) .PHONY: all install uninstall diff --git a/pjsip/include/pjsua2/siptypes.hpp b/pjsip/include/pjsua2/siptypes.hpp index 9705bcc711..1c1914564b 100644 --- a/pjsip/include/pjsua2/siptypes.hpp +++ b/pjsip/include/pjsua2/siptypes.hpp @@ -492,7 +492,7 @@ struct TransportConfig : public PersistentObject /** * This specifies TLS settings for TLS transport. - * It’s only used when creating a SIP TLS transport. + * It's only used when creating a SIP TLS transport. */ TlsConfig tlsConfig;