mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Issue #2290 - Hunspell must be built into libxul on SunOS.
This commit is contained in:
parent
549f402d4d
commit
62f3da2156
2 changed files with 12 additions and 5 deletions
|
|
@ -19,11 +19,18 @@ SOURCES += [
|
|||
|
||||
DEFINES['BUILDING_LIBHUNSPELL'] = True
|
||||
|
||||
SharedLibrary('hunspell')
|
||||
# Hunspell must be built into libxul on SunOS. See UXP Issue #2290.
|
||||
if CONFIG['OS_TARGET'] == 'SunOS':
|
||||
|
||||
USE_LIBS += [
|
||||
'mozglue'
|
||||
]
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
else:
|
||||
|
||||
SharedLibrary('hunspell')
|
||||
|
||||
USE_LIBS += [
|
||||
'mozglue'
|
||||
]
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
'../glue',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue