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
9dac5264
Commit
9dac5264
authored
Feb 02, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32 adjustments for dirmod and configure/configure.in.
parent
67aa1962
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
6 deletions
+19
-6
configure
configure
+4
-1
configure.in
configure.in
+5
-2
src/include/port.h
src/include/port.h
+2
-2
src/port/dirmod.c
src/port/dirmod.c
+8
-1
No files found.
configure
View file @
9dac5264
...
...
@@ -12078,12 +12078,15 @@ esac
# Win32 can't to rename or unlink on an open file
case
$host_os
in
mingw
*
)
LIBOBJS
=
"
$LIBOBJS
copydir.
$ac_objext
"
LIBOBJS
=
"
$LIBOBJS
dirmod.
$ac_objext
"
LIBOBJS
=
"
$LIBOBJS
gettimeofday.
$ac_objext
"
LIBOBJS
=
"
$LIBOBJS
pipe.
$ac_objext
"
LIBOBJS
=
"
$LIBOBJS
rand.
$ac_objext
"
;;
esac
case
$host_os
in
mingw
*
|
cygwin
*
)
LIBOBJS
=
"
$LIBOBJS
dirmod.
$ac_objext
"
;;
esac
if
test
"
$with_readline
"
=
yes
;
then
echo
"
$as_me
:
$LINENO
: checking for rl_completion_append_character"
>
&5
echo
$ECHO_N
"checking for rl_completion_append_character...
$ECHO_C
"
>
&6
...
...
configure.in
View file @
9dac5264
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.31
2 2004/02/02 16:00:49
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.31
3 2004/02/02 22:20:32
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -906,12 +906,15 @@ esac
# Win32 can't to rename or unlink on an open file
case $host_os in mingw*)
AC_LIBOBJ(copydir)
AC_LIBOBJ(dirmod)
AC_LIBOBJ(gettimeofday)
AC_LIBOBJ(pipe)
AC_LIBOBJ(rand) ;;
esac
case $host_os in mingw*|cygwin*)
AC_LIBOBJ(dirmod) ;;
esac
if test "$with_readline" = yes; then
PGAC_VAR_RL_COMPLETION_APPEND_CHARACTER
AC_CHECK_FUNCS([rl_completion_matches rl_filename_completion_function])
...
...
src/include/port.h
View file @
9dac5264
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/port.h,v 1.1
7 2004/02/02 00:17:2
3 momjian Exp $
* $PostgreSQL: pgsql/src/include/port.h,v 1.1
8 2004/02/02 22:20:3
3 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -30,7 +30,7 @@ extern int fseeko(FILE *stream, off_t offset, int whence);
extern
off_t
ftello
(
FILE
*
stream
);
#endif
#if
!defined(FRONTEND) && (defined(WIN32) || defined(CYGWIN)
)
#if
defined(WIN32) || defined(CYGWIN
)
/*
* Win32 doesn't have reliable rename/unlink during concurrent access
*/
...
...
src/port/dirmod.c
View file @
9dac5264
...
...
@@ -10,14 +10,20 @@
* Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.
9 2004/02/02 00:17:2
3 momjian Exp $
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.
10 2004/02/02 22:20:3
3 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef TEST_VERSION
#if defined(WIN32) || defined(CYGWIN)
#ifndef FRONTEND
#include "postgres.h"
#else
#include "postgres_fe.h"
#endif
#undef rename
#undef unlink
...
...
@@ -95,6 +101,7 @@ pgunlink(const char *path)
return
0
;
}
#endif
#else
...
...
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