Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
07c23731
Commit
07c23731
authored
Nov 13, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib/tsearch2 need not be special-cased any longer.
parent
4394c1b0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
10 deletions
+3
-10
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/Mkvcbuild.pm
+1
-4
src/tools/msvc/clean.bat
src/tools/msvc/clean.bat
+1
-4
src/tools/msvc/vcregress.pl
src/tools/msvc/vcregress.pl
+1
-2
No files found.
src/tools/msvc/Mkvcbuild.pm
View file @
07c23731
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
#
#
# Package that generates build files for msvc build
# Package that generates build files for msvc build
#
#
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2
3 2007/10/13 23:22:46
tgl Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2
4 2007/11/13 22:49:47
tgl Exp $
#
#
use
Carp
;
use
Carp
;
use
Win32
;
use
Win32
;
...
@@ -468,9 +468,6 @@ sub GenerateContribSqlFiles
...
@@ -468,9 +468,6 @@ sub GenerateContribSqlFiles
my $in = "$d.in";
my $in = "$d.in";
my $out = "$d";
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"))
if (Solution::IsNewer("contrib/$n/$out", "contrib/$n/$in"))
{
{
print "Building $out from $in (contrib/$n)...
\
n";
print "Building $out from $in (contrib/$n)...
\
n";
...
...
src/tools/msvc/clean.bat
View file @
07c23731
@echo
off
@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%
set
D
=
%CD%
if
exist
..\msvc
if
exist
..\..\..\src
cd
..\..\..
if
exist
..\msvc
if
exist
..\..\..\src
cd
..\..\..
...
@@ -57,9 +57,6 @@ call :del src\test\regress\regress.dll
...
@@ -57,9 +57,6 @@ call :del src\test\regress\regress.dll
REM Clean up datafiles built with contrib
REM Clean up datafiles built with contrib
cd
contrib
cd
contrib
for
/r
%%f
in
(*
.sql
)
do
if
exist
%%f
.in
del
%%f
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%
cd
%D%
...
...
src/tools/msvc/vcregress.pl
View file @
07c23731
# -*-perl-*- hey - emacs - this is a perl file
# -*-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
;
use
strict
;
...
@@ -188,7 +188,6 @@ sub contribcheck
...
@@ -188,7 +188,6 @@ sub contribcheck
my
$mstat
=
0
;
my
$mstat
=
0
;
foreach
my
$module
(
glob
("
*
"))
foreach
my
$module
(
glob
("
*
"))
{
{
next
if
$module
eq
'
tsearch2
';
next
unless
-
d
"
$module
/sql
"
&&
next
unless
-
d
"
$module
/sql
"
&&
-
d
"
$module
/expected
"
&&
-
d
"
$module
/expected
"
&&
(
-
f
"
$module
/Makefile
"
||
-
f
"
$module
/GNUmakefile
");
(
-
f
"
$module
/Makefile
"
||
-
f
"
$module
/GNUmakefile
");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment