1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

This directory contains a module that implements the "Metaphone" code as

a PostgreSQL user-defined function.  The Metaphone system is a method of
matching similar sounding names (or any words) to the same code.

Metaphone was invented by Lawrence Philips as an improvement to the popular
name-hashing routine, Soundex.

This metaphone code is from Michael Kuhn, and is detailed at
   http://aspell.sourceforge.net/metaphone/metaphone-kuhn.txt

Joel Burton
This commit is contained in:
Bruce Momjian
2001-05-09 23:00:44 +00:00
parent 2c6373fafa
commit 8ace5114dc
7 changed files with 452 additions and 2 deletions

View File

@ -56,7 +56,10 @@ LDFLAGS=--shared -Wl,-E -Wl,-soname,$@
.PHONY: clean
all: plpython.so
all:
@echo "Disabled until merged into our Makefile system, bjm 2001-05-09"
disabled: plpython.so
plpython.o: plpython.c plpython.h
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<