Ticket #941: Lots of compilation wanings in libg7221 in basic_op.h with gcc
 - set default inlining behavior for all basic_op functions to disabled


git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@2937 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/third_party/g7221/common/config.h b/third_party/g7221/common/config.h
index 925a1da..4faec78 100644
--- a/third_party/g7221/common/config.h
+++ b/third_party/g7221/common/config.h
@@ -4,12 +4,15 @@
 #include <pj/config.h>
 
 /**
- * Expand basic operation functions as inline.
+ * Expand all basic operation functions as inline. Even if this is set to
+ * zero, some critical functions would still be expanded as inline. Note
+ * also that enabling this may generate some warning messages about functions
+ * not being referenced (with gcc).
  *
- * Default: 1 (yes)
+ * Default: 0 (no)
  */
 #ifndef PJMEDIA_LIBG7221_FUNCS_INLINED
-#   define PJMEDIA_LIBG7221_FUNCS_INLINED   1
+#   define PJMEDIA_LIBG7221_FUNCS_INLINED   0
 #endif
 
 /* Declare/define a function that may be expanded as inline. */