Return-Path: andrew
Received: by postgres.Berkeley.EDU (5.61/1.29)
	id AA13377; Tue, 29 Jun 93 23:19:20 -0700
Date: Tue, 29 Jun 93 23:19:20 -0700
Message-Id: <9306300619.AA13377@postgres.Berkeley.EDU>
From: "Andrew K. Yu" <andrew@postgres.Berkeley.EDU>
Subject: Re: User Defined Types, Oper, and Prog Lang.
To: postgres@postgres.berkeley.edu
Sender: pg_adm@postgres.berkeley.edu
Cc: andrew@eden.CS.Berkeley.EDU, postgres@postgres.Berkeley.EDU

	
> when I tried to compile the tutorial example 
> on User Defined Types, Operators, and Programming 
> Language Functions - "circle" given in the 
> User manual pages 12-17.
	
> I got the following errors: 
>	ld: Undefined symbol 
>	_point_dt 
>  	_palloc 
	
you need to compile the source into an object file, not an executable. To
do so, you need the -c flag.

eg.	cc $(OTHER_CFLAGS) -c the_object.c

and you will get a the_object.o

- Andrew


	
