view src/configure @ 15890:de2c2a378cd1 v8.1.0951

patch 8.1.0951: using WIN64 even though it is never defined commit https://github.com/vim/vim/commit/44b443c5db7a372b2da519be15dd962c552e1355 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 18 22:14:18 2019 +0100 patch 8.1.0951: using WIN64 even though it is never defined Problem: Using WIN64 even though it is never defined. Solution: Only use _WIN64. (Ken Takata, closes https://github.com/vim/vim/issues/3997)
author Bram Moolenaar <Bram@vim.org>
date Mon, 18 Feb 2019 22:15:08 +0100
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