Re: Build failure in current CVS

From: Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp>
To: tgl(at)sss(dot)pgh(dot)pa(dot)us
Cc: jgray(at)azuli(dot)co(dot)uk, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Build failure in current CVS
Date: 2002-08-21 06:15:23
Message-ID: 20020821.151523.87996963.t-ishii@sra.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> It looks like the new stuff for loadable conversion modules is not
> correct for building outside the source tree; it's being careless about
> the paths it uses to find files. Tatsuo, can you fix that, or ask Peter
> for help?

I have applied following changes and am getting:

make: *** No rule to make target `ascii_and_mic.o', needed by `libascii_and_mic.so.0.0'. Stop.

under one of a conversion directory. The weird thing is I do not get
this if I do a build "inside" the source tree. Any idea?

Index: proc.mk
===================================================================
RCS file: /cvsroot/pgsql-server/src/backend/utils/mb/conversion_procs/proc.mk,v
retrieving revision 1.2
diff -c -r1.2 proc.mk
*** proc.mk 8 Aug 2002 07:47:43 -0000 1.2
--- proc.mk 21 Aug 2002 06:09:13 -0000
***************
*** 16,21 ****
clean distclean maintainer-clean: clean-lib
$(RM) $(OBJS)

! include $(top_builddir)/src/Makefile.shlib

all: $(shlib)
--- 16,21 ----
clean distclean maintainer-clean: clean-lib
$(RM) $(OBJS)

! include $(top_srcdir)/src/Makefile.shlib

all: $(shlib)
Index: ascii_and_mic/Makefile
===================================================================
RCS file: /cvsroot/pgsql-server/src/backend/utils/mb/conversion_procs/ascii_and_mic/Makefile,v
retrieving revision 1.1
diff -c -r1.1 Makefile
*** ascii_and_mic/Makefile 14 Aug 2002 02:45:10 -0000 1.1
--- ascii_and_mic/Makefile 21 Aug 2002 06:09:13 -0000
***************
*** 8,11 ****

NAME := ascii_and_mic

! include ../proc.mk
--- 8,12 ----

NAME := ascii_and_mic

! include $(top_srcdir)/src/backend/utils/mb/conversion_procs/proc.mk
!

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Oliver Elphick 2002-08-21 06:27:22 Dropping a schema
Previous Message Tom Lane 2002-08-21 06:14:48 Re: Proposal: make "opaque" obsolete