view src/configure @ 18410:b5b2e3b824c2 v8.1.2199

patch 8.1.2199: build failure when using normal features without GUI Commit: https://github.com/vim/vim/commit/a720be78d7978b3b853ff6c8af0d1721d6225378 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 22 21:45:19 2019 +0200 patch 8.1.2199: build failure when using normal features without GUI Problem: Build failure when using normal features without GUI and EXITFREE defined. Solution: Add #ifdef. (Dominique Pelle, closes #5106)
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Oct 2019 22:00:04 +0200
parents cd9471bd8e9e
children
line wrap: on
line source

#! /bin/sh
# run the automatically generated configure script
CONFIG_STATUS=auto/config.status \
	auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
result=$?

# Stupid autoconf 2.5x causes this file to be left behind.
if test -f configure.lineno; then rm -f configure.lineno; fi

exit $result