Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
ef31c2bf
Commit
ef31c2bf
authored
19 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add comment on why pg *printf functions are used unconditionally on
Win32. Backpatch to 8.1.X.
parent
e0e75891
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+4
-0
4 additions, 0 deletions
configure
configure.in
+5
-1
5 additions, 1 deletion
configure.in
with
9 additions
and
1 deletion
configure
+
4
−
0
View file @
ef31c2bf
...
...
@@ -13895,6 +13895,10 @@ fi
if test "$PORTNAME" = "win32"; then
# Win32 gets this built unconditionally
# libintl versions prior to 0.13 use the native *printf functions.
# Win32 *printf does not understand %$, so on Win32 using pre-0.13 libintl
# it is necessary to use the pg versions of *printf to properly process
# NLS strings that use the %$ format.
pgac_need_repl_snprintf=yes
else
pgac_need_repl_snprintf=no
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
5
−
1
View file @
ef31c2bf
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.43
4
2005/12/06 0
2:29:03 tgl
Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.43
5
2005/12/06 0
4:53:02 momjian
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -859,6 +859,10 @@ fi
if test "$PORTNAME" = "win32"; then
# Win32 gets this built unconditionally
# libintl versions prior to 0.13 use the native *printf functions.
# Win32 *printf does not understand %$, so on Win32 using pre-0.13 libintl
# it is necessary to use the pg versions of *printf to properly process
# NLS strings that use the %$ format.
pgac_need_repl_snprintf=yes
else
pgac_need_repl_snprintf=no
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment