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
3b1e04c3
Commit
3b1e04c3
authored
Aug 27, 2007
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix generation of snowball_create.sql on msvc builds.
parent
862861ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
3 deletions
+43
-3
src/backend/snowball/Makefile
src/backend/snowball/Makefile
+2
-2
src/tools/msvc/Install.pm
src/tools/msvc/Install.pm
+41
-1
No files found.
src/backend/snowball/Makefile
View file @
3b1e04c3
...
...
@@ -2,7 +2,7 @@
#
# Makefile for src/backend/snowball
#
# $PostgreSQL: pgsql/src/backend/snowball/Makefile,v 1.
2 2007/08/25 01:06:24 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/snowball/Makefile,v 1.
3 2007/08/27 10:29:49 mha
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -64,7 +64,7 @@ LANGUAGES= \
russian english
\
spanish spanish
\
swedish swedish
\
turkish turkish
\
turkish turkish
SQLSCRIPT
=
snowball_create.sql
...
...
src/tools/msvc/Install.pm
View file @
3b1e04c3
...
...
@@ -3,7 +3,7 @@ package Install;
#
# Package that provides 'make install' functionality for msvc builds
#
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.1
6 2007/06/12 11:07:34
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.1
7 2007/08/27 10:29:49
mha Exp $
#
use
strict
;
use
warnings
;
...
...
@@ -64,6 +64,7 @@ sub Install
);
GenerateConversionScript
(
$target
);
GenerateTimezoneFiles
(
$target
,
$conf
);
GenerateTsearchFiles
(
$target
);
CopyContribFiles
(
$config
,
$target
);
CopyIncludeFiles
(
$target
);
...
...
@@ -216,6 +217,45 @@ sub GenerateTimezoneFiles
print
"
\n
";
}
sub
GenerateTsearchFiles
{
my
$target
=
shift
;
print
"
Generating tsearch script...
";
my
$F
;
my
$tmpl
=
read_file
('
src/backend/snowball/snowball.sql.in
');
my
$mf
=
read_file
('
src/backend/snowball/Makefile
');
$mf
=~
s{\\\s*[\r\n]+}{}mg
;
$mf
=~
/^LANGUAGES\s*=\s*(.*)$/m
||
die
"
Could not find LANGUAGES line in snowball Makefile
\n
";
my
@pieces
=
split
/\s+/
,
$1
;
open
(
$F
,"
>
$target
/share/snowball_create.sql
")
||
die
"
Could not write snowball_create.sql
";
print
$F
read_file
('
src/backend/snowball/snowball_func.sql.in
');
while
(
$#pieces
>
0
)
{
my
$lang
=
shift
@pieces
||
last
;
my
$latlang
=
shift
@pieces
||
last
;
my
$txt
=
$tmpl
;
my
$stop
=
'';
if
(
-
s "src/backend/snowball/stopwords/$lang.stop") {
$stop = "
,
StopWords
=
$lang
"
;
}
$txt
=~ s#_LANGNAME_#
${lang}
#gs;
$txt
=~ s#_DICTNAME_#
${lang}
_stem#gs;
$txt
=~ s#_CFGNAME_#
${lang}
#gs;
$txt
=~ s#_LATDICTNAME_#
${latlang}
_stem#gs;
$txt
=~ s#_NONLATDICTNAME_#
${lang}
_stem#gs;
$txt
=~ s#_STOPWORDS_#
$stop
#gs;
print
$F
$txt
;
print
"
.
"
;
}
close(
$F
);
print
"
\
n
"
;
}
sub CopyContribFiles
{
my
$config
= shift;
...
...
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