Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
74319571
Commit
74319571
authored
21 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
put back the libtool test, now for 1.5
require autoconf 2.57 require automake 1.7
parent
1752d809
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildconf
+54
-8
54 additions, 8 deletions
buildconf
with
54 additions
and
8 deletions
buildconf
+
54
−
8
View file @
74319571
...
...
@@ -6,18 +6,19 @@ die(){
}
#--------------------------------------------------------------------------
# autoconf 2.5
0
or newer
# autoconf 2.5
7
or newer
#
need_autoconf
=
"2.57"
ac_version
=
`
${
AUTOCONF
:-
autoconf
}
--version
2>/dev/null|head
-1
|
sed
-e
's/^[^0-9]*//'
-e
's/[a-z]* *$//'
`
if
test
-z
"
$ac_version
"
;
then
echo
"buildconf: autoconf not found."
echo
" You need autoconf version
2.50
or newer installed."
echo
" You need autoconf version
$need_autoconf
or newer installed."
exit
1
fi
IFS
=
.
;
set
$ac_version
;
IFS
=
' '
if
test
"
$1
"
=
"2"
-a
"
$2
"
-lt
"5
0
"
||
test
"
$1
"
-lt
"2"
;
then
if
test
"
$1
"
=
"2"
-a
"
$2
"
-lt
"5
7
"
||
test
"
$1
"
-lt
"2"
;
then
echo
"buildconf: autoconf version
$ac_version
found."
echo
" You need autoconf version
2.50
or newer installed."
echo
" You need autoconf version
$need_autoconf
or newer installed."
echo
" If you have a sufficient autoconf installed, but it"
echo
" is not named 'autoconf', then try setting the"
echo
" AUTOCONF environment variable."
...
...
@@ -48,18 +49,19 @@ fi
echo
"buildconf: autoheader version
$ah_version
(ok)"
#--------------------------------------------------------------------------
# automake 1.
5
or newer
# automake 1.
7
or newer
#
need_automake
=
"1.7"
am_version
=
`
${
AUTOMAKE
:-
automake
}
--version
2>/dev/null|head
-1
|
sed
-e
's/^.* \([0-9]\)/\1/'
-e
's/[a-z]* *$//'
`
if
test
-z
"
$am_version
"
;
then
echo
"buildconf: automake not found."
echo
" You need automake version
1.5
or newer installed."
echo
" You need automake version
$need_automake
or newer installed."
exit
1
fi
IFS
=
.
;
set
$am_version
;
IFS
=
' '
if
test
"
$1
"
=
"1"
-a
"
$2
"
-lt
"
5
"
||
test
"
$1
"
-lt
"1"
;
then
if
test
"
$1
"
=
"1"
-a
"
$2
"
-lt
"
7
"
||
test
"
$1
"
-lt
"1"
;
then
echo
"buildconf: automake version
$am_version
found."
echo
" You need automake version
1.5
or newer installed."
echo
" You need automake version
$need_automake
or newer installed."
echo
" If you have a sufficient automake installed, but it"
echo
" is not named 'autommake', then try setting the"
echo
" AUTOMAKE environment variable."
...
...
@@ -68,6 +70,50 @@ fi
echo
"buildconf: automake version
$am_version
(ok)"
#--------------------------------------------------------------------------
# libtool 1.5 or newer
#
LIBTOOL_WANTED_MAJOR
=
1
LIBTOOL_WANTED_MINOR
=
5
LIBTOOL_WANTED_PATCH
=
LIBTOOL_WANTED_VERSION
=
1.5
libtool
=
`
which glibtool 2>/dev/null
`
if
test
!
-x
"
$libtool
"
;
then
libtool
=
`
which libtool
`
fi
#lt_pversion=`${LIBTOOL:-$libtool} --version 2>/dev/null|head -1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//'`
lt_pversion
=
`
$libtool
--version
2>/dev/null|head
-1
|sed
-e
's/^[^0-9]*//g'
-e
's/[- ].*//'
`
if
test
-z
"
$lt_pversion
"
;
then
echo
"buildconf: libtool not found."
echo
" You need libtool version
$LIBTOOL_WANTED_VERSION
or newer installed"
exit
1
fi
lt_version
=
`
echo
$lt_pversion
`
#|sed -e 's/\([a-z]*\)$/.\1/'`
IFS
=
.
;
set
$lt_version
;
IFS
=
' '
lt_status
=
"good"
if
test
"
$1
"
=
"
$LIBTOOL_WANTED_MAJOR
"
;
then
if
test
"
$2
"
-lt
"
$LIBTOOL_WANTED_MINOR
"
;
then
lt_status
=
"bad"
elif
test
!
-z
"
$LIBTOOL_WANTED_PATCH
"
;
then
if
test
"
$3
"
-lt
"
$LIBTOOL_WANTED_PATCH
"
;
then
lt_status
=
"bad"
fi
fi
fi
if
test
$lt_status
!=
"good"
;
then
echo
"buildconf: libtool version
$lt_pversion
found."
echo
" You need libtool version
$LIBTOOL_WANTED_VERSION
or newer installed"
exit
1
fi
echo
"buildconf: libtool version
$lt_version
(ok)"
# ------------------------------------------------------------
# run the correct scripts now
echo
"buildconf: running aclocal"
${
ACLOCAL
:-
aclocal
}
||
die
"The command '
${
AUTOHEADER
:-
aclocal
}
' failed"
echo
"buildconf: running autoheader"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment