Commit 3ae1d0aa authored by Neil Schemenauer's avatar Neil Schemenauer

Restore --with-suffix option. AC_EXEEXT doesn't aways do what the user wants

and an option is more friendly then manually setting a variable.
parent 547397c4
......@@ -171,6 +171,14 @@ fi
AC_PROG_CC
AC_EXEEXT
AC_MSG_CHECKING(for --with-suffix)
AC_ARG_WITH(suffix, [ --with-suffix=.exe set executable suffix],[
case $withval in
no) EXEEXT=;;
yes) EXEEXT=.exe;;
*) EXEEXT=$withval;;
esac])
AC_MSG_RESULT($EXEEXT)
case $MACHDEP in
bsdos*)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment