From cd6ed4f967f17469effe552607b014e0c36fd0e1 Mon Sep 17 00:00:00 2001 From: Pete Williamson Date: Fri, 13 Mar 2015 11:56:36 -0700 Subject: [PATCH] Add NaCl to list of supported OSs This is the first part of adding support for the NativeClient (NaCl) build system to port emacs to NaCl. NaCl is a way to build native code binaries to run as apps or in tabs in the chromium browser. This is a part of an ongoing port to NaCl. See https://code.google.com/p/naclports/source/browse/trunk/src/ports/emacs/nacl.patch?spec=svn1621&r=1621 --- ChangeLog | 4 ++++ configure.ac | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4f6523e..d478283 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-03-13 Pete Williamson (tiny change) + + * configure.ac: Add a new supported OS type, NaCl + 2015-03-02 Robert Pluim (tiny change) * configure.ac: Error out if with-file-notification=w32 is diff --git a/configure.ac b/configure.ac index d65494a..7da1c06 100644 --- a/configure.ac +++ b/configure.ac @@ -718,6 +718,11 @@ case "${canonical}" in esac ;; + ## NativeClient for Chromium + *-nacl ) + opsys=nacl + ;; + * ) unported=yes ;; -- 2.2.0.rc0.207.ga3a616c