From eea4e5155ed3102ee21c57958a29603ed0f5166f Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Wed, 26 Aug 2009 11:44:28 +0300 Subject: Import passwords from the ephy/gecko profile on first run. This feature requires NSS, so NSS is added as an optional dependency, enabled by default. Can be disabled with --disable-nss, but then passwords won't be imported. --- src/Makefile.am | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 330326648..492a7688c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -140,6 +140,18 @@ libephymain_la_SOURCES += \ libephymain_la_CFLAGS += $(SEED_CFLAGS) endif # ENABLE_SEED +if ENABLE_NSS +NOINST_H_FILES += \ + ephy-nss-glue.h \ + $(NULL) + +libephymain_la_SOURCES += \ + ephy-nss-glue.c + $(NULL) + +libephymain_la_CFLAGS += $(NSS_CFLAGS) +endif # ENABLE_NSS + epiphany_SOURCES = ephy-main.c epiphany_CPPFLAGS = \ @@ -181,6 +193,10 @@ if ENABLE_SEED epiphany_LDADD += $(SEED_LIBS) endif # ENABLE_SEED +if ENABLE_NSS +epiphany_LDADD += $(NSS_LIBS) +endif # ENABLE_NSS + if ENABLE_NETWORK_MANAGER epiphany_LDADD += \ $(NETWORK_MANAGER_LIBS) -- cgit