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
609fee47
Commit
609fee47
authored
Mar 14, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A much better version of this is now in backend/port/aix.
parent
8ec79860
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
69 deletions
+0
-69
src/tools/mkldexport/Makefile
src/tools/mkldexport/Makefile
+0
-21
src/tools/mkldexport/README
src/tools/mkldexport/README
+0
-12
src/tools/mkldexport/mkldexport.sh
src/tools/mkldexport/mkldexport.sh
+0
-36
No files found.
src/tools/mkldexport/Makefile
deleted
100644 → 0
View file @
8ec79860
#-------------------------------------------------------------------------
#
# Makefile.inc--
# Makefile for tools/mkldexport
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/tools/mkldexport/Attic/Makefile,v 1.2 1996/11/12 11:43:12 bryanh Exp $
#
#-------------------------------------------------------------------------
all
:
mkldexport
mkldexport
:
mkldexport.sh
cp
mkldexport.sh mkldexport
chmod
a+x mkldexport
clean
:
rm
-f
mkldexport
src/tools/mkldexport/README
deleted
100644 → 0
View file @
8ec79860
mkldexport is a script for creating an AIX exports from an object file.
Usage:
mkldexport objectfile [location]
where
objectfile is the current location of the object file.
location is the eventual (installed) location of the
object file (if different from the current
working directory).
Written originally by Paul Aoki for postgres v4r2.
src/tools/mkldexport/mkldexport.sh
deleted
100644 → 0
View file @
8ec79860
#!/bin/sh
#
# mkldexport
# create an AIX exports file from an object file
#
# Usage:
# mkldexport objectfile [location]
# where
# objectfile is the current location of the object file.
# location is the eventual (installed) location of the
# object file (if different from the current
# working directory).
#
# /usr/local/devel/postgres-v4r2/src/tools/mkldexport/RCS/mkldexport.sh,v 1.2 1994/03/13 04:59:12 aoki Exp
#
CMDNAME
=
`
basename
$0
`
if
[
-z
"
$1
"
]
;
then
echo
"Usage:
$CMDNAME
object [location]"
exit
1
fi
OBJNAME
=
`
basename
$1
`
if
[
"
`
basename
$OBJNAME
`
"
!=
"
`
basename
$OBJNAME
.o
`
"
]
;
then
OBJNAME
=
`
basename
$OBJNAME
.o
`
.so
fi
if
[
-z
"
$2
"
]
;
then
echo
'#!'
else
echo
'#!'
$2
/
$OBJNAME
fi
/usr/ucb/nm
-g
$1
|
\
egrep
' [TD] '
|
\
sed
-e
's/.* //'
|
\
egrep
-v
'\$'
|
\
sed
-e
's/^[.]//'
|
\
sort
|
\
uniq
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