View | Details | Raw Unified | Return to bug 262713
Collapse All | Expand All

(-)meson.build (-3 / +3 lines)
Lines 374-380 else Link Here
374
    libintl_dep = cc.find_library('intl')
374
    libintl_dep = cc.find_library('intl')
375
  endif
375
  endif
376
else
376
else
377
  libintl_dep = cc.find_library('intl')
377
  libintl_dep = cc.find_library('intl',  dirs : ['/usr/local/lib'])
378
endif
378
endif
379
379
380
# Symbols
380
# Symbols
Lines 645-651 if get_option('daemon') Link Here
645
645
646
if get_option('daemon')
646
if get_option('daemon')
647
  # FIXME: make sure it's >= 2.2
647
  # FIXME: make sure it's >= 2.2
648
  ltdl_dep = cc.find_library('ltdl', required : true)
648
  ltdl_dep = cc.find_library('ltdl', required : true,  dirs : ['/usr/local/lib'])
649
649
650
  # FIXME: can meson support libtool -dlopen/-dlpreopen things?
650
  # FIXME: can meson support libtool -dlopen/-dlpreopen things?
651
  #        and do we still want to support this at all?
651
  #        and do we still want to support this at all?
Lines 654-660 if get_option('daemon') Link Here
654
  if get_option('database') == 'tdb'
654
  if get_option('database') == 'tdb'
655
    database_dep = dependency('tdb')
655
    database_dep = dependency('tdb')
656
  elif get_option('database') == 'gdbm'
656
  elif get_option('database') == 'gdbm'
657
    database_dep = cc.find_library('gdbm', required : true)
657
    database_dep = cc.find_library('gdbm', required : true, dirs : ['/usr/local/lib'])
658
  else
658
  else
659
    database_dep = dependency('', required: false)
659
    database_dep = dependency('', required: false)
660
  endif
660
  endif

Return to bug 262713