-fix leaks
[oweals/gnunet.git] / src / gns / nss / Makefile.am
1 # $Id$
2 #
3 # This file taken and modified from nss-gns.
4 #
5 # nss-gns is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as
7 # published by the Free Software Foundation; either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # nss-gns is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with nss-gns; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 EXTRA_DIST = map-file \
21   install-nss-plugin.sh \
22   uninstall-nss-plugin.sh
23
24 AM_LDFLAGS=-avoid-version -module -export-dynamic
25
26 nssdir = $(NSS_DIR)
27
28 LIBTOOL = $(SUDO_BINARY) $(SHELL) $(top_builddir)/libtool
29
30 if !MINGW
31 if INSTALL_NSS
32 nss_LTLIBRARIES = \
33         libnss_gns.la \
34         libnss_gns4.la \
35         libnss_gns6.la
36 endif
37 endif
38
39 sources = nss_gns_query.h nss_gns_query.c
40
41 # GNU Libc
42 libnss_gns_la_SOURCES= $(sources) nss_gns.c
43 libnss_gns_la_CFLAGS=$(AM_CFLAGS) -D_GNU_SOURCE
44 libnss_gns_la_LDFLAGS=$(AM_LDFLAGS) -shrext .so.2 -Wl,-version-script=$(srcdir)/map-file
45
46 libnss_gns4_la_SOURCES=$(libnss_gns_la_SOURCES)
47 libnss_gns4_la_CFLAGS=$(libnss_gns_la_CFLAGS) -DNSS_IPV4_ONLY=1
48 libnss_gns4_la_LDFLAGS=$(libnss_gns_la_LDFLAGS)
49
50 libnss_gns6_la_SOURCES=$(libnss_gns_la_SOURCES)
51 libnss_gns6_la_CFLAGS=$(libnss_gns_la_CFLAGS) -DNSS_IPV6_ONLY=1
52 libnss_gns6_la_LDFLAGS=$(libnss_gns_la_LDFLAGS)
53
54 if !MINGW
55 install-data-hook:
56         $(top_srcdir)/src/gns/nss/install-nss-plugin.sh $(SHELL) $(top_builddir) $(nssdir) $(SUDO_BINARY)
57
58 uninstall-hook:
59         $(top_srcdir)/src/gns/nss/uninstall-nss-plugin.sh $(SHELL) $(top_builddir) "rm -f $(nssdir)/libnss_gns.so.2" $(SUDO_BINARY)
60         $(top_srcdir)/src/gns/nss/uninstall-nss-plugin.sh $(SHELL) $(top_builddir) "rm -f $(nssdir)/libnss_gns4.so.2" $(SUDO_BINARY)
61         $(top_srcdir)/src/gns/nss/uninstall-nss-plugin.sh $(SHELL) $(top_builddir) "rm -f $(nssdir)/libnss_gns6.so.2" $(SUDO_BINARY)
62 endif