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
a91c019c
Commit
a91c019c
authored
Oct 29, 1998
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drat. Should test a few more cases before committing.
parent
485a71a4
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
373 additions
and
436 deletions
+373
-436
src/configure
src/configure
+364
-428
src/configure.in
src/configure.in
+9
-8
No files found.
src/configure
View file @
a91c019c
This diff is collapsed.
Click to expand it.
src/configure.in
View file @
a91c019c
...
@@ -325,6 +325,7 @@ AC_ARG_ENABLE(
...
@@ -325,6 +325,7 @@ AC_ARG_ENABLE(
)
)
dnl Check for C support (allow override if needed)
dnl Check for C support (allow override if needed)
dnl Note: actually, setting CC environment variable works just as well.
AC_ARG_WITH(CC,
AC_ARG_WITH(CC,
[ --with-CC=compiler use specific C compiler],
[ --with-CC=compiler use specific C compiler],
[
[
...
@@ -334,11 +335,14 @@ AC_ARG_WITH(CC,
...
@@ -334,11 +335,14 @@ AC_ARG_WITH(CC,
;;
;;
esac
esac
CC="$withval"
CC="$withval"
],
])
[
AC_PROG_CC
dnl Find a compiler if CC is not already set.
AC_PROG_GCC_TRADITIONAL
AC_PROG_CC
])
dnl Find CPP, then check traditional.
dnl Caution: these macros must be called in this order...
AC_PROG_CPP
AC_PROG_GCC_TRADITIONAL
if test "$CC" = "gcc"
if test "$CC" = "gcc"
then
then
...
@@ -354,9 +358,6 @@ echo "- setting CPPFLAGS=$CPPFLAGS"
...
@@ -354,9 +358,6 @@ echo "- setting CPPFLAGS=$CPPFLAGS"
LDFLAGS="$LDFLAGS $PGSQL_LDFLAGS"
LDFLAGS="$LDFLAGS $PGSQL_LDFLAGS"
echo "- setting LDFLAGS=$LDFLAGS"
echo "- setting LDFLAGS=$LDFLAGS"
dnl Checks for programs.
AC_PROG_CPP
AC_SUBST(PORTNAME)
AC_SUBST(PORTNAME)
AC_SUBST(SRCDIR)
AC_SUBST(SRCDIR)
AC_SUBST(LDFLAGS)
AC_SUBST(LDFLAGS)
...
...
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