|
1 | 1 | /*
|
2 | 2 | * This is a port of the Double Metaphone algorithm for use in PostgreSQL.
|
3 | 3 | *
|
4 |
| - * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $ |
| 4 | + * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.8 2006/07/14 05:28:27 tgl Exp $ |
5 | 5 | *
|
6 | 6 | * Double Metaphone computes 2 "sounds like" strings - a primary and an
|
7 | 7 | * alternate. In most cases they are the same, but for foreign names
|
|
50 | 50 |
|
51 | 51 |
|
52 | 52 | /*
|
53 |
| - * $Revision: 1.7 $ |
54 |
| - * $Id: dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $ |
| 53 | + * $Revision: 1.8 $ |
| 54 | + * $Id: dmetaphone.c,v 1.8 2006/07/14 05:28:27 tgl Exp $ |
55 | 55 | */
|
56 | 56 |
|
57 | 57 |
|
@@ -106,8 +106,8 @@ The remaining code is authored by Andrew Dunstan <amdunstan@ncshp.org> and
|
106 | 106 | #ifndefDMETAPHONE_MAIN
|
107 | 107 |
|
108 | 108 | #include"postgres.h"
|
| 109 | + |
109 | 110 | #include"fmgr.h"
|
110 |
| -#include"utils/elog.h" |
111 | 111 |
|
112 | 112 | /* turn off assertions for embedded function */
|
113 | 113 | #defineNDEBUG
|
|