ubuntuusers.de

xf4vnc

Status: Ungelöst | Ubuntu-Version: Nicht spezifiziert
Antworten |

lars-friedrich

Anmeldungsdatum:
8. Dezember 2007

Beiträge: Zähle...

hallo,

auf der suche nach einem vnc-server, der auch GLX unterstützt, bin ich auf xf4vnc gestoßen. leider gibt es dafür anscheinend kein deb-paket. binaries sind nur für 32-bit systeme vorhanden. als ich versucht habe den server selber zu kompilieren, hat es viele verschiedene fehlermeldungen gegeben. hat jemand von euch xf4vnc schon einmal erfolgreich für ein 64-bin system, womöglich ubuntu/kubuntu kompiliert?

mfg lars

Moderiert von jug:

Thema ins passende Forum verschoben, bitte beachte die als „Wichtig“ markierten Themen „Welche Themen gehören hier her und welche nicht?“, Danke.

cybox

Avatar von cybox

Anmeldungsdatum:
4. Februar 2007

Beiträge: 84

Wohnort: Cologne - Germany

Mach es dir und uns doch einmal einfacher und Poste einmal die Fehlermeldungen deines Kompilers hier rein.

Und gib mal nen Link zur Projektseite.

Gruß

lars-friedrich

(Themenstarter)

Anmeldungsdatum:
8. Dezember 2007

Beiträge: Zähle...

OK cybox,

dann führe ich jetzt einmal aus was ich getan habe bzw. habe ich es jetzt nochmal strukturiert schritt für schritt gemacht und notiert:

die rahmendaten:

* die projektseite von xf4vnc: http://xf4vnc.sourceforge.net/

* ich beziehe mich auf folgende anleitung zum zum kompilieren: http://xf4vnc.sourceforge.net/modular.html

* CVS-access zum (offenbar relevanten, laut anleitung) code:

1
2
cvs -d:pserver:anonymous@xf4vnc.cvs.sourceforge.net:/cvsroot/xf4vnc login
cvs -z3 -d:pserver:anonymous@xf4vnc.cvs.sourceforge.net:/cvsroot/xf4vnc co -P modular

sobald ich den code heruntergeladen habe, gehe ich nach anleitung vor:

1
2
3
export DEST=/usr/X11R6
export PKG_CONFIG_PATH=${DEST}/lib/pkgconfig:/usr/lib/pkgconfig
export ACLOCAL="aclocal -I ${DEST}/share/aclocal"

* erster teil:

1
2
cd ~/xf4vnc/modular/src/proto/vncproto
./autogen.sh --prefix=${DEST}

Fehler:

1
2
3
4
5
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I /usr/X11R6/share/aclocal
aclocal: couldn't open directory `/usr/X11R6/share/aclocal': No such file or directory
autoreconf: aclocal failed with exit status: 1

→ also habe ich folgendes geändert:

1
export ACLOCAL="aclocal -I /usr/share/aclocal"

und nochmal:

1
./autogen.sh --prefix=${DEST}

–> jetzt ist es gegangen!

dann:

1
sudo make install

→ das ist ohne Fehler erfolgt

* nächster teil:

1
2
cd ~/xf4vnc/modular/src/proto/xcliplistproto
./autogen.sh --prefix=${DEST}

→ dürfte funktioniert haben

dann:

1
sudo make install

→ schaut auch wieder gut aus, kein Fehler.

* nächster teil:

1
2
cd ~/xf4vnc/modular/src/lib/libvnc
./autogen.sh --prefix=${DEST}

→ wieder keine fehlermeldung.

dann:

1
sudo make install

→ OK, hier bekommt man einen längeren make-output, aber offensichtlich keine fehler!

* nächster teil:

1
2
cd ~/xf4vnc/modular/src/lib/libXcliplist
./autogen.sh --prefix=${DEST}

→ wieder keine fehlermeldung.

dann:

1
sudo make install

→ OK, wieder längerer output, dürfte aber in ordnung sein!

* nächster teil (MIT GLX-support - DMX glxproxy):

1
2
cd ~/xf4vnc/modular/src/xserver
./autogen.sh --prefix=${DEST} --disable-dbus --enable-glx --with-mesa-source=${MESA}

das funktioniert leider NICHT: langer output

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I /usr/share/aclocal
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy
autoreconf: running: /usr/bin/autoconf
autoreconf: running: /usr/bin/autoheader
autoreconf: running: automake --add-missing --copy --no-force
configure.ac:31: installing `./install-sh'
configure.ac:31: installing `./missing'
GL/apple/Makefile.am: installing `./depcomp'
configure.ac: installing `./ylwrap'
autoreconf: Leaving directory `.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking dependency style of gcc... gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln -s works... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking how to recognize dependent libraries... pass_all
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
(cached) (cached) checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking whether make sets $(MAKE)... (cached) yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for flex... no
checking for lex... no
checking for bison... no
checking for byacc... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for cpp... /usr/bin/cpp
checking if /usr/bin/cpp requires -undef... yes
checking if /usr/bin/cpp requires -traditional... yes
checking for dtrace... not_found
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking whether byte ordering is bigendian... no
checking for unsigned long... yes
checking size of unsigned long... 8
checking for pid_t... yes
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking sys/endian.h usability... no
checking sys/endian.h presence... no
checking for sys/endian.h... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking for vprintf... yes
checking for _doprnt... no
checking for geteuid... yes
checking for getuid... yes
checking for link... yes
checking for memmove... yes
checking for memset... yes
checking for mkstemp... yes
checking for strchr... yes
checking for strrchr... yes
checking for strtol... yes
checking for getopt... yes
checking for getopt_long... yes
checking for vsnprintf... yes
checking for walkcontext... no
checking for backtrace... yes
checking for getisax... no
checking for getzoneid... no
checking for shmctl64... no
checking for working alloca.h... yes
checking for alloca... yes
checking for getdtablesize... yes
checking for getifaddrs... yes
checking for getpeereid... no
checking for getpeerucred... no
checking for strlcat... no
checking for strlcpy... no
checking for mmap... yes
checking for sqrt in -lm... yes
checking for cbrt in -lm... yes
checking ndbm.h usability... no
checking ndbm.h presence... no
checking for ndbm.h... no
checking dbm.h usability... no
checking dbm.h presence... no
checking for dbm.h... no
checking rpcsvc/dbm.h usability... no
checking rpcsvc/dbm.h presence... no
checking for rpcsvc/dbm.h... no
checking linux/agpgart.h usability... yes
checking linux/agpgart.h presence... yes
checking for linux/agpgart.h... yes
checking sys/agpio.h usability... no
checking sys/agpio.h presence... no
checking for sys/agpio.h... no
checking linux/apm_bios.h usability... yes
checking linux/apm_bios.h presence... yes
checking for linux/apm_bios.h... yes
checking linux/fb.h usability... yes
checking linux/fb.h presence... yes
checking for linux/fb.h... yes
checking asm/mtrr.h usability... yes
checking asm/mtrr.h presence... yes
checking for asm/mtrr.h... yes
checking sys/memrange.h usability... no
checking sys/memrange.h presence... no
checking for sys/memrange.h... no
checking machine/mtrr.h usability... no
checking machine/mtrr.h presence... no
checking for machine/mtrr.h... no
checking for sys/linker.h... no
checking for SYSV IPC... yes
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking for backtrace in -lc... yes
checking to see if we can install the Xorg server as root... no
checking if Xtrans should support UNIX socket connections... yes
checking if Xtrans should support TCP socket connections... yes
checking for library containing socket... none required
checking for library containing gethostbyname... none required
checking for getaddrinfo... yes
checking if IPv6 support should be built... yes
checking for struct sockaddr_in.sin_len... no
checking if Xtrans should support os-specific local connections... no
checking for authdes_seccreate... no
checking for authdes_create... yes
checking for library containing getsecretkey... none required
checking if Secure RPC authentication ("SUN-DES-1") should be supported... yes
checking for /usr/X11R6/share/sgml/X11/defs.ent... no
checking for linuxdoc... no
checking for ps2pdf... /usr/bin/ps2pdf
checking Whether to build documentation... no
checking Whether to build pdf documentation... yes
checking for DBUS... no
checking for HAL... no
checking for clock_gettime... no
checking for clock_gettime in -lrt... yes
checking for a useful monotonic clock ...... yes
checking for DRIPROTO... configure: error: Package requirements (xf86driproto) were not met:

No package 'xf86driproto' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DRIPROTO_CFLAGS
and DRIPROTO_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

–> so, und hier weiß ich jetzt nicht mehr weiter. was ist xf86driproto? wie kann ich dieses paket finden?

kann mir hier jemand helfen, bitte?

mfg lars

Antworten |