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
f41eee75
Commit
f41eee75
authored
Aug 29, 2003
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added --disable-cxx flag to configure
parent
872405e6
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
4321 additions
and
1959 deletions
+4321
-1959
ChangeLog
ChangeLog
+19
-0
Makefile.in
Makefile.in
+2
-7
configure
configure
+4208
-1893
configure.ac
configure.ac
+9
-2
Makefile.in
libvncclient/Makefile.in
+46
-31
Makefile.in
test/Makefile.in
+33
-22
Makefile.in
vncterm/Makefile.in
+4
-4
No files found.
ChangeLog
View file @
f41eee75
added --disable-cxx Option for configure
x11vnc changes from Karl Runge:
- Changed all those whimpy printf(...)'s into manly fprintf(stdxxx,...)'s.
- Added -q switch (quiet) to suppress printing all the debug-looking output.
- Added -bg switch to fork into background after everything is set up.
(checks for LIBVNCSERVER_HAVE_FORK and LIBVNCSERVER_HAVE_SETSID)
- Print this string out to stdout: 'PORT=XXXX' (usually XXXX = 5900).
Combining with -bg, easy to write a ssh/rsh wrapper with something like:
port=`ssh $host "x11vnc -bg .."` then run vncviewer based on $port output.
(tunneling the vnc traffic thru ssh a bit more messy, but doable)
- Quite a bit of code to be more careful when doing 8bpp indexed color, e.g.
not assuming NCOLORS is 256, handling 8bit TrueColor and Direct Color, etc
(I did all this probably in April, not quite clear in my mind now, but
I did test it out a fair amount on my old Sparcstation 20 wrt a user's
questions).
introduce rfbErr for Errors (Erik)
make rfbLog overridable (suggested by Erik)
don't reutrn on EINTR in WriteExact()/ReadExact() (suggested by Erik)
...
...
Makefile.in
View file @
f41eee75
...
...
@@ -123,8 +123,7 @@ subdir = .
ACLOCAL_M4
=
$(top_srcdir)
/aclocal.m4
mkinstalldirs
=
$(SHELL)
$(top_srcdir)
/mkinstalldirs
CONFIG_HEADER
=
config.h
CONFIG_CLEAN_FILES
=
libvncclient/Makefile
test
/Makefile
\
libvncserver.spec libvncserver-config
CONFIG_CLEAN_FILES
=
libvncserver.spec libvncserver-config
LIBRARIES
=
$(lib_LIBRARIES)
libvncserver_a_AR
=
$(AR)
cru
...
...
@@ -229,10 +228,6 @@ $(srcdir)/config.h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4)
distclean-hdr
:
-
rm
-f
config.h
libvncclient/Makefile
:
$(top_builddir)/config.status $(top_srcdir)/libvncclient/Makefile.in
cd
$(top_builddir)
&&
$(SHELL)
./config.status
$@
test/Makefile
:
$(top_builddir)/config.status $(top_srcdir)/test/Makefile.in
cd
$(top_builddir)
&&
$(SHELL)
./config.status
$@
libvncserver.spec
:
$(top_builddir)/config.status libvncserver.spec.in
cd
$(top_builddir)
&&
$(SHELL)
./config.status
$@
libvncserver-config
:
$(top_builddir)/config.status libvncserver-config.in
...
...
@@ -567,7 +562,7 @@ distcleancheck_listfiles = find . -type f -print
distdir
:
$(DISTFILES)
$(am__remove_distdir)
mkdir
$(distdir)
$(mkinstalldirs)
$(distdir)
/.
$(distdir)
/
libvncclient
$(distdir)
/rdr
$(distdir)
/rfb
$(distdir)
/test
$(mkinstalldirs)
$(distdir)
/.
$(distdir)
/
rdr
$(distdir)
/rfb
@
for
file
in
$(DISTFILES)
;
do
\
if
test
-f
$$
file
||
test
-d
$$
file
;
then
d
=
.
;
else
d
=
$(srcdir)
;
fi
;
\
dir
=
`
echo
"
$$
file"
|
sed
-e
's,/[^/]*$$,,'
`
;
\
...
...
configure
View file @
f41eee75
This diff is collapsed.
Click to expand it.
configure.ac
View file @
f41eee75
...
...
@@ -67,8 +67,15 @@ if test ! -z "$HAVE_PTHREAD_H"; then
AC_CHECK_LIB(pthread, pthread_mutex_lock, HAVE_LIBPTHREAD="true")
fi
AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_LIBPTHREAD")
AC_CHECK_PROGS(CXX,[g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC],none)
AC_PROG_CXX
AC_ARG_ENABLE(cxx,
[ --disable-cxx disable use of c++],
[ disable_cxx=yes],)
if test -z "$disable_cxx"; then
AC_CHECK_PROGS(CXX,[g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC],none)
AC_PROG_CXX
else
CXX=none
fi
if test ! -z "$HAVE_ZLIB_H"; then
AC_CHECK_LIB(z, deflate, , HAVE_ZLIB_H="")
if test ! -z "$HAVE_JPEGLIB_H" -a ! -z "$HAVE_ZLIB_H"; then
...
...
libvncclient/Makefile.in
View file @
f41eee75
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
# Makefile.in generated by automake 1.6 from Makefile.am.
# @configure_input@
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
, 2002
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
...
...
@@ -12,7 +13,6 @@
# PARTICULAR PURPOSE.
@SET_MAKE@
SHELL
=
@SHELL@
srcdir
=
@srcdir@
...
...
@@ -43,9 +43,12 @@ AUTOCONF = @AUTOCONF@
AUTOMAKE
=
@AUTOMAKE@
AUTOHEADER
=
@AUTOHEADER@
am__cd
=
CDPATH
=
"
$$
{ZSH_VERSION+.}
$(PATH_SEPARATOR)
"
&&
cd
INSTALL
=
@INSTALL@
INSTALL_PROGRAM
=
@INSTALL_PROGRAM@
INSTALL_DATA
=
@INSTALL_DATA@
install_sh_DATA
=
$(install_sh)
-c
-m
644
install_sh_PROGRAM
=
$(install_sh)
-c
INSTALL_SCRIPT
=
@INSTALL_SCRIPT@
INSTALL_HEADER
=
$(INSTALL_DATA)
transform
=
@program_transform_name@
...
...
@@ -55,18 +58,21 @@ POST_INSTALL = :
NORMAL_UNINSTALL
=
:
PRE_UNINSTALL
=
:
POST_UNINSTALL
=
:
EXEEXT
=
@EXEEXT@
OBJEXT
=
@OBJEXT@
PATH_SEPARATOR
=
@PATH_SEPARATOR@
AMTAR
=
@AMTAR@
AWK
=
@AWK@
CC
=
@CC@
CCLD
=
@CCLD@
CXX
=
@CXX@
DEPDIR
=
@DEPDIR@
EXEEXT
=
@EXEEXT@
INSTALL_STRIP_PROGRAM
=
@INSTALL_STRIP_PROGRAM@
OBJEXT
=
@OBJEXT@
PACKAGE
=
@PACKAGE@
RANLIB
=
@RANLIB@
RPMSOURCEDIR
=
@RPMSOURCEDIR@
STRIP
=
@STRIP@
VERSION
=
@VERSION@
X_CFLAGS
=
@X_CFLAGS@
X_EXTRA_LIBS
=
@X_EXTRA_LIBS@
...
...
@@ -75,7 +81,6 @@ X_PRE_LIBS = @X_PRE_LIBS@
am__include
=
@am__include@
am__quote
=
@am__quote@
install_sh
=
@install_sh@
CFLAGS
=
-g
-I
..
-I
.
-Wall
libvncclient_a_SOURCES
=
cursor.c listen.c rfbproto.c sockets.c vncviewer.c
...
...
@@ -115,9 +120,10 @@ CPPFLAGS = @CPPFLAGS@
LDFLAGS
=
@LDFLAGS@
LIBS
=
@LIBS@
depcomp
=
$(SHELL)
$(top_srcdir)
/depcomp
@AMDEP_TRUE@
DEP_FILES
=
$(DEPDIR)
/client_test.Po
$(DEPDIR)
/cursor.Po
\
@AMDEP_TRUE@
$(DEPDIR)
/listen.Po
$(DEPDIR)
/rfbproto.Po
\
@AMDEP_TRUE@
$(DEPDIR)
/sockets.Po
$(DEPDIR)
/vncviewer.Po
am__depfiles_maybe
=
depfiles
@AMDEP_TRUE@
DEP_FILES
=
./
$(DEPDIR)
/client_test.Po ./
$(DEPDIR)
/cursor.Po
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/listen.Po ./
$(DEPDIR)
/rfbproto.Po
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/sockets.Po ./
$(DEPDIR)
/vncviewer.Po
COMPILE
=
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
\
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
LINK
=
$(CCLD)
$(AM_CFLAGS)
$(CFLAGS)
$(AM_LDFLAGS)
$(LDFLAGS)
-o
$@
...
...
@@ -133,23 +139,24 @@ $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
cd
$(top_srcdir)
&&
\
$(AUTOMAKE)
--gnu
libvncclient/Makefile
Makefile
:
$(srcdir)/Makefile.in $(top_builddir)/config.status
cd
$(top_builddir)
&&
\
CONFIG_HEADERS
=
CONFIG_LINKS
=
\
CONFIG_FILES
=
$(subdir)
/
$@
$(SHELL)
./config.status
cd
$(top_builddir)
&&
$(SHELL)
./config.status
$(subdir)
/
$@
$(am__depfiles_maybe)
AR
=
ar
libLIBRARIES_INSTALL
=
$(INSTALL_DATA)
install-libLIBRARIES
:
$(lib_LIBRARIES)
@
$(NORMAL_INSTALL)
$(mkinstalldirs)
$(DESTDIR)$(libdir)
@
list
=
'
$(lib_LIBRARIES)
'
;
for
p
in
$$
list
;
do
\
if
test
-f
$$
p
;
then
\
echo
"
$(INSTALL_DATA)
$$
p
$(DESTDIR)$(libdir)
/
$$
p"
;
\
$(INSTALL_DATA)
$$
p
$(DESTDIR)$(libdir)
/
$$
p
;
\
f
=
"
`
echo
$$
p |
sed
-e
's|^.*/||'
`
"
;
\
echo
"
$(libLIBRARIES_INSTALL)
$$
p
$(DESTDIR)$(libdir)
/
$$
f"
;
\
$(libLIBRARIES_INSTALL)
$$
p
$(DESTDIR)$(libdir)
/
$$
f
;
\
else
:
;
fi
;
\
done
@
$(POST_INSTALL)
@
list
=
'
$(lib_LIBRARIES)
'
;
for
p
in
$$
list
;
do
\
if
test
-f
$$
p
;
then
\
p
=
"
`
echo
$$
p |
sed
-e
's|^.*/||'
`
"
;
\
echo
"
$(RANLIB)
$(DESTDIR)$(libdir)
/
$$
p"
;
\
$(RANLIB)
$(DESTDIR)$(libdir)
/
$$
p
;
\
else
:
;
fi
;
\
...
...
@@ -158,6 +165,7 @@ install-libLIBRARIES: $(lib_LIBRARIES)
uninstall-libLIBRARIES
:
@
$(NORMAL_UNINSTALL)
@
list
=
'
$(lib_LIBRARIES)
'
;
for
p
in
$$
list
;
do
\
p
=
"
`
echo
$$
p |
sed
-e
's|^.*/||'
`
"
;
\
echo
" rm -f
$(DESTDIR)$(libdir)
/
$$
p"
;
\
rm
-f
$(DESTDIR)$(libdir)
/
$$
p
;
\
done
...
...
@@ -181,15 +189,15 @@ mostlyclean-compile:
distclean-compile
:
-
rm
-f
*
.tab.c
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/client_test.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/cursor.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/listen.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/rfbproto.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/sockets.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/vncviewer.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/client_test.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/cursor.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/listen.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/rfbproto.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/sockets.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/vncviewer.Po@am__quote@
distclean-depend
:
-
rm
-rf
$(DEPDIR)
-
rm
-rf
./
$(DEPDIR)
.c.o
:
@AMDEP_TRUE@
source
=
'$<'
object
=
'$@'
libtool
=
no @AMDEPBACKSLASH@
...
...
@@ -205,38 +213,41 @@ distclean-depend:
CCDEPMODE
=
@CCDEPMODE@
uninstall-info-am
:
ETAGS
=
etags
ETAGSFLAGS
=
tags
:
TAGS
ID
:
$(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list
=
'
$(SOURCES)
$(HEADERS)
$(TAGS_FILES)
'
;
\
list
=
'
$(SOURCES)
$(HEADERS)
$(
LISP)
$(
TAGS_FILES)
'
;
\
unique
=
`
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
echo
$$
i
;
else
echo
$(srcdir)
/
$$
i
;
fi
;
\
done
|
\
$(AWK)
' { files[$$0] = 1; } \
END { for (i in files) print i; }'
`
;
\
mkid
-fID
$$
unique
$(LISP)
mkid
-fID
$$
unique
TAGS
:
$(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES)
\
$(TAGS_FILES) $(LISP)
tags
=
;
\
here
=
`
pwd
`
;
\
list
=
'
$(SOURCES)
$(HEADERS)
$(TAGS_FILES)
'
;
\
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
$(TAGS_FILES)
'
;
\
unique
=
`
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
echo
$$
i
;
else
echo
$(srcdir)
/
$$
i
;
fi
;
\
done
|
\
$(AWK)
' { files[$$0] = 1; } \
END { for (i in files) print i; }'
`
;
\
test
-z
"
$(ETAGS_ARGS)$$
unique
$(LISP)$$
tags"
\
||
etags
$(ETAGS_ARGS)
$$
tags
$$
unique
$(LISP)
test
-z
"
$(ETAGS_ARGS)$$
tags
$$
unique"
\
||
$(ETAGS)
$(ETAGSFLAGS)
$(AM_ETAGSFLAGS)
$(ETAGS_ARGS)
\
$$
tags
$$
unique
GTAGS
:
here
=
`
CDPATH
=
:
&&
cd
$(top_builddir)
&&
pwd
`
\
here
=
`
$(am__cd)
$(top_builddir)
&&
pwd
`
\
&&
cd
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
$$
here
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH
DISTFILES
=
$(DIST_COMMON)
$(DIST_SOURCES)
$(TEXINFOS)
$(EXTRA_DIST)
top_distdir
=
..
...
...
@@ -244,13 +255,16 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir
:
$(DISTFILES)
@
for
file
in
$(DISTFILES)
;
do
\
if
test
-f
$$
file
;
then
d
=
.
;
else
d
=
$(srcdir)
;
fi
;
\
if
test
-f
$$
file
||
test
-d
$$
file
;
then
d
=
.
;
else
d
=
$(srcdir)
;
fi
;
\
dir
=
`
echo
"
$$
file"
|
sed
-e
's,/[^/]*$$,,'
`
;
\
if
test
"
$$
dir"
!=
"
$$
file"
&&
test
"
$$
dir"
!=
"."
;
then
\
$(mkinstalldirs)
"
$(distdir)
/
$$
dir"
;
\
dir
=
"/
$$
dir"
;
\
$(mkinstalldirs)
"
$(distdir)$$
dir"
;
\
else
\
dir
=
''
;
\
fi
;
\
if
test
-d
$$
d/
$$
file
;
then
\
cp
-pR
$$
d/
$$
file
$(distdir)
\
cp
-pR
$$
d/
$$
file
$(distdir)
$$
dir
\
||
exit
1
;
\
else
\
test
-f
$(distdir)
/
$$
file
\
...
...
@@ -276,6 +290,7 @@ install-am: all-am
installcheck
:
installcheck-am
install-strip
:
$(MAKE)
$(AM_MAKEFLAGS)
INSTALL_PROGRAM
=
"
$(INSTALL_STRIP_PROGRAM)
"
\
INSTALL_STRIP_FLAG
=
-s
\
`
test
-z
'
$(STRIP)
'
||
\
echo
"INSTALL_PROGRAM_ENV=STRIPPROG='
$(STRIP)
'"
`
install
mostlyclean-generic
:
...
...
test/Makefile.in
View file @
f41eee75
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
# Makefile.in generated by automake 1.6 from Makefile.am.
# @configure_input@
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
, 2002
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
...
...
@@ -12,7 +13,6 @@
# PARTICULAR PURPOSE.
@SET_MAKE@
SHELL
=
@SHELL@
srcdir
=
@srcdir@
...
...
@@ -43,9 +43,12 @@ AUTOCONF = @AUTOCONF@
AUTOMAKE
=
@AUTOMAKE@
AUTOHEADER
=
@AUTOHEADER@
am__cd
=
CDPATH
=
"
$$
{ZSH_VERSION+.}
$(PATH_SEPARATOR)
"
&&
cd
INSTALL
=
@INSTALL@
INSTALL_PROGRAM
=
@INSTALL_PROGRAM@
INSTALL_DATA
=
@INSTALL_DATA@
install_sh_DATA
=
$(install_sh)
-c
-m
644
install_sh_PROGRAM
=
$(install_sh)
-c
INSTALL_SCRIPT
=
@INSTALL_SCRIPT@
INSTALL_HEADER
=
$(INSTALL_DATA)
transform
=
@program_transform_name@
...
...
@@ -55,18 +58,21 @@ POST_INSTALL = :
NORMAL_UNINSTALL
=
:
PRE_UNINSTALL
=
:
POST_UNINSTALL
=
:
EXEEXT
=
@EXEEXT@
OBJEXT
=
@OBJEXT@
PATH_SEPARATOR
=
@PATH_SEPARATOR@
AMTAR
=
@AMTAR@
AWK
=
@AWK@
CC
=
@CC@
CCLD
=
@CCLD@
CXX
=
@CXX@
DEPDIR
=
@DEPDIR@
EXEEXT
=
@EXEEXT@
INSTALL_STRIP_PROGRAM
=
@INSTALL_STRIP_PROGRAM@
OBJEXT
=
@OBJEXT@
PACKAGE
=
@PACKAGE@
RANLIB
=
@RANLIB@
RPMSOURCEDIR
=
@RPMSOURCEDIR@
STRIP
=
@STRIP@
VERSION
=
@VERSION@
X_CFLAGS
=
@X_CFLAGS@
X_EXTRA_LIBS
=
@X_EXTRA_LIBS@
...
...
@@ -75,7 +81,6 @@ X_PRE_LIBS = @X_PRE_LIBS@
am__include
=
@am__include@
am__quote
=
@am__quote@
install_sh
=
@install_sh@
CFLAGS
=
-I
..
-g
-Wall
noinst_PROGRAMS
=
tight-1
...
...
@@ -100,7 +105,8 @@ CPPFLAGS = @CPPFLAGS@
LDFLAGS
=
@LDFLAGS@
LIBS
=
@LIBS@
depcomp
=
$(SHELL)
$(top_srcdir)
/depcomp
@AMDEP_TRUE@
DEP_FILES
=
$(DEPDIR)
/tight-1.Po
am__depfiles_maybe
=
depfiles
@AMDEP_TRUE@
DEP_FILES
=
./
$(DEPDIR)
/tight-1.Po
COMPILE
=
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
\
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
LINK
=
$(CCLD)
$(AM_CFLAGS)
$(CFLAGS)
$(AM_LDFLAGS)
$(LDFLAGS)
-o
$@
...
...
@@ -116,9 +122,7 @@ $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
cd
$(top_srcdir)
&&
\
$(AUTOMAKE)
--gnu
test
/Makefile
Makefile
:
$(srcdir)/Makefile.in $(top_builddir)/config.status
cd
$(top_builddir)
&&
\
CONFIG_HEADERS
=
CONFIG_LINKS
=
\
CONFIG_FILES
=
$(subdir)
/
$@
$(SHELL)
./config.status
cd
$(top_builddir)
&&
$(SHELL)
./config.status
$(subdir)
/
$@
$(am__depfiles_maybe)
clean-noinstPROGRAMS
:
-
test
-z
"
$(noinst_PROGRAMS)
"
||
rm
-f
$(noinst_PROGRAMS)
...
...
@@ -132,10 +136,10 @@ mostlyclean-compile:
distclean-compile
:
-
rm
-f
*
.tab.c
@AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/tight-1.Po@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@
./
$(DEPDIR)/tight-1.Po@am__quote@
distclean-depend
:
-
rm
-rf
$(DEPDIR)
-
rm
-rf
./
$(DEPDIR)
.c.o
:
@AMDEP_TRUE@
source
=
'$<'
object
=
'$@'
libtool
=
no @AMDEPBACKSLASH@
...
...
@@ -151,38 +155,41 @@ distclean-depend:
CCDEPMODE
=
@CCDEPMODE@
uninstall-info-am
:
ETAGS
=
etags
ETAGSFLAGS
=
tags
:
TAGS
ID
:
$(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list
=
'
$(SOURCES)
$(HEADERS)
$(TAGS_FILES)
'
;
\
list
=
'
$(SOURCES)
$(HEADERS)
$(
LISP)
$(
TAGS_FILES)
'
;
\
unique
=
`
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
echo
$$
i
;
else
echo
$(srcdir)
/
$$
i
;
fi
;
\
done
|
\
$(AWK)
' { files[$$0] = 1; } \
END { for (i in files) print i; }'
`
;
\
mkid
-fID
$$
unique
$(LISP)
mkid
-fID
$$
unique
TAGS
:
$(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES)
\
$(TAGS_FILES) $(LISP)
tags
=
;
\
here
=
`
pwd
`
;
\
list
=
'
$(SOURCES)
$(HEADERS)
$(TAGS_FILES)
'
;
\
list
=
'
$(SOURCES)
$(HEADERS)
$(LISP)
$(TAGS_FILES)
'
;
\
unique
=
`
for
i
in
$$
list
;
do
\
if
test
-f
"
$$
i"
;
then
echo
$$
i
;
else
echo
$(srcdir)
/
$$
i
;
fi
;
\
done
|
\
$(AWK)
' { files[$$0] = 1; } \
END { for (i in files) print i; }'
`
;
\
test
-z
"
$(ETAGS_ARGS)$$
unique
$(LISP)$$
tags"
\
||
etags
$(ETAGS_ARGS)
$$
tags
$$
unique
$(LISP)
test
-z
"
$(ETAGS_ARGS)$$
tags
$$
unique"
\
||
$(ETAGS)
$(ETAGSFLAGS)
$(AM_ETAGSFLAGS)
$(ETAGS_ARGS)
\
$$
tags
$$
unique
GTAGS
:
here
=
`
CDPATH
=
:
&&
cd
$(top_builddir)
&&
pwd
`
\
here
=
`
$(am__cd)
$(top_builddir)
&&
pwd
`
\
&&
cd
$(top_srcdir)
\
&&
gtags
-i
$(GTAGS_ARGS)
$$
here
distclean-tags
:
-
rm
-f
TAGS ID GTAGS GRTAGS GSYMS GPATH
DISTFILES
=
$(DIST_COMMON)
$(DIST_SOURCES)
$(TEXINFOS)
$(EXTRA_DIST)
top_distdir
=
..
...
...
@@ -190,13 +197,16 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir
:
$(DISTFILES)
@
for
file
in
$(DISTFILES)
;
do
\
if
test
-f
$$
file
;
then
d
=
.
;
else
d
=
$(srcdir)
;
fi
;
\
if
test
-f
$$
file
||
test
-d
$$
file
;
then
d
=
.
;
else
d
=
$(srcdir)
;
fi
;
\
dir
=
`
echo
"
$$
file"
|
sed
-e
's,/[^/]*$$,,'
`
;
\
if
test
"
$$
dir"
!=
"
$$
file"
&&
test
"
$$
dir"
!=
"."
;
then
\
$(mkinstalldirs)
"
$(distdir)
/
$$
dir"
;
\
dir
=
"/
$$
dir"
;
\
$(mkinstalldirs)
"
$(distdir)$$
dir"
;
\
else
\
dir
=
''
;
\
fi
;
\
if
test
-d
$$
d/
$$
file
;
then
\
cp
-pR
$$
d/
$$
file
$(distdir)
\
cp
-pR
$$
d/
$$
file
$(distdir)
$$
dir
\
||
exit
1
;
\
else
\
test
-f
$(distdir)
/
$$
file
\
...
...
@@ -221,6 +231,7 @@ install-am: all-am
installcheck
:
installcheck-am
install-strip
:
$(MAKE)
$(AM_MAKEFLAGS)
INSTALL_PROGRAM
=
"
$(INSTALL_STRIP_PROGRAM)
"
\
INSTALL_STRIP_FLAG
=
-s
\
`
test
-z
'
$(STRIP)
'
||
\
echo
"INSTALL_PROGRAM_ENV=STRIPPROG='
$(STRIP)
'"
`
install
mostlyclean-generic
:
...
...
vncterm/Makefile.in
View file @
f41eee75
...
...
@@ -105,18 +105,18 @@ CONFIG_CLEAN_FILES =
noinst_PROGRAMS
=
VNCommand
$(EXEEXT)
example
$(EXEEXT)
PROGRAMS
=
$(bin_PROGRAMS)
$(noinst_PROGRAMS)
am__objects_
3
=
VNConsole.
$(OBJEXT)
@LINUX_TRUE@
am_LinuxVNC_OBJECTS
=
LinuxVNC.
$(OBJEXT)
$(am__objects_
3
)
am__objects_
1
=
VNConsole.
$(OBJEXT)
@LINUX_TRUE@
am_LinuxVNC_OBJECTS
=
LinuxVNC.
$(OBJEXT)
$(am__objects_
1
)
LinuxVNC_OBJECTS
=
$(am_LinuxVNC_OBJECTS)
LinuxVNC_LDADD
=
$(LDADD)
LinuxVNC_DEPENDENCIES
=
../libvncserver.a
LinuxVNC_LDFLAGS
=
am_VNCommand_OBJECTS
=
VNCommand.
$(OBJEXT)
$(am__objects_
3
)
am_VNCommand_OBJECTS
=
VNCommand.
$(OBJEXT)
$(am__objects_
1
)
VNCommand_OBJECTS
=
$(am_VNCommand_OBJECTS)
VNCommand_LDADD
=
$(LDADD)
VNCommand_DEPENDENCIES
=
../libvncserver.a
VNCommand_LDFLAGS
=
am_example_OBJECTS
=
example.
$(OBJEXT)
$(am__objects_
3
)
am_example_OBJECTS
=
example.
$(OBJEXT)
$(am__objects_
1
)
example_OBJECTS
=
$(am_example_OBJECTS)
example_LDADD
=
$(LDADD)
example_DEPENDENCIES
=
../libvncserver.a
...
...
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