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
3a6f1313
Commit
3a6f1313
authored
Sep 02, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use $PATH_SEPARATOR like the rest of the autoconf code, instead of
hardwiring IFS=: when searching paths.
parent
baace400
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3217 additions
and
6819 deletions
+3217
-6819
config/programs.m4
config/programs.m4
+3
-3
configure
configure
+3211
-6813
configure.in
configure.in
+3
-3
No files found.
config/programs.m4
View file @
3a6f1313
# $PostgreSQL: pgsql/config/programs.m4,v 1.1
4 2004/05/19 22:12:30 momjian
Exp $
# $PostgreSQL: pgsql/config/programs.m4,v 1.1
5 2004/09/02 15:39:55 tgl
Exp $
# PGAC_PATH_FLEX
...
...
@@ -14,8 +14,9 @@ if test -n "$FLEX"; then
pgac_cv_path_flex=$FLEX
else
pgac_save_IFS=$IFS
IFS=
:
IFS=
$PATH_SEPARATOR
for pgac_dir in $PATH; do
IFS=$pgac_save_IFS
if test -z "$pgac_dir" || test x"$pgac_dir" = x"."; then
pgac_dir=`pwd`
fi
...
...
@@ -37,7 +38,6 @@ else
fi
done
done
IFS=$pgac_save_IFS
rm -f conftest.l
: ${pgac_cv_path_flex=no}
fi
...
...
configure
View file @
3a6f1313
This diff is collapsed.
Click to expand it.
configure.in
View file @
3a6f1313
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.37
4 2004/08/31 04:08:33 pgsq
l Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.37
5 2004/09/02 15:39:56 tg
l Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -326,7 +326,7 @@ PGAC_ARG_BOOL(enable, cassert, no, [ --enable-cassert enable assertion c
# Include directories
#
ac_save_IFS=$IFS
IFS="${IFS}
:
"
IFS="${IFS}
${PATH_SEPARATOR}
"
# SRCH_INC comes from the template file
for dir in $with_includes $SRCH_INC; do
if test -d "$dir"; then
...
...
@@ -343,7 +343,7 @@ AC_SUBST(INCLUDES)
# Library directories
#
ac_save_IFS=$IFS
IFS="${IFS}
:
"
IFS="${IFS}
${PATH_SEPARATOR}
"
# LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
for dir in $LIBRARY_DIRS $SRCH_LIB; do
if test -d "$dir"; then
...
...
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