diff options
| author | Jan Djärv | 2014-10-12 10:35:50 +0200 |
|---|---|---|
| committer | Jan Djärv | 2014-10-12 10:35:50 +0200 |
| commit | 9a265587d2f8ee034b8d00c4bcde070367fb0ad1 (patch) | |
| tree | a899b66588961d5cadeff1cb03324f68a47b2b65 /etc | |
| parent | 4c4c5b9121a550d006d1b57bc2ad97b0415cee9f (diff) | |
| download | emacs-9a265587d2f8ee034b8d00c4bcde070367fb0ad1.tar.gz emacs-9a265587d2f8ee034b8d00c4bcde070367fb0ad1.zip | |
Require OSX >= 10.6. Remove PowerPC unexec code.
* configure.ac: Require OSX 10.6. Remove NSInteger test,
use nsfont for Gnustep, macfont for OSX.
* etc/NEWS: OSX required is 10.6 or newer.
* src/Makefile.in: Replace nsfont.o macfont.o with ns_fontfile in
comment.
* src/macfont.h (MAC_FONT_FORMAT_ATTRIBUTE, MAC_FONT_FORMAT_BITMAP)
(mac_font_copy_non_synthetic_table): Remove versions for OSX < 10.6
* src/nsfns.m: Always include src/macfont.h on COCOA.
(ns_filename_from_panel, ns_directory_from_panel)
(Fx_create_frame, Fns_popup_font_panel, ns_run_file_dialog)
(Fns_read_file_name, Fns_list_services): Remove code for OSX < 10.6
* src/nsterm.m: Always include src/macfont.h on COCOA.
(ns_update_auto_hide_menu_bar, ns_draw_fringe_bitmap)
(ns_dumpglyphs_image, ns_check_menu_open)
(applicationDidFinishLaunching)
(antialiasThresholdDidChange:)
(keyDown:, toggleFullScreen:, setPosition:portion:whole:): Remove
checks for OSX <= 10.5/10.6.
(changeFont:): Use macfont on COCOA, nsfont on GNUSTEP.
(syms_of_nsterm): Call syms_of_macfont on COCOA, syms_of_nsfont on
GNUSTEP.
* src/macfont.m: Remove >= 1050 check.
(macfont_create_family_with_symbol)
(macfont_get_glyph_for_character)
(mac_font_get_glyphs_for_variants)
(mac_ctfont_create_available_families, syms_of_macfont): Remove
code for OSX < 10.6.
(mac_font_family_group, mac_font_family_compare): Remove, only used
for OSX < 10.6.
* src/nsimage.m (allocInitFromFile:): Remove code for OSX < 10.6.
* src/nsmenu.m (NSMenuDidBeginTrackingNotification): Remove.
(x_activate_menubar, trackingNotification:): Remove check for
OSX >= 10.5.
(menuNeedsUpdate:): Remove check for OSX < 10.5.
* src/nsterm.h (MAC_OS_X_VERSION_10_4, MAC_OS_X_VERSION_10_5): Remove.
(NS_HAVE_NSINTEGER): Remove block.
Remove >= OSX 10.6 tests.
* src/unexmacosx.c: Remove include ppc/reloc.h.
(unrelocate, copy_dysymtab): Remove PPC code.
(rebase_reloc_address): Remove, only used for PPC:
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 88df9c15500..57e70d8940f 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-12 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * NEWS: OSX required is 10.6 or newer. | ||
| 4 | |||
| 1 | 2014-10-09 Leo Liu <sdl.web@gmail.com> | 5 | 2014-10-09 Leo Liu <sdl.web@gmail.com> |
| 2 | 6 | ||
| 3 | * NEWS: Mention optional arg to terpri and new cl-lib functions. | 7 | * NEWS: Mention optional arg to terpri and new cl-lib functions. |
| @@ -36,6 +36,9 @@ should be able to work around the problem either by porting the Emacs | |||
| 36 | undumping code to GCC under IRIX, or by configuring --with-wide-int, | 36 | undumping code to GCC under IRIX, or by configuring --with-wide-int, |
| 37 | or by sticking with Emacs 24.4. | 37 | or by sticking with Emacs 24.4. |
| 38 | 38 | ||
| 39 | ** Building Emacs on OSX now requires 10.6 or newer. | ||
| 40 | That also means that PowerPC is not supported. | ||
| 41 | |||
| 39 | --- | 42 | --- |
| 40 | ** The configure option `--with-pkg-config-prog' has been removed. | 43 | ** The configure option `--with-pkg-config-prog' has been removed. |
| 41 | Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. | 44 | Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. |