Skip to content

Commit 697b472

Browse files
committed
Address build problems on cygwin and (hopefully) AIX.
1 parent 3c63578 commit 697b472

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/backend/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.82 2002/07/27 20:10:04 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.83 2002/08/08 07:47:42 ishii Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -30,6 +30,7 @@ endif
3030
##########################################################################
3131

3232
all: submake-libpgport postgres $(POSTGRES_IMP)
33+
$(MAKE) -C utils/mb/conversion_procs $@
3334
ifeq ($(enable_nls), yes)
3435
$(MAKE) -C po all
3536
endif
@@ -130,6 +131,7 @@ ifeq ($(enable_nls), yes)
130131
$(MAKE) -C po $@
131132
endif
132133
$(MAKE) -C utils/mb $@
134+
$(MAKE) -C utils/mb/conversion_procs $@
133135

134136
install-bin: postgres $(POSTGRES_IMP) installdirs
135137
$(INSTALL_PROGRAM) postgres$(X) $(DESTDIR)$(bindir)/postgres$(X)

src/backend/utils/mb/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for utils/mb
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.19 2002/08/06 05:40:45 ishii Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.20 2002/08/08 07:47:43 ishii Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -16,14 +16,12 @@ OBJS = encnames.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o
1616
DIRS = conversion_procs
1717

1818
all install installdirs uninstal distprep: SUBSYS.o
19-
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
2019

2120
clean distclean maintainer-clean:
2221
rm -f SUBSYS.o $(OBJS)
2322
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
2423

2524
SUBSYS.o: $(OBJS)
26-
@for dir in $(DIRS); do $(MAKE) -C $$dir all || exit; done
2725
$(LD) $(LDREL) $(LDOUT) $@ $^
2826

2927
depend dep:

src/backend/utils/mb/conversion_procs/proc.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SRCS += $(NAME).c
22
OBJS += $(NAME).o
33

44
PG_CPPFLAGS :=
5-
SHLIB_LINK :=
5+
SHLIB_LINK := $(BE_DLLLIBS)
66

77
SO_MAJOR_VERSION := 0
88
SO_MINOR_VERSION := 0

0 commit comments

Comments
 (0)