diff options
| author | YAMAMOTO Mitsuharu | 2006-11-24 08:45:55 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-11-24 08:45:55 +0000 |
| commit | 8b45f5fe0f0155d429499b82e3dc725cf68d5916 (patch) | |
| tree | d42e1704b00850e12b03a5fb96cbe067e386995c | |
| parent | 6b28caea07879860836a5194a4e7aad769b1f5d6 (diff) | |
| download | emacs-8b45f5fe0f0155d429499b82e3dc725cf68d5916.tar.gz emacs-8b45f5fe0f0155d429499b82e3dc725cf68d5916.zip | |
Add descriptions about configuration and invocation.
Capitalize `Carbon'.
| -rw-r--r-- | mac/ChangeLog | 5 | ||||
| -rw-r--r-- | mac/INSTALL | 30 |
2 files changed, 24 insertions, 11 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog index 2632849e9e2..038d749ec2f 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * INSTALL: Add descriptions about configuration and invocation. | ||
| 4 | Capitalize `Carbon'. | ||
| 5 | |||
| 1 | 2006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 6 | 2006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 7 | ||
| 3 | * inc/config.h: Sync with src/config.in. | 8 | * inc/config.h: Sync with src/config.in. |
diff --git a/mac/INSTALL b/mac/INSTALL index 477f9b328c4..de9e76071c4 100644 --- a/mac/INSTALL +++ b/mac/INSTALL | |||
| @@ -29,7 +29,7 @@ you try to install into /usr (with ./configure --prefix=/usr), then you | |||
| 29 | must install as root using the sudo command. However, it is not | 29 | must install as root using the sudo command. However, it is not |
| 30 | recommended; see the notes section below for more details. | 30 | recommended; see the notes section below for more details. |
| 31 | 31 | ||
| 32 | The --enable-carbon-app specifies that the carbon GUI application | 32 | The --enable-carbon-app specifies that the Carbon GUI application |
| 33 | should be installed into /Application. If you want it to install in a | 33 | should be installed into /Application. If you want it to install in a |
| 34 | different location, specify --enable-carbon-app=<mydir> | 34 | different location, specify --enable-carbon-app=<mydir> |
| 35 | 35 | ||
| @@ -43,23 +43,31 @@ GNU texinfo package are given below. Alternatively, you can type `make | |||
| 43 | -k' instead of `make' and safely ignore the error messages and use the | 43 | -k' instead of `make' and safely ignore the error messages and use the |
| 44 | existing info files. | 44 | existing info files. |
| 45 | 45 | ||
| 46 | After Emacs is installed, you can run it by typing `emacs -nw' from a | 46 | After Emacs is installed, you can run a text-only terminal version by |
| 47 | terminal (make sure your path contains /usr/local/bin) or by | 47 | typing `emacs' from a terminal (make sure your path contains |
| 48 | double-clicking on /Applications/Emacs.app in the Finder. To start | 48 | /usr/local/bin) or a GUI application by double-clicking on |
| 49 | Emacs as a GUI application from the terminal, the pathname to the | 49 | /Applications/Emacs.app in the Finder. Even in the terminal version, |
| 50 | executable in the bundle, i.e., | 50 | some Carbon-specific functions such as `mac-set-file-creator' are |
| 51 | still meaningful. | ||
| 52 | |||
| 53 | To start Emacs as a GUI application from the terminal, the pathname to | ||
| 54 | the executable in the bundle, i.e., | ||
| 51 | 55 | ||
| 52 | /Application/Emacs.app/Contents/MacOS/Emacs | 56 | /Application/Emacs.app/Contents/MacOS/Emacs |
| 53 | 57 | ||
| 54 | must be typed to the shell to enable Emacs to locate its resources | 58 | must be typed to the shell to enable Emacs to locate its resources |
| 55 | correctly. You may want to create a symlink or alias to this path to | 59 | correctly. You may want to create an alias to this path to quickly |
| 56 | quickly access both the terminal and GUI versions. | 60 | access both the terminal and GUI versions. You can specify some |
| 61 | standard Emacs options when invoking Emacs in this way. | ||
| 57 | 62 | ||
| 58 | If you are building Emacs to run on Mac OS X and X Window System, | 63 | Emacs on Mac OS X is not configured to use X11 unless either it is |
| 59 | instead of typing `./configure' above, type | 64 | requested or the use of Carbon is disabled explicitly. So, if you are |
| 65 | building Emacs to run on X Window System, you need to specify like: | ||
| 60 | 66 | ||
| 61 | ./configure --with-x | 67 | ./configure --with-x |
| 62 | 68 | ||
| 69 | Note that the Carbon-specific functions mentioned above are not | ||
| 70 | available on the X11-enabled build. | ||
| 63 | 71 | ||
| 64 | To use colors in a terminal, put the following lines in the file | 72 | To use colors in a terminal, put the following lines in the file |
| 65 | ~/.termcap and log in again. | 73 | ~/.termcap and log in again. |
| @@ -130,7 +138,7 @@ If you are intending to build a binary distribution of Emacs, there is | |||
| 130 | a script that will greatly simplify the process. It is called | 138 | a script that will greatly simplify the process. It is called |
| 131 | make-package and it is contained in this directory. It will generate | 139 | make-package and it is contained in this directory. It will generate |
| 132 | a disc image containing a installer bundle. By default the installer | 140 | a disc image containing a installer bundle. By default the installer |
| 133 | will place the emacs common files in /usr/local/* and the carbon | 141 | will place the emacs common files in /usr/local/* and the Carbon |
| 134 | application in /Applications. Typical usage would be | 142 | application in /Applications. Typical usage would be |
| 135 | 143 | ||
| 136 | ./make-package | 144 | ./make-package |