2005-08-09 23:04:57 +00:00
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2005-08-09 23:04:57 +00:00
|
|
|
|
2012-08-04 18:26:44 +00:00
|
|
|
DEPTH = @DEPTH@
|
2005-08-09 23:04:57 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2005-08-18 15:22:33 +00:00
|
|
|
MODULE = auth
|
|
|
|
LIBRARY_NAME = auth
|
2005-08-09 23:04:57 +00:00
|
|
|
IS_COMPONENT = 1
|
2005-08-09 23:06:52 +00:00
|
|
|
EXPORT_LIBRARY = 1
|
2005-08-18 15:22:33 +00:00
|
|
|
MODULE_NAME = nsAuthModule
|
2005-12-21 18:37:02 +00:00
|
|
|
LIBXUL_LIBRARY = 1
|
2005-08-09 23:04:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
CPPSRCS = \
|
2005-08-18 15:22:33 +00:00
|
|
|
nsAuthFactory.cpp \
|
2005-08-09 23:06:39 +00:00
|
|
|
nsHttpNegotiateAuth.cpp \
|
2005-08-18 15:22:33 +00:00
|
|
|
nsAuthGSSAPI.cpp \
|
2011-06-12 07:49:00 +00:00
|
|
|
nsAuthSASL.cpp \
|
|
|
|
$(NULL)
|
2005-08-09 23:06:47 +00:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2005-08-18 15:22:33 +00:00
|
|
|
LOCAL_INCLUDES += -DUSE_SSPI
|
|
|
|
CPPSRCS += nsAuthSSPI.cpp
|
2007-03-08 01:48:25 +00:00
|
|
|
else
|
|
|
|
CPPSRCS += nsAuthSambaNTLM.cpp
|
2005-08-09 23:06:47 +00:00
|
|
|
endif
|
2005-08-09 23:04:57 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|