aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac19
1 files changed, 10 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 3feac73bed3..d92b95cb545 100644
--- a/configure.ac
+++ b/configure.ac
@@ -259,7 +259,7 @@ AC_ARG_WITH([pop],
259 [], 259 [],
260 [case $host in 260 [case $host in
261 *-mingw*) with_pop=yes;; 261 *-mingw*) with_pop=yes;;
262 *) with_pop=no;; 262 *) with_pop=no-by-default;;
263 esac]) 263 esac])
264if test "$with_pop" = yes; then 264if test "$with_pop" = yes; then
265 AC_DEFINE(MAIL_USE_POP) 265 AC_DEFINE(MAIL_USE_POP)
@@ -1320,7 +1320,7 @@ dnl For a long time, -znocombreloc was added to LDFLAGS rather than
1320dnl LD_SWITCH_SYSTEM_TEMACS. That is: 1320dnl LD_SWITCH_SYSTEM_TEMACS. That is:
1321dnl * inappropriate, as LDFLAGS is a user option but this is essential. 1321dnl * inappropriate, as LDFLAGS is a user option but this is essential.
1322dnl Eg "make LDFLAGS=... all" could run into problems, 1322dnl Eg "make LDFLAGS=... all" could run into problems,
1323dnl http://bugs.debian.org/684788 1323dnl https://bugs.debian.org/684788
1324dnl * unnecessary, since temacs is the only thing that actually needs it. 1324dnl * unnecessary, since temacs is the only thing that actually needs it.
1325dnl Indeed this is where it was originally, prior to: 1325dnl Indeed this is where it was originally, prior to:
1326dnl https://lists.gnu.org/archive/html/emacs-pretest-bug/2004-03/msg00170.html 1326dnl https://lists.gnu.org/archive/html/emacs-pretest-bug/2004-03/msg00170.html
@@ -1399,10 +1399,6 @@ case "$opsys" in
1399 # The resulting binary has a complete symbol table, and is better 1399 # The resulting binary has a complete symbol table, and is better
1400 # for debugging and other observability tools (debuggers, pstack, etc). 1400 # for debugging and other observability tools (debuggers, pstack, etc).
1401 # 1401 #
1402 # If you encounter a problem using dldump(), please consider sending
1403 # a message to the OpenSolaris tools-linking mailing list:
1404 # http://mail.opensolaris.org/mailman/listinfo/tools-linking
1405 #
1406 # It is likely that dldump() works with older Solaris too, but this has 1402 # It is likely that dldump() works with older Solaris too, but this has
1407 # not been tested, so for now this change is for Solaris 10 or newer. 1403 # not been tested, so for now this change is for Solaris 10 or newer.
1408 UNEXEC_OBJ=unexsol.o 1404 UNEXEC_OBJ=unexsol.o
@@ -2651,7 +2647,7 @@ if test x"$pkg_check_gtk" = xyes; then
2651 closing open displays. This is no problem if you just use 2647 closing open displays. This is no problem if you just use
2652 one display, but if you use more than one and close one of them 2648 one display, but if you use more than one and close one of them
2653 Emacs may crash. 2649 Emacs may crash.
2654 See http://bugzilla.gnome.org/show_bug.cgi?id=85715]]) 2650 See https://bugzilla.gnome.org/show_bug.cgi?id=85715]])
2655 fi 2651 fi
2656 2652
2657fi 2653fi
@@ -4464,7 +4460,6 @@ emacs_broken_SIGIO=no
4464 4460
4465case $opsys in 4461case $opsys in
4466 dnl SIGIO exists, but the feature doesn't work in the way Emacs needs. 4462 dnl SIGIO exists, but the feature doesn't work in the way Emacs needs.
4467 dnl See eg <http://article.gmane.org/gmane.os.openbsd.ports/46831>.
4468 hpux* | nacl | openbsd | sol2* | unixware ) 4463 hpux* | nacl | openbsd | sol2* | unixware )
4469 emacs_broken_SIGIO=yes 4464 emacs_broken_SIGIO=yes
4470 ;; 4465 ;;
@@ -5575,6 +5570,12 @@ if test ! "$with_mailutils"; then
5575 AC_MSG_WARN([This configuration installs a 'movemail' program 5570 AC_MSG_WARN([This configuration installs a 'movemail' program
5576that retrieves POP3 email via only insecure channels. 5571that retrieves POP3 email via only insecure channels.
5577To omit insecure POP3, you can use '$0 --without-pop'.]) 5572To omit insecure POP3, you can use '$0 --without-pop'.])
5573 elif test "$with_pop" = no-by-default; then
5574 AC_MSG_WARN([This configuration installs a 'movemail' program
5575that does not retrieve POP3 email. By default, Emacs 25 and earlier
5576installed a 'movemail' program that retrieved POP3 email via only
5577insecure channels, a practice that is no longer recommended but that
5578you can continue to support by using '$0 --with-pop'.])
5578 fi 5579 fi
5579 5580
5580 case $opsys in 5581 case $opsys in
@@ -5586,7 +5587,7 @@ To omit insecure POP3, you can use '$0 --without-pop'.])
5586 case `(movemail --version) 2>/dev/null` in 5587 case `(movemail --version) 2>/dev/null` in
5587 *Mailutils*) ;; 5588 *Mailutils*) ;;
5588 *) emacs_fix_movemail="install GNU Mailutils 5589 *) emacs_fix_movemail="install GNU Mailutils
5589<http://mailutils.org> and $emacs_fix_movemail";; 5590<https://mailutils.org> and $emacs_fix_movemail";;
5590 esac 5591 esac
5591 AC_MSG_NOTICE([You might want to $emacs_fix_movemail.]);; 5592 AC_MSG_NOTICE([You might want to $emacs_fix_movemail.]);;
5592 esac 5593 esac