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
7185455c
Commit
7185455c
authored
Oct 09, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make template CFLAGS handling consistent.
parent
1dad866b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
src/template/aix
src/template/aix
+6
-6
src/template/cygwin
src/template/cygwin
+1
-1
src/template/freebsd
src/template/freebsd
+1
-1
src/template/hpux
src/template/hpux
+1
-1
src/template/osf
src/template/osf
+1
-1
src/template/solaris
src/template/solaris
+1
-1
src/template/univel
src/template/univel
+1
-1
src/template/unixware
src/template/unixware
+1
-1
No files found.
src/template/aix
View file @
7185455c
if test "$GCC" = yes ; then
if test "$GCC" = yes ; then
CFLAGS='-O2 -pipe'
CFLAGS="$CFLAGS -pipe"
else # not GCC
else
CFLAGS='-O2 -qmaxmem=16384 -qsrcmsg -qlonglong'
case $host_os in
case $host_os in
aix3.2.5 | aix4.1*)
aix3.2.5 | aix4.1*)
;;
CFLAGS='-qmaxmem=16384 -qsrcmsg'
;;
*) CFLAGS="$CFLAGS -O2 -qlonglong"
;;
esac
esac
fi # not GCC
CFLAGS="$CFLAGS -qmaxmem=16384 -qsrcmsg"
fi
src/template/cygwin
View file @
7185455c
SRCH_LIB=
'/usr/local/lib'
SRCH_LIB=
"/usr/local/lib"
src/template/freebsd
View file @
7185455c
CFLAGS="$CFLAGS -pipe"
CFLAGS="$CFLAGS -pipe"
case $host_cpu in
case $host_cpu in
alpha*) CFLAGS="$CFLAGS -O";;
alpha*) CFLAGS="$CFLAGS -O";;
# alpha has problems with -O2
esac
esac
THREAD_SUPPORT=yes
THREAD_SUPPORT=yes
...
...
src/template/hpux
View file @
7185455c
...
@@ -2,5 +2,5 @@ CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
...
@@ -2,5 +2,5 @@ CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
if test "$GCC" != yes ; then
if test "$GCC" != yes ; then
CC="$CC -Ae"
CC="$CC -Ae"
CFLAGS="+O2"
CFLAGS="
$CFLAGS
+O2"
fi
fi
src/template/osf
View file @
7185455c
if test "$GCC" != yes ; then
if test "$GCC" != yes ; then
CC="$CC -std"
CC="$CC -std"
CFLAGS=
'-O4 -Olimit 2000'
CFLAGS=
"$CFLAGS -O4 -Olimit 2000"
fi
fi
THREAD_SUPPORT=yes
THREAD_SUPPORT=yes
...
...
src/template/solaris
View file @
7185455c
if test "$GCC" != yes ; then
if test "$GCC" != yes ; then
CC="$CC -Xa" # relaxed ISO C mode
CC="$CC -Xa" # relaxed ISO C mode
CFLAGS="
-O -v"
# -v is like gcc -Wall
CFLAGS="
$CFLAGS -O -v"
# -v is like gcc -Wall
fi
fi
THREAD_SUPPORT=yes
THREAD_SUPPORT=yes
...
...
src/template/univel
View file @
7185455c
CFLAGS=
'-v -O -K i486,host,inline,loop_unroll -Dsvr4'
CFLAGS=
"$CFLAGS -v -O -K i486,host,inline,loop_unroll -Dsvr4"
LIBS="-lc89"
LIBS="-lc89"
src/template/unixware
View file @
7185455c
...
@@ -4,7 +4,7 @@ else
...
@@ -4,7 +4,7 @@ else
# the -Kno_host is temporary for a bug in the compiler. See -hackers
# the -Kno_host is temporary for a bug in the compiler. See -hackers
# discussion on 7-8/Aug/2003.
# discussion on 7-8/Aug/2003.
# when the 7.1.3UP3 or later compiler is out, we can do a version check.
# when the 7.1.3UP3 or later compiler is out, we can do a version check.
CFLAGS=
'-O -Kinline,no_host'
CFLAGS=
"$CFLAGS -O -Kinline,no_host"
THREAD_CPPFLAGS="-K pthread"
THREAD_CPPFLAGS="-K pthread"
fi
fi
...
...
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