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
80089597
Commit
80089597
authored
Mar 15, 2015
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/port/dirmod.c needs to be built on Cygwin too.
Oversight in my commit
91f4a5a9
. Per buildfarm member brolga.
parent
d1e9214e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
configure
configure
+11
-1
configure.in
configure.in
+6
-1
No files found.
configure
View file @
80089597
...
@@ -12067,7 +12067,7 @@ esac
...
@@ -12067,7 +12067,7 @@ esac
fi
fi
# Win32 support
# Win32
(really MinGW)
support
if
test
"
$PORTNAME
"
=
"win32"
;
then
if
test
"
$PORTNAME
"
=
"win32"
;
then
ac_fn_c_check_func
"
$LINENO
"
"gettimeofday"
"ac_cv_func_gettimeofday"
ac_fn_c_check_func
"
$LINENO
"
"gettimeofday"
"ac_cv_func_gettimeofday"
if
test
"x
$ac_cv_func_gettimeofday
"
=
xyes
;
then
:
if
test
"x
$ac_cv_func_gettimeofday
"
=
xyes
;
then
:
...
@@ -12154,6 +12154,16 @@ else
...
@@ -12154,6 +12154,16 @@ else
fi
fi
# Cygwin needs only a bit of that
if
test
"
$PORTNAME
"
=
"cygwin"
;
then
case
"
$LIBOBJS
"
in
*
" dirmod.
$ac_objext
"
*
)
;;
*
)
LIBOBJS
=
"
$LIBOBJS
dirmod.
$ac_objext
"
;;
esac
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for sigsetjmp"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for sigsetjmp"
>
&5
$as_echo_n
"checking for sigsetjmp... "
>
&6
;
}
$as_echo_n
"checking for sigsetjmp... "
>
&6
;
}
if
${
pgac_cv_func_sigsetjmp
+
:
}
false
;
then
:
if
${
pgac_cv_func_sigsetjmp
+
:
}
false
;
then
:
...
...
configure.in
View file @
80089597
...
@@ -1436,7 +1436,7 @@ if test "$PORTNAME" = "win32"; then
...
@@ -1436,7 +1436,7 @@ if test "$PORTNAME" = "win32"; then
AC_LIBOBJ(getopt_long)
AC_LIBOBJ(getopt_long)
fi
fi
# Win32 support
# Win32
(really MinGW)
support
if test "$PORTNAME" = "win32"; then
if test "$PORTNAME" = "win32"; then
AC_REPLACE_FUNCS(gettimeofday)
AC_REPLACE_FUNCS(gettimeofday)
AC_LIBOBJ(dirmod)
AC_LIBOBJ(dirmod)
...
@@ -1460,6 +1460,11 @@ else
...
@@ -1460,6 +1460,11 @@ else
AC_SUBST(have_win32_dbghelp,no)
AC_SUBST(have_win32_dbghelp,no)
fi
fi
# Cygwin needs only a bit of that
if test "$PORTNAME" = "cygwin"; then
AC_LIBOBJ(dirmod)
fi
dnl Cannot use AC_CHECK_FUNC because sigsetjmp may be a macro
dnl Cannot use AC_CHECK_FUNC because sigsetjmp may be a macro
dnl (especially on GNU libc)
dnl (especially on GNU libc)
dnl See also comments in c.h.
dnl See also comments in c.h.
...
...
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