Remove --with-dist check; it breaks normal configure

This commit is contained in:
Mark Hessling
2001-03-02 22:33:48 +00:00
parent ec9712a7f6
commit 25265c712a
2 changed files with 122 additions and 381 deletions

489
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -1,20 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(curspriv.h)
dnl allow --with-dist to build a distribution only
AC_ARG_WITH(dist,
[ --with-dist specify this just to build a distribution],
[with_dist=$withval],
[with_dist=no],
)
if test "$with_dist" != no; then
SET_MAKE=""
AC_SUBST(SET_MAKE)
AC_OUTPUT(Makefile)
exit
fi
dnl ---------------------- check for C compiler -----------------
dnl Checks for one of the C compilers below - change if yours not there.
CC_LIST="gcc acc cc c89"