Add make support for SASL on Unix

This commit is contained in:
Berke Viktor
2012-07-17 19:19:48 +02:00
parent 6d55ce363b
commit e5f4c4d217
3 changed files with 41 additions and 4 deletions

View File

@ -17,5 +17,9 @@ if DO_TCL
tcldir = tcl
endif
if DO_SASL
sasldir = sasl
endif
#SUBDIRS = . $(pythondir) $(perldir) mailcheck xdcc
SUBDIRS = . $(pythondir) $(perldir) $(tcldir)
SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir)

10
plugins/sasl/Makefile.am Normal file
View File

@ -0,0 +1,10 @@
EXTRA_DIST =
libdir = $(hexchatlibdir)/plugins
lib_LTLIBRARIES = sasl.la
sasl_la_SOURCES = sasl.c
sasl_la_LDFLAGS = -avoid-version -module
sasl_la_LIBADD =
INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/..