1
1

Default case for slang AC_TRY_RUNs in configure.in

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@220 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
Chris Allegretta 2000-09-13 18:12:05 +00:00
родитель 9c35eb0def
Коммит 90bd712c88
3 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -2,6 +2,9 @@ CVS code -
- General - General
- Changed _POSIX_VERSION checks in regex code to HAVE_REGEX_H, - Changed _POSIX_VERSION checks in regex code to HAVE_REGEX_H,
added check for regex.h in configure.in. added check for regex.h in configure.in.
- configure.in:
- Added default case for cross-compiling to get rid of annoying
AC_TRY_RUN warning.
- cut.c: - cut.c:
do_cut_text() do_cut_text()
- Don't immediately abort if we're on filebot and the marker is - Don't immediately abort if we're on filebot and the marker is

6
configure поставляемый
Просмотреть файл

@ -1330,7 +1330,7 @@ echo "configure:1330: checking for SLtt_initialize in -lslang" >&5
_libs=$LIBS _libs=$LIBS
LIBS="$LIBS -lslang" LIBS="$LIBS -lslang"
if test "$cross_compiling" = yes; then if test "$cross_compiling" = yes; then
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } echo "configure: warning: *** Can not use slang when cross-compiling" 1>&2
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 1337 "configure" #line 1337 "configure"
@ -1409,7 +1409,7 @@ fi
echo "configure:1410: checking for SLtt_initialize in -lslang $tcap" >&5 echo "configure:1410: checking for SLtt_initialize in -lslang $tcap" >&5
LIBS="$LIBS $tcap" LIBS="$LIBS $tcap"
if test "$cross_compiling" = yes; then if test "$cross_compiling" = yes; then
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } echo "configure: warning: *** Can not use slang when cross-compiling" 1>&2
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 1416 "configure" #line 1416 "configure"
@ -1444,7 +1444,7 @@ else
echo "configure:1445: checking for SLtt_initialize in -lslang $tcap -lm" >&5 echo "configure:1445: checking for SLtt_initialize in -lslang $tcap -lm" >&5
LIBS="$LIBS -lm" LIBS="$LIBS -lm"
if test "$cross_compiling" = yes; then if test "$cross_compiling" = yes; then
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } echo "configure: warning: *** Can not use slang when cross-compiling" 1>&2
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 1451 "configure" #line 1451 "configure"

Просмотреть файл

@ -94,7 +94,10 @@ int main () { SLtt_initialize (NULL); return 0; }],
CURSES_LIB="-lslang $tcap -lm" CURSES_LIB="-lslang $tcap -lm"
fi fi
CURSES_LIB_NAME=slang], CURSES_LIB_NAME=slang],
[AC_MSG_RESULT(no)])])]), [AC_MSG_RESULT(no)],
AC_MSG_WARN([*** Can not use slang when cross-compiling]))],
AC_MSG_WARN([*** Can not use slang when cross-compiling]))],
AC_MSG_WARN([*** Can not use slang when cross-compiling])),
AC_MSG_ERROR([ AC_MSG_ERROR([
*** The header file slcurses.h was not found. If you wish to use *** The header file slcurses.h was not found. If you wish to use
*** slang support this header file is required. Please either *** slang support this header file is required. Please either