diff options
author | Po Lu <luangruo@yahoo.com> | 2022-05-22 11:18:32 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-05-22 11:18:32 +0800 |
commit | 714970f5967f2153bb95e35823dbd917e0e5b60b (patch) | |
tree | ce1e97cf3c07b539236d7e71fb908436237d8e76 /src/nsfns.m | |
parent | e5e474baaec391fe2a84fab1ebae978d9355dc2f (diff) | |
download | emacs-714970f5967f2153bb95e35823dbd917e0e5b60b.tar.gz emacs-714970f5967f2153bb95e35823dbd917e0e5b60b.tar.bz2 emacs-714970f5967f2153bb95e35823dbd917e0e5b60b.zip |
Fix GNUstep build
* src/nsfns.m (ns_implicitly_set_icon_type): Don't use UTType if
GNUstep.
Diffstat (limited to 'src/nsfns.m')
-rw-r--r-- | src/nsfns.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nsfns.m b/src/nsfns.m index a2f9c26b550..818ba6f40f1 100644 --- a/src/nsfns.m +++ b/src/nsfns.m @@ -847,6 +847,7 @@ ns_implicitly_set_icon_type (struct frame *f) if (image == nil) { +#ifndef NS_IMPL_GNUSTEP #if MAC_OS_X_VERSION_MAX_ALLOWED >= 120000 #if MAC_OS_X_VERSION_MIN_REQUIRED < 120000 if ([workspace respondsToSelector: @selector (iconForContentType:)]) @@ -857,6 +858,7 @@ ns_implicitly_set_icon_type (struct frame *f) else #endif #endif +#endif #if MAC_OS_X_VERSION_MIN_REQUIRED < 120000 image = [[workspace iconForFileType: @"text"] retain]; #endif |