Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 172654
Collapse All | Expand All

(-)postgresql-8.2.3.orig/src/interfaces/libpq/Makefile (-1 / +3 lines)
Lines 20-25 Link Here
20
SO_MINOR_VERSION= 0
20
SO_MINOR_VERSION= 0
21
DLTYPE= library
21
DLTYPE= library
22
22
23
NAME_STATIC_LIB= $(NAME)-$(SO_MAJOR_VERSION)
24
23
override CPPFLAGS :=  -DFRONTEND -I$(srcdir) $(CPPFLAGS) -I$(top_builddir)/src/port
25
override CPPFLAGS :=  -DFRONTEND -I$(srcdir) $(CPPFLAGS) -I$(top_builddir)/src/port
24
ifneq ($(PORTNAME), win32)
26
ifneq ($(PORTNAME), win32)
25
override CFLAGS += $(PTHREAD_CFLAGS)
27
override CFLAGS += $(PTHREAD_CFLAGS)
Lines 160-166 Link Here
160
	$(INSTALL_DATA) $(srcdir)/libpq-fe.h '$(DESTDIR)$(includedir)'
162
	$(INSTALL_DATA) $(srcdir)/libpq-fe.h '$(DESTDIR)$(includedir)'
161
	$(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
163
	$(INSTALL_DATA) $(srcdir)/libpq-int.h '$(DESTDIR)$(includedir_internal)'
162
	$(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
164
	$(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
163
	$(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
165
	$(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service-$(SO_MAJOR_VERSION).conf.sample'
164
166
165
installdirs:
167
installdirs:
166
	$(mkinstalldirs) '$(DESTDIR)$(libdir)' '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)'
168
	$(mkinstalldirs) '$(DESTDIR)$(libdir)' '$(DESTDIR)$(includedir)' '$(DESTDIR)$(includedir_internal)'
(-)postgresql-8.2.3.orig/src/interfaces/libpq/nls.mk (-1 / +1 lines)
Lines 1-5 Link Here
1
# $PostgreSQL: pgsql/src/interfaces/libpq/nls.mk,v 1.20 2005/01/14 08:57:06 petere Exp $
1
# $PostgreSQL: pgsql/src/interfaces/libpq/nls.mk,v 1.20 2005/01/14 08:57:06 petere Exp $
2
CATALOG_NAME	:= libpq
2
CATALOG_NAME	:= libpq-4
3
AVAIL_LANGUAGES	:= af cs de es fr hr it ko nb pl pt_BR ru sk sl sv tr zh_CN zh_TW
3
AVAIL_LANGUAGES	:= af cs de es fr hr it ko nb pl pt_BR ru sk sl sv tr zh_CN zh_TW
4
GETTEXT_FILES	:= fe-auth.c fe-connect.c fe-exec.c fe-lobj.c fe-misc.c fe-protocol2.c fe-protocol3.c fe-secure.c
4
GETTEXT_FILES	:= fe-auth.c fe-connect.c fe-exec.c fe-lobj.c fe-misc.c fe-protocol2.c fe-protocol3.c fe-secure.c
5
GETTEXT_TRIGGERS:= libpq_gettext pqInternalNotice:2
5
GETTEXT_TRIGGERS:= libpq_gettext pqInternalNotice:2
(-)postgresql-8.2.3.orig/src/Makefile.shlib (-2 / +2 lines)
Lines 346-355 Link Here
346
install-lib: install-lib-static install-lib-shared
346
install-lib: install-lib-static install-lib-shared
347
347
348
install-lib-static: lib$(NAME).a
348
install-lib-static: lib$(NAME).a
349
	$(INSTALL_STLIB) $< '$(DESTDIR)$(libdir)/lib$(NAME).a'
349
	$(INSTALL_STLIB) $< '$(DESTDIR)$(libdir)/lib$(NAME_STATIC_LIB).a'
350
ifeq ($(PORTNAME), darwin)
350
ifeq ($(PORTNAME), darwin)
351
	cd '$(DESTDIR)$(libdir)' && \
351
	cd '$(DESTDIR)$(libdir)' && \
352
	ranlib lib$(NAME).a
352
	ranlib lib$(NAME_STATIC_LIB).a
353
endif
353
endif
354
354
355
ifeq ($(enable_shared), yes)
355
ifeq ($(enable_shared), yes)

Return to bug 172654