diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-09 23:00:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-09 23:00:44 +0000 |
commit | 8ace5114dcbe800725da09fbed3ac849a3b137ec (patch) | |
tree | 9ffb510ffb7615be3eaab3876982d4251c820f3d /src | |
parent | 2c6373fafaf12995e3058799709bd69483f264fe (diff) | |
download | postgresql-8ace5114dcbe800725da09fbed3ac849a3b137ec.tar.gz postgresql-8ace5114dcbe800725da09fbed3ac849a3b137ec.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpython/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 29d2c2f28f1..56cae1aba01 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -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 $@ $< |