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
aaee934f
Commit
aaee934f
authored
Feb 16, 2003
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed --link option to libvncserver-config
parent
3c5d1b0f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
configure.ac
configure.ac
+10
-2
libvncserver-config.in
libvncserver-config.in
+1
-1
No files found.
configure.ac
View file @
aaee934f
...
...
@@ -5,7 +5,11 @@ AM_CONFIG_HEADER([include/rfbconfig.h])
# Checks for programs.
AC_PROG_CC
CCLD="\$(CC)"
if test -z "$CC"; then
CCLD="\$(CC)"
else
CCLD="$CC"
fi
AC_PROG_MAKE_SET
AC_PROG_RANLIB
...
...
@@ -55,7 +59,11 @@ if test ! -z "$HAVE_ZLIB_H"; then
if test x$CXX != xnone; then
AC_DEFINE(HAVE_ZRLE)
AC_PROG_CXX
CCLD="\$(CXX)"
if test -z "$CXX"; then
CCLD="\$(CXX)"
else
CCLD="$CXX"
fi
fi
fi
else
...
...
libvncserver-config.in
View file @
aaee934f
...
...
@@ -5,7 +5,7 @@ exec_prefix=@exec_prefix@
exec_prefix_set
=
no
usage
=
"
\
Usage: @PACKAGE@-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
Usage: @PACKAGE@-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--li
nk] [--li
bs] [--cflags]"
if
test
$#
-eq
0
;
then
echo
"
${
usage
}
"
1>&2
...
...
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