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]

PATCH: do not reference missing directory in configure


Top level configure.in contains code to add dosrel to the
list of configured directories, for DOS and Windows targets.
However there is no such directory and we do fine without it.

I didn't remove reference to another missing dir - libtermcap
which is used on CygWin. I don't know if this directory is
used in other Cygnus tree instances.

2000-12-30  Laurynas Biveinis  <lauras@softhome.net>

	* configure.in: do not add dosrel to $configdirs on certain platforms.

Index: configure.in
===================================================================
RCS file: /cvs/gcc/egcs/configure.in,v
retrieving revision 1.83
diff -u -r1.83 configure.in
--- configure.in        2000/12/18 18:08:07     1.83
+++ configure.in        2000/12/30 17:25:12
@@ -540,12 +540,8 @@
 # Configure extra directories which are host specific

 case "${host}" in
-       i[3456]86-*-go32*)
-         configdirs="$configdirs dosrel" ;;
-       i[3456]86-*-mingw32*)
-         configdirs="$configdirs dosrel" ;;
        *-cygwin*)
-         configdirs="$configdirs libtermcap dosrel" ;;
+         configdirs="$configdirs libtermcap" ;;
 esac

 # Remove more programs from consideration, based on the host or

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