~ubuntu-branches/ubuntu/lucid/postgresql-8.4/lucid-security

« back to all changes in this revision

Viewing changes to src/interfaces/libpq/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------
 
2
#
 
3
# Makefile for src/interfaces/libpq library
 
4
#
 
5
# Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
6
# Portions Copyright (c) 1994, Regents of the University of California
 
7
#
 
8
# $PostgreSQL$
 
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= 2
 
21
 
 
22
override CPPFLAGS :=  -DFRONTEND -DUNSAFE_STAT_OK -I$(srcdir) $(CPPFLAGS) -I$(top_builddir)/src/port -I$(top_srcdir)/src/port
 
23
ifneq ($(PORTNAME), win32)
 
24
override CFLAGS += $(PTHREAD_CFLAGS)
 
25
endif
 
26
 
 
27
# Need to recompile any libpgport object files because we need these
 
28
# object files to use the same compile flags as libpq.  If we used
 
29
# the object files from libpgport, this would not be true on all
 
30
# platforms.
 
31
LIBS := $(LIBS:-lpgport=)
 
32
 
 
33
OBJS=   fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
 
34
        fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o \
 
35
        libpq-events.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 strlcpy.o win32error.o, $(LIBOBJS))
 
38
 
 
39
ifeq ($(PORTNAME), cygwin)
 
40
override shlib = cyg$(NAME)$(DLSUFFIX)
 
41
endif
 
42
 
 
43
ifeq ($(PORTNAME), win32)
 
44
OBJS += win32.o pgsleep.o libpqrc.o
 
45
 
 
46
libpqrc.o: libpq.rc
 
47
        $(WINDRES) -i $< -o $@
 
48
 
 
49
ifeq ($(enable_thread_safety), yes)
 
50
OBJS += pthread-win32.o
 
51
endif
 
52
endif
 
53
 
 
54
 
 
55
# Add libraries that libpq depends (or might depend) on into the
 
56
# shared library link.  (The order in which you list them here doesn't
 
57
# matter.)
 
58
ifneq ($(PORTNAME), win32)
 
59
SHLIB_LINK += $(filter -lcrypt -ldes -lcom_err -lcrypto -lk5crypto -lkrb5 -lgssapi_krb5 -lgss -lgssapi -lssl -lsocket -lnsl -lresolv -lintl, $(LIBS)) $(LDAP_LIBS_FE) $(PTHREAD_LIBS)
 
60
else
 
61
SHLIB_LINK += $(filter -lcrypt -ldes -lcom_err -lcrypto -lk5crypto -lkrb5 -lgssapi32 -lssl -lsocket -lnsl -lresolv -lintl $(PTHREAD_LIBS), $(LIBS)) $(LDAP_LIBS_FE)
 
62
endif
 
63
ifeq ($(PORTNAME), win32)
 
64
SHLIB_LINK += -lshfolder -lwsock32 -lws2_32 -lsecur32 $(filter -leay32 -lssleay32 -lcomerr32 -lkrb5_32, $(LIBS))
 
65
endif
 
66
 
 
67
SHLIB_EXPORTS = exports.txt
 
68
 
 
69
all: 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 open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c win32error.c pgsleep.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
distprep: $(srcdir)/libpq-dist.rc
 
94
 
 
95
libpq.rc $(srcdir)/libpq-dist.rc: libpq.rc.in
 
96
        sed -e 's/\(VERSION.*\),0 *$$/\1,'`date '+%y%j' | sed 's/^0*//'`'/' $< >$@
 
97
 
 
98
# Depend on Makefile.global to force rebuild on re-run of configure.
 
99
# (But libpq-dist.rc is shipped in the distribution for shell-less
 
100
# installations and is only updated by distprep.)
 
101
libpq.rc: $(top_builddir)/src/Makefile.global
 
102
 
 
103
fe-connect.o: fe-connect.c $(top_builddir)/src/port/pg_config_paths.h
 
104
 
 
105
$(top_builddir)/src/port/pg_config_paths.h:
 
106
        $(MAKE) -C $(top_builddir)/src/port pg_config_paths.h
 
107
 
 
108
install: all installdirs install-lib
 
109
        $(INSTALL_DATA) $(srcdir)/libpq-fe.h '$(DESTDIR)$(includedir)'
 
110
        $(INSTALL_DATA) $(srcdir)/libpq-events.h '$(DESTDIR)$(includedir)'
 
111
        $(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
 
112
        $(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
 
113
        $(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
 
114
 
 
115
installdirs: installdirs-lib
 
116
        $(mkinstalldirs) '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)'
 
117
 
 
118
uninstall: uninstall-lib
 
119
        rm -f '$(DESTDIR)$(includedir)/libpq-fe.h'
 
120
        rm -f '$(DESTDIR)$(includedir)/libpq-events.h'
 
121
        rm -f '$(DESTDIR)$(includedir_internal)/libpq-int.h'
 
122
        rm -f '$(DESTDIR)$(includedir_internal)/pqexpbuffer.h'
 
123
        rm -f '$(DESTDIR)$(datadir)/pg_service.conf.sample'
 
124
 
 
125
clean distclean: clean-lib
 
126
        rm -f $(OBJS) pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c md5.c ip.c encnames.c wchar.c win32error.c pgsleep.c pthread.h libpq.rc
 
127
# Might be left over from a Win32 client-only build
 
128
        rm -f pg_config_paths.h
 
129
 
 
130
maintainer-clean: distclean maintainer-clean-lib
 
131
        rm -f $(srcdir)/libpq-dist.rc