From: Dan Nicolaescu Date: Thu, 8 Jul 2010 02:37:32 +0000 (-0700) Subject: * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~51^2~81^2~5 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d734dbbd24fca96383d2583c36d2a805181cf306;p=emacs.git * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS and MSWindows. --- diff --git a/ChangeLog b/ChangeLog index f0d1e728fc0..acf57413fb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-07-08 Dan Nicolaescu + + * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS + and MSWindows. + 2010-07-07 Andreas Schwab * configure.in: Don't check for bcopy, bcmp, bzero. Don't include diff --git a/configure b/configure index 6b41a679a0e..13beb1f07a7 100755 --- a/configure +++ b/configure @@ -5484,6 +5484,8 @@ esac UNEXEC_OBJ=unexelf.o case "$opsys" in + # MSDOS uses unexec.o + # MSWindows uses unexw32.o aix4-2) UNEXEC_OBJ=unexaix.o ;; diff --git a/configure.in b/configure.in index b8ac8a50fb8..373cc799d0b 100644 --- a/configure.in +++ b/configure.in @@ -890,6 +890,8 @@ AC_SUBST(CANNOT_DUMP) UNEXEC_OBJ=unexelf.o case "$opsys" in + # MSDOS uses unexec.o + # MSWindows uses unexw32.o aix4-2) UNEXEC_OBJ=unexaix.o ;;