You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
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) ] )
|