summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/string.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-08-01 23:01:55 +0000
committerBenny Prijono <bennylp@teluu.com>2006-08-01 23:01:55 +0000
commitdfeb62c4ba214a74fc7464743bac71d78f120fbb (patch)
treea506132341dcf06ebda41d6a30699c92786b28fe /pjlib/include/pj/string.h
parent7f63047582f9d4e1f3997ce862d0ce1aa1ffd40f (diff)
Fix PJLIB on WinCE:
- Added CPU and OS autodetection feature in config.h. For target CPU type, now we don't need to specify PJ_M_* anymore. - Fix stricmp_alnum() link error on WinCE - Exclude error message test on WincE, since WinCE doesn't have full error reporting capability as Win32. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@640 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/string.h')
-rw-r--r--pjlib/include/pj/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/include/pj/string.h b/pjlib/include/pj/string.h
index 4466567e..78926cb7 100644
--- a/pjlib/include/pj/string.h
+++ b/pjlib/include/pj/string.h
@@ -373,7 +373,7 @@ PJ_IDECL(int) pj_stricmp(const pj_str_t *str1, const pj_str_t *str2);
PJ_IDECL(int) strnicmp_alnum(const char *str1, const char *str2,
int len);
#else
-#define strnicmp_alnum strnicmp
+#define strnicmp_alnum pj_ansi_strnicmp
#endif
/**