Initial import

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/xerces-c-3.0.0@1 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2014-07-19 07:44:42 +00:00
commit adea0d681b
4108 changed files with 701993 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
dnl @synopsis XERCES_PATH_DELIMITERS
dnl
dnl Configures the path delimiter characters.
dnl
dnl @category C
dnl @author James Berry
dnl @version 2005-06-07
dnl @license AllPermissive
dnl
dnl $Id: xerces_path_delimiters.m4 676848 2008-07-15 09:22:54Z borisk $
AC_DEFUN([XERCES_PATH_DELIMITERS],
[
AC_MSG_CHECKING([for which path delimiter characters to accept])
dnl We accept / in all cases.
path_delims=/
case $host_os in
msdos* | windows* | mingw*)
AC_DEFINE([XERCES_PATH_DELIMITER_BACKSLASH], 1, [Define to use backslash as an extra path delimiter character])
path_delims="${path_delims}\\"
;;
esac
AC_MSG_RESULT($path_delims)
]
)