contrib/tsearch2 need not be special-cased any longer.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 13 Nov 2007 22:49:47 +0000 (22:49 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 13 Nov 2007 22:49:47 +0000 (22:49 +0000)
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/clean.bat
src/tools/msvc/vcregress.pl

index a3fe5fc4e0e9c65f4224dfe3e973405e8e7f3a30..c5a5249427c6a94d4a84ba8e4eec746b950fe9d1 100644 (file)
@@ -3,7 +3,7 @@ package Mkvcbuild;
 #
 # Package that generates build files for msvc build
 #
-# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.23 2007/10/13 23:22:46 tgl Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.24 2007/11/13 22:49:47 tgl Exp $
 #
 use Carp;
 use Win32;
@@ -468,9 +468,6 @@ sub GenerateContribSqlFiles
             my $in = "$d.in";
             my $out = "$d";
 
-            # tsearch2 uses inconsistent naming
-            $in = "tsearch.sql.in" if ($in eq "tsearch2.sql.in");
-            $in = "untsearch.sql.in" if ($in eq "uninstall_tsearch2.sql.in");
             if (Solution::IsNewer("contrib/$n/$out", "contrib/$n/$in"))
             {
                 print "Building $out from $in (contrib/$n)...\n";
index ef43ea6444ea7b55f27dc4c866199cdaa4a71fc6..d9d99d88db9e032f2883d65c47b13e846388109d 100755 (executable)
@@ -1,5 +1,5 @@
 @echo off
-REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.7 2007/10/03 13:43:24 mha Exp $
+REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.8 2007/11/13 22:49:47 tgl Exp $
 
 set D=%CD%
 if exist ..\msvc if exist ..\..\..\src cd ..\..\..
@@ -57,9 +57,6 @@ call :del src\test\regress\regress.dll
 REM Clean up datafiles built with contrib
 cd contrib
 for /r %%f in (*.sql) do if exist %%f.in del %%f
-REM Clean up tsearch2 which uses inconsistent names
-call :del tsearch2\tsearch2.sql
-call :del tsearch2\uninstall_tsearch2.sql
 
 cd %D%
 
index a795f5a18ff97a694055393fadd98c79ccdf78fc..32e2548e976a3a107f3958b9b2b916d617dc9420 100644 (file)
@@ -1,7 +1,7 @@
 
 # -*-perl-*- hey - emacs - this is a perl file
 
-# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.5 2007/10/03 11:34:11 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.6 2007/11/13 22:49:47 tgl Exp $
 
 use strict;
 
@@ -188,7 +188,6 @@ sub contribcheck
     my $mstat = 0;
     foreach my $module (glob("*"))
     {
-               next if $module eq 'tsearch2';
         next unless -d "$module/sql" && 
                        -d "$module/expected" && 
                        (-f "$module/Makefile" || -f "$module/GNUmakefile");