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
5d9062f9
Commit
5d9062f9
authored
May 23, 2006
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid duplicate definition of LOCALEDIR in pg_config.h, already defined
in port/pg_config_paths.h.
parent
c8f34502
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
24 deletions
+3
-24
config/programs.m4
config/programs.m4
+1
-9
configure
configure
+0
-11
src/include/pg_config.h.in
src/include/pg_config.h.in
+0
-3
src/interfaces/libpq/fe-misc.c
src/interfaces/libpq/fe-misc.c
+2
-1
No files found.
config/programs.m4
View file @
5d9062f9
# $PostgreSQL: pgsql/config/programs.m4,v 1.
19 2005/12/04 03:52:28
momjian Exp $
# $PostgreSQL: pgsql/config/programs.m4,v 1.
20 2006/05/23 19:28:45
momjian Exp $
# PGAC_PATH_FLEX
...
...
@@ -164,15 +164,7 @@ dnl FIXME: We should probably check for version >=0.10.36.
# Note: share/locale is always the default, independent of $datadir
localedir='${prefix}/share/locale'
if test x"$prefix" = x"NONE"; then
exp_localedir="$ac_default_prefix/share/locale"
else
exp_localedir="$prefix/share/locale"
fi
AC_SUBST(localedir)
AC_DEFINE_UNQUOTED(LOCALEDIR, ["$exp_localedir"],
[Define to the location of locale files.])
])# PGAC_CHECK_GETTEXT
...
...
configure
View file @
5d9062f9
...
...
@@ -22083,17 +22083,6 @@ done
# Note: share/locale is always the default, independent of $datadir
localedir
=
'${prefix}/share/locale'
if
test
x
"
$prefix
"
=
x
"NONE"
;
then
exp_localedir
=
"
$ac_default_prefix
/share/locale"
else
exp_localedir
=
"
$prefix
/share/locale"
fi
cat
>>
confdefs.h
<<
_ACEOF
#define LOCALEDIR "
$exp_localedir
"
_ACEOF
fi
...
...
src/include/pg_config.h.in
View file @
5d9062f9
...
...
@@ -531,9 +531,6 @@
/* Define to build with Kerberos 5 support. (--with-krb5) */
#undef KRB5
/* Define to the location of locale files. */
#undef LOCALEDIR
/* Define as the maximum alignment requirement of any C data type. */
#undef MAXIMUM_ALIGNOF
...
...
src/interfaces/libpq/fe-misc.c
View file @
5d9062f9
...
...
@@ -23,7 +23,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-misc.c,v 1.12
6 2006/05/18 18:19:47
momjian Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-misc.c,v 1.12
7 2006/05/23 19:28:45
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -60,6 +60,7 @@
#include "libpq-int.h"
#include "pqsignal.h"
#include "mb/pg_wchar.h"
#include "pg_config_paths.h"
static
int
pqPutMsgBytes
(
const
void
*
buf
,
size_t
len
,
PGconn
*
conn
);
...
...
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