Made flattened directory structure the default; print out that we're doing

the check, and what the result is


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@17177 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-07-09 15:26:27 +00:00
parent 385d3c2716
commit 54f16b53db
2 changed files with 20 additions and 9 deletions

View file

@ -1,3 +1,10 @@
Wed Jul 9 16:28:14 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Made flattened directory structure the default.
Explicitly print a message saying if we use flattened or
non-flattened directory structure.
* configure: Regenerated.
2003-07-06 Adam Fedor <fedor@gnu.org>
* configure.ac: Remove '^' match from gcc version sed script.

View file

@ -235,22 +235,26 @@ AC_SUBST(GNUSTEP_NETWORK_ROOT)
#--------------------------------------------------------------------
# Is the system flattened?
#--------------------------------------------------------------------
AC_MSG_CHECKING(for flattened directory structure)
AC_ARG_ENABLE(flattened,
[--enable-flattened Use flattened directory structure],
ac_cv_flattened=$enableval,
[--disable-flattened Disable flattened directory structure],
ac_cv_flattened=$enableval,
ac_cv_flattened="undefined")
if test "$ac_cv_flattened" = "yes"; then
GNUSTEP_FLATTENED=yes;
if test "$ac_cv_flattened" = "no"; then
GNUSTEP_FLATTENED=;
else
if test "$ac_cv_flattened" = "no"; then
GNUSTEP_FLATTENED=;
else
GNUSTEP_FLATTENED=$GNUSTEP_FLATTENED;
fi
GNUSTEP_FLATTENED=yes;
fi
AC_SUBST(GNUSTEP_FLATTENED)
if test "$GNUSTEP_FLATTENED" = "yes"; then
AC_MSG_RESULT(yes);
else
AC_MSG_RESULT(no);
fi
#--------------------------------------------------------------------
# Is the system multi-platform?
#--------------------------------------------------------------------