Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
e01f8ef5
Commit
e01f8ef5
authored
Sep 22, 2014
by
Brian Bidulock
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed autogen.sh
- no longer applicable: use autoreconf -fiv
parent
681d025e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
57 deletions
+0
-57
autogen.sh
autogen.sh
+0
-57
No files found.
autogen.sh
deleted
100755 → 0
View file @
681d025e
#! /bin/sh
# Run this to generate all the initial makefiles, etc.
set
-e
srcdir
=
`
dirname
$0
`
test
-z
"
$srcdir
"
&&
srcdir
=
.
DIE
=
0
AUTOMAKE
=
automake-1.4
ACLOCAL
=
aclocal-1.4
(
$AUTOMAKE
--version
)
< /dev/null
>
/dev/null 2>&1
||
{
AUTOMAKE
=
automake
ACLOCAL
=
aclocal
}
(
autoconf
--version
)
< /dev/null
>
/dev/null 2>&1
||
{
echo
echo
"You must have autoconf installed to compile libvncserver."
echo
"Download the appropriate package for your distribution,"
echo
"or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE
=
1
}
(
$AUTOMAKE
--version
)
< /dev/null
>
/dev/null 2>&1
||
{
echo
echo
"You must have automake installed to compile libvncserver."
echo
"Get ftp://sourceware.cygnus.com/pub/automake/automake-1.4.tar.gz"
echo
"(or a newer version if it is available)"
DIE
=
1
}
if
test
"
$DIE
"
-eq
1
;
then
exit
1
fi
(
test
-f
$srcdir
/rfb/rfb.h
)
||
{
echo
"You must run this script in the top-level libvncserver directory"
exit
1
}
if
test
-z
"
$*
"
;
then
echo
"I am going to run ./configure with no arguments - if you wish "
echo
"to pass any to it, please specify them on the
$0
command line."
fi
$ACLOCAL
$ACLOCAL_FLAGS
autoheader
$AUTOMAKE
--add-missing
--copy
autoconf
echo
"Running ./configure --enable-maintainer-mode"
"
$@
"
$srcdir
/configure
--enable-maintainer-mode
"
$@
"
echo
"Now type 'make' to compile libvncserver."
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