mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
8e16d8a76f
- Use .mk files directly (no need for a SMB_*_MK() macro when adding a new SUBSYSTEM, MODULE or BINARY). This allows addition of new modules and subsystems without running configure - Add support for generating .dot files with the Samba4 dependency tree (as used by the graphviz and springgraph utilities) (This used to be commit 64826da834e26ee0488674e27a0eae36491ee179)
18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
dnl # LIB GTK SMB subsystem
|
|
|
|
SMB_EXT_LIB_FROM_PKGCONFIG(gtk, [glib-2.0 gtk+-2.0 >= 2.4])
|
|
SMB_SUBSYSTEM_ENABLE(GTKSMB, NO)
|
|
SMB_BINARY_ENABLE(gregedit, NO)
|
|
SMB_BINARY_ENABLE(gwcrontab, NO)
|
|
SMB_BINARY_ENABLE(gwsam, NO)
|
|
SMB_BINARY_ENABLE(gepdump, NO)
|
|
|
|
if test t$SMB_EXT_LIB_ENABLE_gtk = tYES; then
|
|
SMB_SUBSYSTEM_ENABLE(GTKSMB, YES)
|
|
SMB_BINARY_ENABLE(gregedit, YES)
|
|
SMB_BINARY_ENABLE(gwcrontab, YES)
|
|
SMB_BINARY_ENABLE(gwsam, YES)
|
|
SMB_BINARY_ENABLE(gepdump, YES)
|
|
AC_DEFINE(HAVE_GTK, 1, [Whether GTK+ is available])
|
|
fi
|