You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2005/05/30 16:10:25 UTC

svn commit: r179056 - /xerces/c/branches/jberry/3.0-unstable/m4

Author: jberry
Date: Mon May 30 07:10:24 2005
New Revision: 179056

URL: http://svn.apache.org/viewcvs?rev=179056&view=rev
Log:
small tweaks to explanations

Modified:
    xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4
    xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4
    xerces/c/branches/jberry/3.0-unstable/m4/xerces_pretty_make.m4
    xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4

Modified: xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4?rev=179056&r1=179055&r2=179056&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4 (original)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4 Mon May 30 07:10:24 2005
@@ -22,7 +22,7 @@
 	ml_list=
 	
 	# Check for inmemory msgloader
-	AC_MSG_CHECKING([for whether we support the InMemory MsgLoader])
+	AC_MSG_CHECKING([whether we support the InMemory MsgLoader])
 	list_add=
 	AS_IF([true], [
 		AC_ARG_ENABLE([msgloader-inmemory],
@@ -33,7 +33,7 @@
 			[list_add=inmemory])
 	])
 	AS_IF([test x"$list_add" != x],
-		[ml_list="$ml_list $list_add"; AC_MSG_RESULT(yes)],
+		[ml_list="$ml_list -$list_add-"; AC_MSG_RESULT(yes)],
 		[AC_MSG_RESULT(no)]
 	)
 	
@@ -56,7 +56,7 @@
 		
 		# Check for each msgloader, in implicit rank order
 		case $ml_list in
-		*inmemory*)
+		*-inmemory-*)
 			AC_DEFINE([XERCES_USE_MSGLOADER_INMEMORY], 1, [Define to use the InMemory MsgLoader])
 			msgloader=inmemory
 			break

Modified: xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4?rev=179056&r1=179055&r2=179056&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4 (original)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4 Mon May 30 07:10:24 2005
@@ -20,7 +20,7 @@
 	######################################################
 	na_list=
 	
-	AC_MSG_CHECKING([for whether we can support the libcurl-based NetAccessor])
+	AC_MSG_CHECKING([whether we can support the libcurl-based NetAccessor])
 	list_add=
 	# TODO: netaccessor-curl is disabled for now until actually written: (false just below)
 	AS_IF([false && test x"$xerces_cv_curl_prefix" != x], [
@@ -37,7 +37,7 @@
 	)
 	
 	AC_REQUIRE([XERCES_LIBWWW_PREFIX])	
-	AC_MSG_CHECKING([for whether we can support the libwww-based NetAccessor])
+	AC_MSG_CHECKING([whether we can support the libwww-based NetAccessor])
 	list_add=
 	AS_IF([test x"$xerces_cv_libwww_prefix" != x], [
 		AC_ARG_ENABLE([netaccessor-libwww],
@@ -45,7 +45,7 @@
 				[Enable libwww-based NetAccessor support]),
 			[AS_IF([test x"$enableval" = xyes],
 				[list_add=LIBWWW])],
-			[na_list=libwww])
+			[list_add=libwww])
 	])
 	AS_IF([test x"$list_add" != x],
 		[na_list="$na_list -$list_add-"; AC_MSG_RESULT(yes)],
@@ -53,7 +53,7 @@
 	)
 	
 	
-	AC_MSG_CHECKING([for whether we can support the sockets-based NetAccessor])
+	AC_MSG_CHECKING([whether we can support the sockets-based NetAccessor])
 	list_add=
 	AS_IF([test x"$ac_cv_header_sys_socket_h" = xyes],
 		[AC_ARG_ENABLE([netaccessor-socket],
@@ -72,7 +72,7 @@
 	case $host_os in
 	darwin*)
 		list_add=
-		AC_MSG_CHECKING([for whether we can support the CFURL NetAccessor (Mac OS X)])
+		AC_MSG_CHECKING([whether we can support the CFURL NetAccessor (Mac OS X)])
 		AS_IF([test x"$ac_cv_header_CoreServices_CoreServices_h" = xyes], [
 			AC_ARG_ENABLE([netaccessor-cfurl],
 				AS_HELP_STRING([--enable-netaccessor-cfurl],
@@ -90,7 +90,7 @@
 	windows*)
 		# TODO: FINALIZE THIS TEST FOR AVAILABILITY OF WINSOCK NETACCESSOR
 		list_add=
-		AC_MSG_CHECKING([for whether we can support the WinSock NetAccessor (Windows)])
+		AC_MSG_CHECKING([whether we can support the WinSock NetAccessor (Windows)])
 		AC_ARG_ENABLE([netaccessor-winsock],
 			AS_HELP_STRING([--enable-netaccessor-winsock],
 				[Enable winsock-based NetAccessor support]),

Modified: xerces/c/branches/jberry/3.0-unstable/m4/xerces_pretty_make.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_pretty_make.m4?rev=179056&r1=179055&r2=179056&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_pretty_make.m4 (original)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_pretty_make.m4 Mon May 30 07:10:24 2005
@@ -12,7 +12,7 @@
 
 AC_DEFUN([XERCES_PRETTY_MAKE],
 	[
-	AC_MSG_CHECKING([for whether we'll generate prettier make output])
+	AC_MSG_CHECKING([whether we'll generate prettier make output])
 	AC_ARG_ENABLE([pretty-make],
 		AS_HELP_STRING([--pretty-make],
 			[Enable prettier make output]),

Modified: xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4?rev=179056&r1=179055&r2=179056&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4 (original)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4 Mon May 30 07:10:24 2005
@@ -25,7 +25,7 @@
 	no_iconv=false
 	AC_CHECK_HEADERS([wchar.h], [], [no_iconv=true])
 	AC_CHECK_FUNCS([mblen wcstombs mbstowcs], [], [no_iconv=true])
-	AC_MSG_CHECKING([for whether we can support the iconv Transcoder])
+	AC_MSG_CHECKING([whether we can support the iconv Transcoder])
 	list_add=
 	AS_IF([! $no_iconv], [
 		AC_ARG_ENABLE([transcoder-iconv],
@@ -42,7 +42,7 @@
 
 	# Check for ICU
 	AC_REQUIRE([XERCES_ICU_PREFIX])
-	AC_MSG_CHECKING([for whether we can support the ICU Transcoder])
+	AC_MSG_CHECKING([whether we can support the ICU Transcoder])
 	list_add=
 	AS_IF([test x"$xerces_cv_icu_prefix" != x], [
 		AC_ARG_ENABLE([transcoder-icu],
@@ -62,7 +62,7 @@
 	list_add=
 	case $host_os in
 	darwin*)
-		AC_MSG_CHECKING([for whether we can support the MacOSUnicodeConverter Transcoder])
+		AC_MSG_CHECKING([whether we can support the MacOSUnicodeConverter Transcoder])
 		AS_IF([test x"$ac_cv_header_CoreServices_CoreServices_h" = xyes], [
 			AC_ARG_ENABLE([transcoder-macosunicodeconverter],
 				AS_HELP_STRING([--enable-transcoder-macosunicodeconverter],



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org