From b5dcb1e5e39f16a8aa207f48f2bd889348110d25 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 27 Jan 2022 12:41:55 +0100 Subject: Cygwin: configure: Define default valus for target specific variables Define default values for DLL_ENTRY, DIN_FILE, and TLSOFFSETS_H and drop them from the x86_64-specific branch. Keep the mechanism intact to allow other target CPUs if there ever will be. Signed-off-by: Corinna Vinschen --- winsup/configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'winsup') diff --git a/winsup/configure.ac b/winsup/configure.ac index c0a43fc..5d83c23 100644 --- a/winsup/configure.ac +++ b/winsup/configure.ac @@ -65,12 +65,12 @@ no) ;; esac ]) +DLL_ENTRY="dll_entry" +DIN_FILE="${target_cpu}.din" +TLSOFFSETS_H="tlsoffsets-${target_cpu}.h" + case "$target_cpu" in - x86_64) - DLL_ENTRY="dll_entry" - DIN_FILE="x86_64.din" - TLSOFFSETS_H="tlsoffsets64.h" - ;; + x86_64) ;; *) AC_MSG_ERROR([Invalid target processor "$target_cpu"]) ;; esac -- cgit v1.1