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
a3176dac
Commit
a3176dac
authored
Mar 10, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use install-sh unconditionally.
parent
2cfc8fcb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
335 additions
and
452 deletions
+335
-452
configure
configure
+325
-422
configure.in
configure.in
+0
-24
src/Makefile.global.in
src/Makefile.global.in
+8
-6
src/makefiles/Makefile.hpux
src/makefiles/Makefile.hpux
+2
-0
No files found.
configure
View file @
a3176dac
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
a3176dac
...
@@ -602,30 +602,6 @@ echo "using CPPFLAGS=$CPPFLAGS"
...
@@ -602,30 +602,6 @@ echo "using CPPFLAGS=$CPPFLAGS"
echo "using LDFLAGS=$LDFLAGS"
echo "using LDFLAGS=$LDFLAGS"
# Figure out how to invoke "install" and what install options to use.
AC_PROG_INSTALL
# When Autoconf chooses install-sh as install program it tries to generate
# a relative path to it in each makefile where it subsitutes it. This clashes
# with our Makefile.global concept. This workaround helps.
case $INSTALL in
*install-sh*) INSTALL='\${SHELL} \${top_srcdir}/config/install-sh -c';;
esac
# Fix Autoconf's brain-dead defaults for script installs.
INSTALL_SCRIPT="\${INSTALL} -m 755"
# HPUX wants shared libs to be mode 555. Add your platform's special
# needs here if necessary.
case $host_os in
hpux*) INSTL_SHLIB_OPTS="-m 555" ;;
*) INSTL_SHLIB_OPTS="-m 755" ;;
esac
INSTALL_SHLIB="\${INSTALL} $INSTL_SHLIB_OPTS"
AC_SUBST(INSTALL_SHLIB)
AC_PROG_AWK
AC_PROG_AWK
PGAC_PATH_FLEX
PGAC_PATH_FLEX
AC_PROG_LN_S
AC_PROG_LN_S
...
...
src/Makefile.global.in
View file @
a3176dac
# -*-makefile-*-
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.12
2 2001/03/05 09:39:51 peter
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.12
3 2001/03/10 10:38:59 petere
Exp $
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
# All PostgreSQL makefiles include this file and use the variables it sets,
...
@@ -185,12 +185,14 @@ WISH = @WISH@
...
@@ -185,12 +185,14 @@ WISH = @WISH@
# Installation.
# Installation.
INSTALL
=
@INSTALL@
INSTALL
=
$(SHELL)
$(top_srcdir)
/config/install-sh
-c
INSTALL_PROGRAM
=
@INSTALL_PROGRAM@
INSTALL_PROGRAM
=
$(INSTALL)
INSTALL_SCRIPT
=
@INSTALL_SCRIPT@
INSTALL_SCRIPT
=
$(INSTALL)
-m
755
INSTALL_DATA
=
@INSTALL_DATA@
INSTALL_DATA
=
$(INSTALL)
-m
644
INSTALL_SHLIB
=
@INSTALL_SHLIB@
INSTALL_SHLIB
=
$(INSTALL)
$(INSTALL_SHLIB_OPTS)
# Override in Makefile.port if necessary
INSTALL_SHLIB_OPTS
=
-m
755
mkinstalldirs
=
$(SHELL)
$(top_srcdir)
/config/mkinstalldirs
mkinstalldirs
=
$(SHELL)
$(top_srcdir)
/config/mkinstalldirs
missing
=
$(SHELL)
$(top_srcdir)
/config/missing
missing
=
$(SHELL)
$(top_srcdir)
/config/missing
...
...
src/makefiles/Makefile.hpux
View file @
a3176dac
...
@@ -30,6 +30,8 @@ LDFLAGS += -Wl,-z
...
@@ -30,6 +30,8 @@ LDFLAGS += -Wl,-z
export_dynamic
=
-Wl
,-E
export_dynamic
=
-Wl
,-E
INSTALL_SHLIB_OPTS
=
-m
555
AROPT
=
crs
AROPT
=
crs
DLSUFFIX
=
.sl
DLSUFFIX
=
.sl
...
...
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