This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

use consistent _cv_ namespace in libf2c/configure


I think the libf2c configure should use the g77_cv_ prefix
consistently.  Introducing f77_cv_ seems unnecessary and that should
be available for general compiler feature testing (not that that works
very well with Fortran).

1998-11-30  Dave Love  <d.love@dl.ac.uk>

	* configure.in: Replace `f77_cv_...' with `g77_cv_...' in last
	change.

Index: configure.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/libf2c/configure.in,v
retrieving revision 1.21
diff -u -p -r1.21 configure.in
--- configure.in	1998/11/26 01:48:26	1.21
+++ configure.in	1998/11/30 23:03:06
@@ -40,21 +40,21 @@ AC_CONFIG_AUX_DIR($topsrcdir)
 compiler_name=f771
 rm -f skip-this-dir
 AC_MSG_CHECKING(if compiler $compiler_name has been built)
-AC_CACHE_VAL(f77_cv_compiler_exists,
-	[f77_cv_compiler_exists=yes
+AC_CACHE_VAL(g77_cv_compiler_exists,
+	[g77_cv_compiler_exists=yes
 	if test -n "$r"; then
 		if test -d "$r"/gcc; then
 			if test -f "$r"/gcc/$compiler_name; then
 				true
 			else
-				f77_cv_compiler_exists=no
+				g77_cv_compiler_exists=no
 				echo "rm -f config.cache config.log multilib.out" > skip-this-dir
 			fi
 		fi
 	fi
 	])
-AC_MSG_RESULT($f77_cv_compiler_exists)
-if test x$f77_cv_compiler_exists = xno
+AC_MSG_RESULT($g77_cv_compiler_exists)
+if test x$g77_cv_compiler_exists = xno
 then
 	rm -f Makefile conftest* confdefs* core
 	exit 0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]