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
880035ad
Commit
880035ad
authored
Feb 21, 2006
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IRIX linker is very picky about order of libraries
parent
603b5667
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
configure.ac
configure.ac
+3
-3
Makefile.am
x11vnc/Makefile.am
+1
-1
No files found.
configure.ac
View file @
880035ad
...
@@ -96,18 +96,18 @@ if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then
...
@@ -96,18 +96,18 @@ if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then
[#include <X11/Xlib.h>])
[#include <X11/Xlib.h>])
AC_CHECK_LIB(Xtst, XTestGrabControl,
AC_CHECK_LIB(Xtst, XTestGrabControl,
X_PRELIBS="
$X_PRELIBS -lXtst
"
X_PRELIBS="
-lXtst $X_PRELIBS
"
[AC_DEFINE(HAVE_XTESTGRABCONTROL) HAVE_XTESTGRABCONTROL="true"], ,
[AC_DEFINE(HAVE_XTESTGRABCONTROL) HAVE_XTESTGRABCONTROL="true"], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
AC_CHECK_LIB(Xtst, XTestFakeKeyEvent,
AC_CHECK_LIB(Xtst, XTestFakeKeyEvent,
X_PRELIBS="
$X_PRELIBS -lXtst
"
X_PRELIBS="
-lXtst $X_PRELIBS
"
[AC_DEFINE(HAVE_XTEST)], ,
[AC_DEFINE(HAVE_XTEST)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
if test "x$with_xrecord" != "xno"; then
if test "x$with_xrecord" != "xno"; then
AC_CHECK_LIB(Xtst, XRecordEnableContextAsync,
AC_CHECK_LIB(Xtst, XRecordEnableContextAsync,
X_PRELIBS="
$X_PRELIBS -lXtst
"
X_PRELIBS="
-lXtst $X_PRELIBS
"
[AC_DEFINE(HAVE_RECORD)], ,
[AC_DEFINE(HAVE_RECORD)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
fi
fi
...
...
x11vnc/Makefile.am
View file @
880035ad
...
@@ -15,6 +15,6 @@ if HAVE_X
...
@@ -15,6 +15,6 @@ if HAVE_X
bin_PROGRAMS
=
x11vnc
bin_PROGRAMS
=
x11vnc
x11vnc_SOURCES
=
8to24.c cleanup.c connections.c cursor.c gui.c help.c inet.c keyboard.c options.c pointer.c rates.c remote.c scan.c screen.c selection.c solid.c user.c userinput.c util.c win_utils.c x11vnc.c x11vnc_defs.c xdamage.c xevents.c xinerama.c xkb_bell.c xrandr.c xrecord.c xwrappers.c 8to24.h allowed_input_t.h blackout_t.h cleanup.h connections.h cursor.h enums.h gui.h help.h inet.h keyboard.h options.h params.h pointer.h rates.h remote.h scan.h screen.h scrollevent_t.h selection.h solid.h tkx11vnc.h user.h userinput.h util.h win_utils.h winattr_t.h x11vnc.h xdamage.h xevents.h xinerama.h xkb_bell.h xrandr.h xrecord.h xwrappers.h
x11vnc_SOURCES
=
8to24.c cleanup.c connections.c cursor.c gui.c help.c inet.c keyboard.c options.c pointer.c rates.c remote.c scan.c screen.c selection.c solid.c user.c userinput.c util.c win_utils.c x11vnc.c x11vnc_defs.c xdamage.c xevents.c xinerama.c xkb_bell.c xrandr.c xrecord.c xwrappers.c 8to24.h allowed_input_t.h blackout_t.h cleanup.h connections.h cursor.h enums.h gui.h help.h inet.h keyboard.h options.h params.h pointer.h rates.h remote.h scan.h screen.h scrollevent_t.h selection.h solid.h tkx11vnc.h user.h userinput.h util.h win_utils.h winattr_t.h x11vnc.h xdamage.h xevents.h xinerama.h xkb_bell.h xrandr.h xrecord.h xwrappers.h
INCLUDES
=
@X_CFLAGS@
INCLUDES
=
@X_CFLAGS@
x11vnc_LDADD
=
@X_LIBS@
$(LD_CYGIPC)
$(LDADD
)
x11vnc_LDADD
=
$(LDADD)
@X_LIBS@
$(LD_CYGIPC
)
endif
endif
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