From 03d00d51ba420a1d92b9232568b15fb41fcf31aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Thu, 19 Dec 2002 19:03:31 +0000 Subject: [PATCH] Fix if-then-else-fi structure. --- configure | 5 +++-- configure.in | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/configure b/configure index a5e51b3ff39..b825d151ddc 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.375 . +# From configure.in Revision: 1.376 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53 for python 2.3. # @@ -11654,9 +11654,10 @@ if test -z "$with_universal_newlines" then with_universal_newlines="yes" fi if test "$with_universal_newlines" = "no" +then echo --without-universal-newlines is unsupported, see README exit 1 -then +else cat >>confdefs.h <<\_ACEOF #define WITH_UNIVERSAL_NEWLINES 1 diff --git a/configure.in b/configure.in index c6fd6a1902f..a3b8c675a42 100644 --- a/configure.in +++ b/configure.in @@ -1607,9 +1607,10 @@ if test -z "$with_universal_newlines" then with_universal_newlines="yes" fi if test "$with_universal_newlines" = "no" +then echo --without-universal-newlines is unsupported, see README exit 1 -then +else AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1, [Define if you want to read files with foreign newlines.]) fi