Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ Depends:
gsettings-desktop-schemas,
gvfs (>= 1.3.2),
libglib2.0-data,
libjemalloc2,
libnemo-extension1 (= ${binary:Version}),
nemo-data (= ${source:Version}),
shared-mime-info (>= 0.50),
Expand Down
4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ cinnamon= dependency('cinnamon-desktop', version: '>=4.8.0')
gail = dependency('gail-3.0')
x11 = dependency('x11')
xapp = dependency('xapp', version: '>=2.0.0')
jemalloc = dependency('jemalloc', required: true)

# Facultative dependencies

Expand Down Expand Up @@ -171,7 +172,8 @@ nemo_definitions = [
'-DNEMO_DATADIR="@0@"'.format(nemoDataPath),
'-DNEMO_EXTENSIONDIR="@0@"'.format(nemoExtensionPath),
'-DLIBEXECDIR="@0@"'.format(libExecPath),
'-DG_LOG_DOMAIN="Nemo"'
'-DG_LOG_DOMAIN="Nemo"',
'-DUSE_JEMALLOC'
]

po_subdir = join_paths(meson.project_source_root(), 'po')
Expand Down
4 changes: 3 additions & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if enableEmptyView
endif

nemo_deps = [ cinnamon, gail, glib, gtk, math,
egg, nemo_extension, nemo_private, xapp ]
egg, nemo_extension, nemo_private, xapp, jemalloc ]

if exempi_enabled
nemo_deps += exempi
Expand All @@ -118,6 +118,7 @@ nemo = executable('nemo',
include_directories: [ rootInclude ],
c_args: nemo_definitions,
dependencies: nemo_deps,
link_args: ['-Wl,--no-as-needed', '-ljemalloc', '-Wl,--as-needed'],
install: true
)

Expand All @@ -126,6 +127,7 @@ nemoDesktop = executable('nemo-desktop',
include_directories: [ rootInclude],
c_args: nemo_definitions,
dependencies: nemo_deps,
link_args: ['-Wl,--no-as-needed', '-ljemalloc', '-Wl,--as-needed'],
install: true
)

Expand Down
Loading