New options --with-local-root and --with-network-root

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9179 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-02-19 15:26:32 +00:00
parent d147563bb1
commit 0856818f43

View file

@ -57,6 +57,32 @@ fi
AC_SUBST(GNUSTEP_ROOT)
AC_SUBST(root_prefix)
#--------------------------------------------------------------------
# Process --with-local-root and --with-network-root options
#--------------------------------------------------------------------
AC_ARG_WITH(local-root,[
--with-local-root
Set the GNUSTEP_LOCAL_ROOT directory. Use this option if you want
to have the GNUSTEP_LOCAL_ROOT directory in a non-standard place. Example:
--with-local-root=/usr/local/GNUstep/Local
],
GNUSTEP_LOCAL_ROOT=$withval,
GNUSTEP_LOCAL_ROOT=$GNUSTEP_ROOT/Local
)
AC_ARG_WITH(network-root,[
--with-network-root
Set the GNUSTEP_NETWORK_ROOT directory. Use this option if you want
to have the GNUSTEP_NETWORK_ROOT directory in a non-standard place. Example:
--with-network-root=/usr/local/GNUstep/Network
],
GNUSTEP_NETWORK_ROOT=$withval,
GNUSTEP_NETWORK_ROOT=$GNUSTEP_ROOT/Local
)
AC_SUBST(GNUSTEP_LOCAL_ROOT)
AC_SUBST(GNUSTEP_NETWORK_ROOT)
#--------------------------------------------------------------------
# Is the system flattened?