diff options
Diffstat (limited to 'winsup/cygwin/configure.ac')
-rw-r--r-- | winsup/cygwin/configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/winsup/cygwin/configure.ac b/winsup/cygwin/configure.ac index f59a5ae32..4de46ef35 100644 --- a/winsup/cygwin/configure.ac +++ b/winsup/cygwin/configure.ac @@ -77,14 +77,14 @@ case "$target_cpu" in DEF_DLL_ENTRY="dll_entry@12" DIN_FILE="i686.din" TLSOFFSETS_H="tlsoffsets.h" - CONFIG_DIR="i386" ;; + ;; x86_64) DLL_NAME="cygwin1.dll" DLL_ENTRY="dll_entry" DEF_DLL_ENTRY="dll_entry" DIN_FILE="x86_64.din" TLSOFFSETS_H="tlsoffsets64.h" - CONFIG_DIR="x86_64" ;; + ;; *) AC_MSG_ERROR(Invalid target processor \"$target_cpu\") ;; esac @@ -95,5 +95,4 @@ AC_SUBST(DLL_ENTRY) AC_SUBST(DEF_DLL_ENTRY) AC_SUBST(DIN_FILE) AC_SUBST(TLSOFFSETS_H) -AC_SUBST(CONFIG_DIR) AC_OUTPUT(Makefile) |