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
707c0ffd
Commit
707c0ffd
authored
Mar 14, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to run empty test program before running any real AC_TRY_RUN's, to
prevent disguised failures.
parent
5dd04603
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
102 additions
and
53 deletions
+102
-53
configure
configure
+86
-53
configure.in
configure.in
+16
-0
No files found.
configure
View file @
707c0ffd
This diff is collapsed.
Click to expand it.
configure.in
View file @
707c0ffd
...
@@ -943,6 +943,22 @@ if test x"$pgac_cv_var_int_optreset" = x"yes"; then
...
@@ -943,6 +943,22 @@ if test x"$pgac_cv_var_int_optreset" = x"yes"; then
AC_DEFINE(HAVE_INT_OPTRESET, 1)
AC_DEFINE(HAVE_INT_OPTRESET, 1)
fi
fi
# This test makes sure that run tests work at all. Sometimes a shared
# library is found by the linker, but the runtime linker can't find it.
# This check should come after all modifications of compiler or linker
# variables, and before any other run tests.
AC_MSG_CHECKING([test program])
AC_TRY_RUN([int main() { return 0; }],
[AC_MSG_RESULT(ok)],
[AC_MSG_RESULT(failed)
AC_MSG_ERROR([[
*** Could not execute a simple test program. This may be a problem
*** related to locating shared libraries. Check the file 'config.log'
*** for the exact reason.]])],
[AC_MSG_RESULT([cross-compiling])])
dnl Check to see if we have a working 64-bit integer type.
dnl Check to see if we have a working 64-bit integer type.
dnl This breaks down into two steps:
dnl This breaks down into two steps:
dnl (1) figure out if the compiler has a 64-bit int type with working
dnl (1) figure out if the compiler has a 64-bit int type with working
...
...
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