Pete Williamson <petewil@chromium.org> (tiny change)
Add NaCl target * configure.ac: Add a target for Chromium Native Client (NaCl).
This commit is contained in:
parent
f21d9b6e44
commit
ee050a3b19
2 changed files with 15 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-03-27 Pete Williamson <petewil@chromium.org> (tiny change)
|
||||
|
||||
Add NaCl target
|
||||
* configure.ac: Add a target for Chromium Native Client (NaCl).
|
||||
|
||||
2015-03-29 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* build-aux/dir_top (File): Fix the description of selecting a
|
||||
|
|
15
configure.ac
15
configure.ac
|
@ -612,6 +612,11 @@ case "${canonical}" in
|
|||
## fi
|
||||
;;
|
||||
|
||||
## Chromium Native Client
|
||||
*-nacl )
|
||||
opsys=nacl
|
||||
;;
|
||||
|
||||
## Cygwin ports
|
||||
*-*-cygwin )
|
||||
opsys=cygwin
|
||||
|
@ -1263,7 +1268,7 @@ dnl The function dump-emacs will not be defined and temacs will do
|
|||
dnl (load "loadup") automatically unless told otherwise.
|
||||
test "x$CANNOT_DUMP" = "x" && CANNOT_DUMP=no
|
||||
case "$opsys" in
|
||||
your-opsys-here) CANNOT_DUMP=yes ;;
|
||||
nacl) CANNOT_DUMP=yes ;;
|
||||
esac
|
||||
|
||||
if test "$CANNOT_DUMP" = "yes"; then
|
||||
|
@ -2104,7 +2109,7 @@ hybrid_malloc=
|
|||
|
||||
case "$opsys" in
|
||||
## darwin ld insists on the use of malloc routines in the System framework.
|
||||
darwin|mingw32|sol2-10) system_malloc=yes ;;
|
||||
darwin | mingw32 | nacl | sol2-10) system_malloc=yes ;;
|
||||
cygwin) hybrid_malloc=yes;;
|
||||
esac
|
||||
|
||||
|
@ -4186,7 +4191,7 @@ emacs_broken_SIGIO=no
|
|||
case $opsys in
|
||||
dnl SIGIO exists, but the feature doesn't work in the way Emacs needs.
|
||||
dnl See eg <http://article.gmane.org/gmane.os.openbsd.ports/46831>.
|
||||
hpux* | irix6-5 | openbsd | sol2* | unixware )
|
||||
hpux* | irix6-5 | nacl | openbsd | sol2* | unixware )
|
||||
emacs_broken_SIGIO=yes
|
||||
;;
|
||||
|
||||
|
@ -4348,7 +4353,7 @@ case $opsys in
|
|||
AC_DEFINE(FIRST_PTY_LETTER, ['p'])
|
||||
;;
|
||||
|
||||
gnu-linux | gnu-kfreebsd | dragonfly | freebsd | netbsd )
|
||||
gnu-linux | gnu-kfreebsd | dragonfly | freebsd | netbsd | nacl )
|
||||
dnl if HAVE_GRANTPT
|
||||
if test "x$ac_cv_func_grantpt" = xyes; then
|
||||
AC_DEFINE(UNIX98_PTYS, 1, [Define if the system has Unix98 PTYs.])
|
||||
|
@ -4647,7 +4652,7 @@ esac
|
|||
|
||||
AC_CACHE_CHECK([for usable FIONREAD], [emacs_cv_usable_FIONREAD],
|
||||
[case $opsys in
|
||||
aix4-2)
|
||||
aix4-2 | nacl)
|
||||
dnl BUILD 9008 - FIONREAD problem still exists in X-Windows.
|
||||
emacs_cv_usable_FIONREAD=no
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue