Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
05d6bc47
Commit
05d6bc47
authored
Feb 16, 2003
by
Niels Möller
Browse files
New file, to replace misc/bootstrap.sh.
Rev: .bootstrap:1.1 Rev: ChangeLog:1.615
parent
10f16aeb
Changes
2
Hide whitespace changes
Inline
Side-by-side
.bootstrap
0 → 100755
View file @
05d6bc47
#! /bin/sh
# Build all automatically generated files that are not present in the
# CVS repository.
# This script is for use in the source directory, before you run
# configure. To get started from a fresh CVS checkout, you also need
# to run configure and make bootstrap from your build directory.
set
-e
relative_symlink
()
{
(
target
=
"
$1
"
shift
while
[
$#
-ge
1
]
;
do
dir
=
"
$1
"
if
[
"
$dir
"
=
"."
]
;
ln
-s
"
$target
"
"
$dir
"
else
dotdots
=
"
`
echo
"
$dir
"
|
sed
's%[^/][^/]*%..%g'
`
"
(
cd
"
$dir
"
&&
ln
-s
"
$dotdots
/
$target
"
.
)
fi
done
)
}
relative_symlink misc/run-tests
\
src/testsuite src/argp/testsuite src/nettle/testsuite src/spki/testsuite
relative_symlink misc/acinclude.m4
\
.
src/nettle src/spki
relative_symlink misc/memxor.c
\
src src/nettle
relative_symlink misc/memxor.h
\
src src/nettle
for
subdir
in
src/argp src/nettle src/sftp src/spki
;
do
(
cd
subdir
&&
./.bootstrap
)
done
aclocal
&&
autoconf
&&
autoheader
&&
automake
-a
ChangeLog
View file @
05d6bc47
2003-02-16 Niels Mller <nisse@cuckoo.hack.org>
* .bootstrap: New file, to replace misc/bootstrap.sh.
* General cleanup. Use types uint32_t and friends instead of
UINT32. Include files in the order config.h, C headers, system
headers, lsh headers. Deleted RCS id strings. Affects most files.
* src/digits.h, src/read_base64.c: Deleted obsolete file.
* src/Makefile.am.in (liblsh_a_SOURCES): Removed read_base64.c.
* configure.ac: Added missing LSH_RPATH_FIX between the checks for
gmp and liboop.
Use AH_BOTTOM to define NORETURN, PRINTF_STYLE and UNUSED.
2003-02-15 Niels Mller <nisse@cuckoo.hack.org>
* src/io.h (lsh_fd): Deleted old hanged_up attribute.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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