emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#29643: closed (27.0.50; Deprecation warnings on ma


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#29643: closed (27.0.50; Deprecation warnings on macOS High Sierra)
Date: Sun, 17 Dec 2017 00:09:01 +0000

Your message dated Sun, 17 Dec 2017 00:08:42 +0000
with message-id <address@hidden>
and subject line Re: bug#29643: [PATCH] Silence macOS 10.13 deprecation notices 
(Bug#29643)
has caused the debbugs.gnu.org bug report #29643,
regarding 27.0.50; Deprecation warnings on macOS High Sierra
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
29643: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=29643
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 27.0.50; Deprecation warnings on macOS High Sierra Date: Sun, 10 Dec 2017 14:57:35 +0100
When building Emacs on macOS High Sierra, I get the following
deprecation warnings:

nsterm.m:6019:18: warning: 'setOnMouseEntered:' is deprecated: first deprecated 
in macOS 10.13 - setOnMouseEntered is unused and should not be called
      [-Wdeprecated-declarations]
  [currentCursor setOnMouseEntered: YES];
                 ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h:77:1:
 note: 
      'setOnMouseEntered:' has been explicitly marked deprecated here
- (void)setOnMouseEntered:(BOOL)flag NS_DEPRECATED_MAC(10_0, 10_13, 
"setOnMouseEntered is unused and should not be called");
^
nsterm.m:8749:27: warning: 'setOnMouseEntered:' is deprecated: first deprecated 
in macOS 10.13 - setOnMouseEntered is unused and should not be called
      [-Wdeprecated-declarations]
  [[NSCursor arrowCursor] setOnMouseEntered: YES];
                          ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h:77:1:
 note: 
      'setOnMouseEntered:' has been explicitly marked deprecated here
- (void)setOnMouseEntered:(BOOL)flag NS_DEPRECATED_MAC(10_0, 10_13, 
"setOnMouseEntered is unused and should not be called");
^
2 warnings generated.
  CC       nsfns.o
nsfns.m:1899:10: warning: 'NSBackingStoreRetained' is deprecated: first 
deprecated in macOS 10.13 [-Wdeprecated-declarations]
    case NSBackingStoreRetained:
         ^~~~~~~~~~~~~~~~~~~~~~
         NSBackingStoreBuffered
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:96:5:
 note: 
      'NSBackingStoreRetained' has been explicitly marked deprecated here
    NSBackingStoreRetained 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSBackingStoreBuffered", 10.0, 10.13) = 0,
    ^
nsfns.m:1901:10: warning: 'NSBackingStoreNonretained' is deprecated: first 
deprecated in macOS 10.13 [-Wdeprecated-declarations]
    case NSBackingStoreNonretained:
         ^~~~~~~~~~~~~~~~~~~~~~~~~
         NSBackingStoreBuffered
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:97:5:
 note: 
      'NSBackingStoreNonretained' has been explicitly marked deprecated here
    NSBackingStoreNonretained 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSBackingStoreBuffered", 10.0, 10.13) = 1,
    ^
nsfns.m:1956:10: warning: 'NSBackingStoreRetained' is deprecated: first 
deprecated in macOS 10.13 [-Wdeprecated-declarations]
    case NSBackingStoreRetained:
         ^~~~~~~~~~~~~~~~~~~~~~
         NSBackingStoreBuffered
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:96:5:
 note: 
      'NSBackingStoreRetained' has been explicitly marked deprecated here
    NSBackingStoreRetained 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSBackingStoreBuffered", 10.0, 10.13) = 0,
    ^
nsfns.m:1957:10: warning: 'NSBackingStoreNonretained' is deprecated: first 
deprecated in macOS 10.13 [-Wdeprecated-declarations]
    case NSBackingStoreNonretained:
         ^~~~~~~~~~~~~~~~~~~~~~~~~
         NSBackingStoreBuffered
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:97:5:
 note: 
      'NSBackingStoreNonretained' has been explicitly marked deprecated here
    NSBackingStoreNonretained 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSBackingStoreBuffered", 10.0, 10.13) = 1,
    ^
4 warnings generated.
  CC       nsmenu.o
  CC       nsselect.o
nsselect.m:57:38: warning: 'NSGeneralPboard' is deprecated: first deprecated in 
macOS 10.13 [-Wdeprecated-declarations]
  if (EQ (sym, QCLIPBOARD))   return NSGeneralPboard;
                                     ^~~~~~~~~~~~~~~
                                     NSPasteboardNameGeneral
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:343:32:
 note: 
      'NSGeneralPboard' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardName NSGeneralPboard 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSPasteboardNameGeneral", 10.0, 10.13);
                               ^
nsselect.m:73:27: warning: 'NSGeneralPboard' is deprecated: first deprecated in 
macOS 10.13 [-Wdeprecated-declarations]
  if ([t isEqualToString: NSGeneralPboard])
                          ^~~~~~~~~~~~~~~
                          NSPasteboardNameGeneral
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:343:32:
 note: 
      'NSGeneralPboard' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardName NSGeneralPboard 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSPasteboardNameGeneral", 10.0, 10.13);
                               ^
nsselect.m:472:36: warning: 'NSGeneralPboard' is deprecated: first deprecated 
in macOS 10.13 [-Wdeprecated-declarations]
             [NSNumber numberWithLong:0], NSGeneralPboard,
                                          ^~~~~~~~~~~~~~~
                                          NSPasteboardNameGeneral
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:343:32:
 note: 
      'NSGeneralPboard' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardName NSGeneralPboard 
NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSPasteboardNameGeneral", 10.0, 10.13);



In GNU Emacs 27.0.50 (build 20, x86_64-apple-darwin17.2.0, NS appkit-1561.10 
Version 10.13.1 (Build 17B1003))
 of 2017-12-10 built on p
Repository revision: ab203e36d5f84a99b6d4b04f1a22ba028be750e3
Windowing system distributor 'Apple', version 10.3.1561
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.

Configured using:
 'configure --enable-checking --enable-check-lisp-object-type
 --enable-gtk-deprecation-warnings --with-modules --without-xml2
 --without-pop --with-mailutils --enable-gcc-warnings=warn-only
 MAKEINFO=/usr/local/opt/texinfo/bin/makeinfo 'CFLAGS=-O0 -ggdb3'
 LDFLAGS=-O0'

Configured features:
NOTIFY ACL GNUTLS ZLIB TOOLKIT_SCROLL_BARS NS MODULES JSON

Important settings:
  value of $LANG: de_DE.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message rmc puny seq byte-opt gv
bytecomp byte-compile cconv cl-loaddefs cl-lib dired dired-loaddefs
format-spec rfc822 mml easymenu mml-sec password-cache epa derived epg
epg-config gnus-util rmail rmail-loaddefs mm-decode mm-bodies mm-encode
mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047
rfc2045 ietf-drums mm-util mail-prsvr mail-utils elec-pair time-date
tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type
mwheel term/ns-win ns-win ucs-normalize mule-util term/common-win
tool-bar dnd fontset image regexp-opt fringe tabulated-list replace
newcomment text-mode elisp-mode lisp-mode prog-mode register page
menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock
font-lock syntax facemenu font-core term/tty-colors frame cl-generic
cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech
european ethiopic indian cyrillic chinese composite charscript charprop
case-table epa-hook jka-cmpr-hook help simple abbrev obarray minibuffer
cl-preloaded nadvice loaddefs button faces cus-face macroexp files
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget hashtable-print-readable backquote kqueue cocoa ns
multi-tty make-network-process emacs)

Memory information:
((conses 16 204682 7183)
 (symbols 48 20164 1)
 (miscs 40 57 176)
 (strings 32 28803 1608)
 (string-bytes 1 764939)
 (vectors 16 35163)
 (vector-slots 8 719992 9580)
 (floats 8 52 64)
 (intervals 56 214 0)
 (buffers 992 11))



--- End Message ---
--- Begin Message --- Subject: Re: bug#29643: [PATCH] Silence macOS 10.13 deprecation notices (Bug#29643) Date: Sun, 17 Dec 2017 00:08:42 +0000 User-agent: Mutt/1.9.1 (2017-09-22)
On Sat, Dec 16, 2017 at 06:13:19PM +0000, Philipp Stephani wrote:
> Thanks, the patch works fine.

Thanks! Pushed to master.
-- 
Alan Third


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]