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
de9effb5
Commit
de9effb5
authored
Apr 16, 2007
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable IPV6 for all MSVC builds, including the VC6 libpq-only build.
Per request from Hiroshi Saito.
parent
e2a186b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
src/include/pg_config.h.win32
src/include/pg_config.h.win32
+1
-2
src/tools/msvc/Solution.pm
src/tools/msvc/Solution.pm
+1
-2
No files found.
src/include/pg_config.h.win32
View file @
de9effb5
...
...
@@ -8,7 +8,6 @@
* HAVE_GETOPT_H, HAVE_GETOPT_LONG, HAVE_RINT, HAVE_STRINGS_H,
* HAVE_STRTOLL, HAVE_STRTOULL, HAVE_STRUCT_OPTION, ENABLE_THREAD_SAFETY
*
* For now, also HAVE_IPV6
*/
/* Define to the type of arg 1 of 'accept' */
...
...
@@ -186,7 +185,7 @@
#define HAVE_INT_TIMEZONE
/* Define to 1 if you have support for IPv6. */
//
#define HAVE_IPV6 1
#define HAVE_IPV6 1
/* Define to 1 if you have isinf(). */
#define HAVE_ISINF 1
...
...
src/tools/msvc/Solution.pm
View file @
de9effb5
...
...
@@ -3,7 +3,7 @@ package Solution;
#
# Package that encapsulates a Visual C++ solution file generation
#
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.2
1 2007/04/12 07:03:00
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.2
2 2007/04/16 18:39:19
mha Exp $
#
use
Carp
;
use
strict
;
...
...
@@ -112,7 +112,6 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
print
O
"
#define HAVE_LIBZ 1
\n
"
if
(
$self
->
{
options
}
->
{
zlib
});
print
O
"
#define USE_SSL 1
\n
"
if
(
$self
->
{
options
}
->
{
openssl
});
print
O
"
#define ENABLE_NLS 1
\n
"
if
(
$self
->
{
options
}
->
{
nls
});
print
O
"
#define HAVE_IPV6 1
\n
";
if
(
$self
->
{
options
}
->
{
xml
})
{
...
...
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