]> granicus.if.org Git - postgresql/blob - src/interfaces/libpq/Makefile
Arrange to strip libpq.so of symbols that aren't officially supposed to
[postgresql] / src / interfaces / libpq / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for src/interfaces/libpq library
4 #
5 # Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6 # Portions Copyright (c) 1994, Regents of the University of California
7 #
8 # $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.144 2006/04/28 02:53:20 tgl Exp $
9 #
10 #-------------------------------------------------------------------------
11
12 subdir = src/interfaces/libpq
13 top_builddir = ../../..
14 include $(top_builddir)/src/Makefile.global
15
16
17 # shared library parameters
18 NAME= pq
19 SO_MAJOR_VERSION= 5
20 SO_MINOR_VERSION= 0
21 DLTYPE= library
22
23 override CPPFLAGS :=  -DFRONTEND -I$(srcdir) $(CPPFLAGS) -I$(top_builddir)/src/port
24 ifneq ($(PORTNAME), win32)
25 override CFLAGS += $(PTHREAD_CFLAGS)
26 endif
27
28 # Need to recompile any libpgport object files because we need these
29 # object files to use the same compile flags as libpq.  If we used
30 # the object files from libpgport, this would not be true on all
31 # platforms.
32 LIBS := $(patsubst -lpgport,, $(LIBS))
33
34 OBJS=   fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
35         fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o \
36         md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o \
37         $(filter crypt.o getaddrinfo.o inet_aton.o open.o snprintf.o strerror.o, $(LIBOBJS))
38
39 ifeq ($(PORTNAME), cygwin)
40 override shlib = cyg$(NAME)$(DLSUFFIX)
41 endif
42
43 ifeq ($(PORTNAME), win32)
44 OBJS += win32.o libpqrc.o
45 DLL_DEFFILE=libpqdll.def
46
47 libpqrc.o: libpq.rc
48         windres -i libpq.rc -o libpqrc.o
49
50 ifeq ($(enable_thread_safety), yes)
51 OBJS += pthread-win32.o
52 endif
53 endif
54
55
56 # Add libraries that libpq depends (or might depend) on into the
57 # shared library link.  (The order in which you list them here doesn't
58 # matter.)
59 ifneq ($(PORTNAME), win32)
60 SHLIB_LINK += $(filter -lcrypt -ldes -lcom_err -lcrypto -lk5crypto -lkrb5 -lssl -lsocket -lnsl -lresolv -lintl, $(LIBS)) $(PTHREAD_LIBS)
61 else
62 SHLIB_LINK += $(filter -lcrypt -ldes -lcom_err -lcrypto -lk5crypto -lkrb5 -lssl -lsocket -lnsl -lresolv -lintl $(PTHREAD_LIBS), $(LIBS))
63 endif
64 ifeq ($(PORTNAME), win32)
65 SHLIB_LINK += -lshfolder -lwsock32 -lws2_32 $(filter -leay32 -lssleay32 -lcomerr32 -lkrb5_32, $(LIBS))
66 endif
67
68
69 all: def-files $(srcdir)/libpq.rc all-lib
70
71 # Shared library stuff
72 include $(top_srcdir)/src/Makefile.shlib
73 backend_src = $(top_srcdir)/src/backend
74
75
76 # We use several backend modules verbatim, but since we need to
77 # compile with appropriate options to build a shared lib, we can't
78 # necessarily use the same object files as the backend uses. Instead,
79 # symlink the source files in here and build our own object file.
80 # For port modules, this only happens if configure decides the module
81 # is needed (see filter hack in OBJS, above).
82
83 crypt.c getaddrinfo.c inet_aton.c noblock.c pgstrcasecmp.c snprintf.c strerror.c open.c thread.c: % : $(top_srcdir)/src/port/%
84         rm -f $@ && $(LN_S) $< .
85
86 md5.c ip.c: % : $(backend_src)/libpq/%
87         rm -f $@ && $(LN_S) $< .
88
89 encnames.c wchar.c : % : $(backend_src)/utils/mb/%
90         rm -f $@ && $(LN_S) $< .
91
92
93 # We need several not-quite-identical variants of .DEF files to build libpq
94 # DLLs for Windows.  These are made from the single source file exports.txt.
95 # Since we can't assume that Windows boxes will have sed, the .DEF files are
96 # always built and included in distribution tarballs.
97
98 distprep: def-files $(srcdir)/libpq.rc
99
100 .PHONY: def-files
101
102 def-files: $(srcdir)/libpqdll.def $(srcdir)/libpqddll.def $(srcdir)/blibpqdll.def
103
104 $(srcdir)/libpqdll.def: exports.txt
105         echo '; DEF file for MS VC++' > $@
106         echo 'LIBRARY LIBPQ' >> $@
107         echo 'DESCRIPTION "PostgreSQL Client Library"' >> $@
108         echo 'EXPORTS' >> $@
109         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    \1@ \2/' < $< >> $@
110
111 $(srcdir)/libpqddll.def: exports.txt
112         echo '; DEF file for MS VC++' > $@
113         echo 'LIBRARY LIBPQD' >> $@
114         echo 'DESCRIPTION "PostgreSQL Client Library"' >> $@
115         echo 'EXPORTS' >> $@
116         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    \1@ \2/' < $< >> $@
117
118 $(srcdir)/blibpqdll.def: exports.txt
119         echo '; DEF file for Borland C++ Builder' > $@
120         echo 'LIBRARY BLIBPQ' >> $@
121         echo 'DESCRIPTION "PostgreSQL Client Library"' >> $@
122         echo 'EXPORTS' >> $@
123         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    _\1@ \2/' < $< >> $@
124         echo '' >> $@
125         echo '; Aliases for MS compatible names' >> $@
126         sed -e '/^#/d' -e 's/^\(.* \)\([0-9][0-9]*\)/    \1= _\1/' < $< | sed 's/ *$$//' >> $@
127
128 # Where possible, restrict the symbols exported by the library to just the
129 # official list, so as to avoid unintentional ABI changes.  On recent Darwin
130 # this also quiets multiply-defined-symbol warnings in programs that use
131 # libpgport along with libpq.
132
133 ifeq ($(PORTNAME), darwin)
134 $(shlib): exports.list
135
136 exports.list: exports.txt
137         $(AWK) '/^[^#]/ {printf "_%s\n",$$1}' $< >$@
138
139 exported_symbols_list = -exported_symbols_list exports.list
140 endif
141
142 ifeq ($(PORTNAME), linux)
143 $(shlib): exports.list
144
145 exports.list: exports.txt
146         echo '{ global:' >$@
147         $(AWK) '/^[^#]/ {printf "%s;\n",$$1}' $< >>$@
148         echo ' local: *; };' >>$@
149
150 exported_symbols_list = -Wl,--version-script=exports.list
151 endif
152
153 # depend on Makefile.global to force rebuild on re-run of configure
154 $(srcdir)/libpq.rc: libpq.rc.in $(top_builddir)/src/Makefile.global
155         sed -e 's/\(VERSION.*\),0 *$$/\1,'`date '+%y%j' | sed 's/^0*//'`'/' < $< > $@
156
157 fe-connect.o: fe-connect.c $(top_builddir)/src/port/pg_config_paths.h
158
159 $(top_builddir)/src/port/pg_config_paths.h:
160         $(MAKE) -C $(top_builddir)/src/port pg_config_paths.h
161
162 install: all installdirs install-lib
163         $(INSTALL_DATA) $(srcdir)/libpq-fe.h '$(DESTDIR)$(includedir)'
164         $(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
165         $(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
166         $(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
167
168 installdirs:
169         $(mkinstalldirs) '$(DESTDIR)$(libdir)' '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)'
170
171 uninstall: uninstall-lib
172         rm -f '$(DESTDIR)$(includedir)/libpq-fe.h' '$(DESTDIR)$(includedir_internal)/libpq-int.h' '$(DESTDIR)$(includedir_internal)/pqexpbuffer.h' '$(DESTDIR)$(datadir)/pg_service.conf.sample'
173
174 clean distclean: clean-lib
175         rm -f $(OBJS) pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c pgstrcasecmp.c snprintf.c strerror.c open.c thread.c md5.c ip.c encnames.c wchar.c pthread.h exports.list
176         rm -f pg_config_paths.h # Might be left over from a Win32 client-only build
177
178 maintainer-clean: distclean
179         rm -f $(srcdir)/libpqdll.def $(srcdir)/libpqddll.def $(srcdir)/blibpqdll.def $(srcdir)/libpq.rc