treiber installieren bzw für lcd display instalieren (Normaler weg geht nicht)

Post Reply
Message
Author
confu
Posts: 3
Joined: 27. Jun 2003 7:06

treiber installieren bzw für lcd display instalieren (Normaler weg geht nicht)

#1 Post by confu »

Hallo zusammen
ich brauche dringen Hilfe zum Thema Treiber in linux Suse 8.2 einbinden versuche seit tagen lcdproc und somit mein LCD Display zum laufen zu bringen aber selbiger bricht immer mit der Meldung kein Treiber gefunden ab
Wie ihr seht ich bin Neuling und habe recht wenig Ahnung.
für mich stellen sich die fragen
1. wo sind Treiber Dateien abgelegt
2. wie kann man einen Treiber von hand einbinden
3 kann man feststellen ob ein Treiber da ist und läuft
4. kann man feststellen ob ein lpt richtig funktioniert
5. wie funktionieren devices speziell /dev/lcd /dev/parport /dev/lp0 1 t und weshalb gibt es so viele verschiedene für ein und denselben Port und für was braucht man dann auch noch die Verlinkungen (/dev/lcd) (habe aus versehen eines gelöscht wie kann ich es wieder herstellen)
und zu guter letzt
wird man bei solchen Themen etwa verrückt???
Auf jeden fall schon mal riesigen dank
confu

Jochen

Re: treiber installieren bzw für lcd display instalieren (Normaler weg geht nic

#2 Post by Jochen »

Antwort auf die letzte Frage zuerst: Ja. <img src="http://www.pl-forum.de/UltraBoard/Images/Happy.gif" border="0" align="middle">

Aber jetzt der Reihe nach.

1. Die Treiber liegen normalerweise unter "/lib/modules/[k]kernelversion</i>". Also sind die Module zum Kernel 2.4.21 unter /lib/modules/2.4.21 zu finden. Dort findest Du eine Unterverzeichnisstruktur. Wenn Du Dir einfach mal eine Liste aller Module anschauen willst, dann mach ein<pre>find /lib/modules/<i>kernelversion</i> -name "*.o" | less</pre>

2. Am einfachsten geht "modprobe" in der Form <pre>modprobe <i>modulname</i></pre>Da modprobe aber etwas Infrastruktur verlangt (einigermassen korrekte /etc/modules.conf und /lib/modules/<i>kernelversion</i>/modules.dep), ist es manchmal besser, "insmod" zu verwenden: <pre>insmod <i>modulname</i></pre>Das Kommando nimmt die Datei direkt und lädt sie ohne irgendwelchen Trara wie Abhängigkeiten auflösen usw. drum herum. Sollte das Modul nicht unter /lib/modules liegen, kannst Du auch einfach in das Verzeichnis mit dem Modul wechseln und <pre>insmod ./<i>modulname</i></pre>eintippen.

3. Ob der Treiber geladen ist, sagt Dir ein "lsmod" oder ein "cat /proc/modules". Ob er dann funktioniert, kann nur ein Test mit irgendeiner Software zeigen, die darauf zugreift...

4. Drucker anschliessen und Testdruck machen?

5. Bisher haben wir nur über Module gesprochen. Mittels der Device-Dateien unter /dev sagst Du dem Kernel, auf welchen Treiber und welche Untereinheit genau Du zugreifen willst. Mehrere für ein und denselben Port gibt es, weil sich die Ansteuerung des Ports je nachdem, ob ein LCD oder ein Drucker dahinterhängen, unterscheidet. Welche Links und Dateien Du brauchst, weiss ich nicht. Zum Troubleshooting (Hardware wie Software) hat aber die Online-Doku zu lcdproc scheinbar einiges zu bieten: <a href="http://lcdproc.sourceforge.net/docs/0.4 ... -user.html" target="_blank"><!--auto-->http://lcdproc.sourceforge.net/docs/0.4 ... <!--auto-->

Jochen

confu
Posts: 3
Joined: 27. Jun 2003 7:06

Re: treiber installieren bzw für lcd display instalieren

#3 Post by confu »

hallo jochen und erstmal vielen vielen dank
schuppen fallen mir von den augen module sind also treiber somit gehe ich auch davon aus das sie so ähnlich heisen sollten (**hd44780**) worauf ich festgestellt habe das selbiger wirklich nicht existiert.
nun habe ich hd44xx.c und .h dateien wenn ich nun versuche aus ihnen mittels gcc /root/lcdproc-0.4.3/server/drivers/hd44780.c eine .o zu machen wird das nix und ich bekomme die meldung

<font color="0000FF">/root/lcdproc-0.4.3/server/drivers/hd44780.c:56:24: shared/str.h: No such file or directory
root/lcdproc-0.4.3/server/drivers/hd44780.c:57:20: render.h: No such file or directory
/root/lcdproc-0.4.3/server/drivers/hd44780.c:58:27: shared/report.h: No such file or directory
/root/lcdproc-0.4.3/server/drivers/hd44780.c: In function `HD44780_init':
/root/lcdproc-0.4.3/server/drivers/hd44780.c:193: error: `RPT_ERR' undeclared (first use in this function)
/root/lcdproc-0.4.3/server/drivers/hd44780.c:193: error: (Each undeclared identifier is reported only once
/root/lcdproc-0.4.3/server/drivers/hd44780.c:193: error: for each function it appears in.)
/root/lcdproc-0.4.3/server/drivers/hd44780.c: In function `HD44780_heartbeat':
/root/lcdproc-0.4.3/server/drivers/hd44780.c:648: error: `HEARTBEAT_ON' undeclared (first use in this function)
/root/lcdproc-0.4.3/server/drivers/hd44780.c: In function `HD44780_getkey':
/root/lcdproc-0.4.3/server/drivers/hd44780.c:824: error: `RPT_INFO' undeclared (first use in this function)
/root/lcdproc-0.4.3/server/drivers/hd44780.c: In function `parse_span_list':
/root/lcdproc-0.4.3/server/drivers/hd44780.c:943: error: `RPT_ERR' undeclared (first use in this function)
</font><!--color-->
<font color="000000">
jetzt gehe ich mal davon aus das ich generell etwas falsch mache aber was???
zum thema link vielen dank den kannte ich bereits habe alle links dieser welt <img src="http://www.pl-forum.de/UltraBoard/Images/Happy.gif" border="0" align="middle"> ausprobiert nirgens fand ich antwort da mein problem wie ich vermute in meinen sys configs liegen muß
meine idee war nun das ich die hd44780.o selbst erstelle und sie in das modul verzeichnis kopiere von wo ich sie dann mittels insmod laden kann - ist das möglich?
das problem entsteht nämlich wenn ich lcdproc kompiliere
</font><!--color-->
<font color="0000FF">
./configure --with-drivers=HD44780
creating cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking host system type... i686-pc-linux-gnu
checking whether to enable debugging... no
checking for gcc... gcc
checking whether the C compiler (gcc -Wall -O3 ) works... yes
checking whether the C compiler (gcc -Wall -O3 ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a BSD compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking for gethostbyname... yes
checking for connect... yes
checking for inet_aton... yes
checking for kstat_open in -lkstat... no
checking for nanosleep in -lposix4... no
checking for getloadavg... yes
checking for swapctl... no
checking for procfs.h... no
checking for sys/procfs.h... yes
checking for sys/loadavg.h... no
checking for utmpx.h... yes
checking for kvm_open in -lkvm... no
checking for kvm_open in -lkvm with -lelf... no
checking for sched.h... yes
checking for sys/sched.h... no
checking for machine/cpufunc.h... no
checking for sys/types.h... yes
checking for machine/pio.h... no
checking for machine/sysarch.h... no
checking for sys/cpuvar.h... no
checking for System V IPC headers... yes
checking for union semun... no
checking for i386_get_ioperm in -li386... no
checking for i386_get_ioperm in -lc... no
checking for ioperm... yes
checking for sys/io.h... yes
checking for a parallel port... yes
checking for dirent.h that defines DIR... yes
checking for opendir in -ldir... no
checking for ANSI C header files... yes
checking for fcntl.h... yes
checking for sys/ioctl.h... yes
checking for sys/time.h... yes
checking for unistd.h... yes
checking for errno.h... yes
checking for limits.h... yes
checking for kvm.h... no
checking for sys/param.h... yes
checking for sys/sysctl.h... yes
checking for sys/dkstat.h... no
checking for working const... yes
checking for inline... inline
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for uid_t in sys/types.h... yes
checking whether gcc needs -traditional... no
checking return type of signal handlers... void
checking for select... yes
checking for socket... yes
checking for strdup... yes
checking for strerror... yes
checking for strtol... yes
checking for uname... yes
checking for cfmakeraw... yes
checking for your mounted filesystem table... /etc/mtab
checking for fcntl.h... (cached) yes
checking for sys/dustat.h... no
checking for sys/param.h... (cached) yes
checking for sys/statfs.h... yes
checking for sys/fstyp.h... no
checking for mnttab.h... no
checking for mntent.h... yes
checking for utime.h... yes
checking for sys/statvfs.h... yes
checking for sys/vfs.h... yes
checking for sys/mount.h... yes
checking for sys/filsys.h... no
checking for sys/fs_types.h... no
checking for getmntinfo... no
checking how to get filesystem space usage
checking for statvfs... yes
checking for which drivers to compile
checking for ncurses.h... yes
checking for curses.h... yes
checking for main in -lncurses... yes
checking for ncurses.h... (cached) yes
checking for acs_map in curses.h... yes
checking for redrawwin() in curses... yes
checking for wcolor_set() in curses... yes
Will compile drivers: lcdm001,mtxorb,cfontz,curses,text,lb216,bayrad,glk
updating cache ./config.cache
creating ./config.status
creating Makefile
creating shared/Makefile
creating server/Makefile
creating server/drivers/Makefile
creating clients/Makefile
creating clients/lcdproc/Makefile
creating clients/examples/Makefile
creating clients/headlines/Makefile
creating clients/metar/Makefile
creating docs/Makefile
creating docs/lcdproc-user/Makefile
creating docs/lcdproc-user/drivers/Makefile
creating scripts/Makefile
creating scripts/init-LCDd.debian
creating scripts/init-LCDd.rpm
creating scripts/init-lcdproc.debian
creating scripts/init-lcdproc.rpm
creating LCDproc.list
creating config.h</font><!--color-->

<font color="000000">
was ja noch alles ok aussieht
dann führe ich aclocal aus
und anschliesend make
</font><!--color-->


<font color="0000FF">
cd . && automake --foreign --include-deps Makefile
cd . \
&& CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
cd . && autoconf
/bin/sh ./config.status --recheck
running /bin/sh ./configure --with-drivers=HD44780 --no-create --no-recursion
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
/root/lcdproc-0.4.3/missing: Unknown `--run' option
Try `/root/lcdproc-0.4.3/missing --help' for more information
configure: WARNING: `missing' script is too old or missing
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking whether to enable debugging... no
checking for gcc... gcc
checking for C compiler default output... 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 ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking for gethostbyname... yes
checking for connect... yes
checking for inet_aton... yes
checking for kstat_open in -lkstat... no
checking for nanosleep in -lposix4... no
checking for getloadavg... yes
checking for swapctl... no
checking for egrep... grep -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 procfs.h usability... no
checking procfs.h presence... no
checking for procfs.h... no
checking sys/procfs.h usability... yes
checking sys/procfs.h presence... yes
checking for sys/procfs.h... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking utmpx.h usability... yes
checking utmpx.h presence... yes
checking for utmpx.h... yes
checking for kvm_open in -lkvm... no
checking for kvm_open in -lkvm with -lelf... no
checking sched.h usability... yes
checking sched.h presence... yes
checking for sched.h... yes
checking sys/sched.h usability... no
checking sys/sched.h presence... no
checking for sys/sched.h... no
checking machine/cpufunc.h usability... no
checking machine/cpufunc.h presence... no
checking for machine/cpufunc.h... no
checking for sys/types.h... (cached) yes
checking machine/pio.h usability... no
checking machine/pio.h presence... no
checking for machine/pio.h... no
checking machine/sysarch.h usability... no
checking machine/sysarch.h presence... no
checking for machine/sysarch.h... no
checking sys/cpuvar.h usability... no
checking sys/cpuvar.h presence... no
checking for sys/cpuvar.h... no
checking for System V IPC headers... yes
checking for union semun... no
checking for i386_get_ioperm in -li386... no
checking for i386_get_ioperm in -lc... no
checking for ioperm... yes
checking sys/io.h usability... yes
checking sys/io.h presence... yes
checking for sys/io.h... yes
checking for a parallel port... yes
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 sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking kvm.h usability... no
checking kvm.h presence... no
checking for kvm.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/sysctl.h usability... yes
checking sys/sysctl.h presence... yes
checking for sys/sysctl.h... yes
checking sys/dkstat.h usability... no
checking sys/dkstat.h presence... no
checking for sys/dkstat.h... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for uid_t in sys/types.h... yes
checking whether gcc needs -traditional... no
checking return type of signal handlers... void
checking for select... yes
checking for socket... yes
checking for strdup... yes
checking for strerror... yes
checking for strtol... yes
checking for uname... yes
checking for cfmakeraw... yes
checking for your mounted filesystem table... /etc/mtab
checking for fcntl.h... (cached) yes
checking sys/dustat.h usability... no
checking sys/dustat.h presence... no
checking for sys/dustat.h... no
checking for sys/param.h... (cached) yes
checking sys/statfs.h usability... yes
checking sys/statfs.h presence... yes
checking for sys/statfs.h... yes
checking sys/fstyp.h usability... no
checking sys/fstyp.h presence... no
checking for sys/fstyp.h... no
checking mnttab.h usability... no
checking mnttab.h presence... no
checking for mnttab.h... no
checking mntent.h usability... yes
checking mntent.h presence... yes
checking for mntent.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking sys/vfs.h usability... yes
checking sys/vfs.h presence... yes
checking for sys/vfs.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/filsys.h usability... no
checking sys/filsys.h presence... no
checking for sys/filsys.h... no
checking sys/fs_types.h usability... no
checking sys/fs_types.h presence... no
checking for sys/fs_types.h... no
checking for getmntinfo... no
configure: checking how to get filesystem space usage...
checking for statvfs... yes
configure: checking for which drivers to compile...
checking ncurses.h usability... yes
checking ncurses.h presence... yes
checking for ncurses.h... yes
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking for main in -lncurses... yes
checking for ncurses.h... (cached) yes
checking for acs_map in curses.h... yes
checking for redrawwin() in curses... yes
checking for wcolor_set() in curses... yes
Will compile drivers: lcdm001,mtxorb,cfontz,curses,text,lb216,bayrad,glk
configure: creating ./config.status
cd . && /bin/sh ./config.status Makefile
config.status: creating Makefile
cd . && autoheader
<font color="FF0000">
WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
WARNING: and `config.h.top', to define templates for `config.h.in'
WARNING: is deprecated and discouraged.

WARNING: Using the third argument of `AC_DEFINE' and
WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without
WARNING: `acconfig.h':

WARNING: AC_DEFINE([NEED_MAIN], 1,
WARNING: [Define if a function `main' is needed.])

WARNING: More sophisticated templates can also be produced, see the
WARNING: documentation.
</font><!--color-->
<font color="0000FF">
touch ./config.h.in
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
make all-recursive
make<font size="1">: Entering directory `/root/lcdproc-0.4.3'
Making all in shared
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/shared'
cd .. && automake --gnu --include-deps shared/Makefile
cd .. \
&& CONFIG_FILES=shared/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating shared/Makefile
config.status: executing depfiles commands
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/shared'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/shared'
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O3 -MT LL.o -MD -MP -MF ".deps/LL.Tpo" \
-c -o LL.o `test -f 'LL.c' || echo './'`LL.c; \
then mv -f ".deps/LL.Tpo" ".deps/LL.Po"; \
else rm -f ".deps/LL.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O3 -MT sockets.o -MD -MP -MF ".deps/sockets.Tpo" \
-c -o sockets.o `test -f 'sockets.c' || echo './'`sockets.c; \
then mv -f ".deps/sockets.Tpo" ".deps/sockets.Po"; \
else rm -f ".deps/sockets.Tpo"; exit 1; \
fi
sockets.c: In function `sock_recv_string':
sockets.c:157: warning: comparison between signed and unsigned
sockets.c:169: warning: comparison between signed and unsigned
sockets.c: In function `sock_send':
sockets.c:185: warning: comparison between signed and unsigned
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O3 -MT str.o -MD -MP -MF ".deps/str.Tpo" \
-c -o str.o `test -f 'str.c' || echo './'`str.c; \
then mv -f ".deps/str.Tpo" ".deps/str.Po"; \
else rm -f ".deps/str.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O3 -MT report.o -MD -MP -MF ".deps/report.Tpo" \
-c -o report.o `test -f 'report.c' || echo './'`report.c; \
then mv -f ".deps/report.Tpo" ".deps/report.Po"; \
else rm -f ".deps/report.Tpo"; exit 1; \
fi
rm -f libLCDstuff.a
ar cru libLCDstuff.a LL.o sockets.o str.o report.o
ranlib libLCDstuff.a
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/shared'
Making all in clients
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients'
cd .. \
&& CONFIG_FILES=clients/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating clients/Makefile
config.status: executing depfiles commands
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients'
Making all in examples
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/examples'
cd ../.. && automake --gnu --include-deps clients/examples/Makefile
cd ../.. \
&& CONFIG_FILES=clients/examples/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating clients/examples/Makefile
config.status: executing depfiles commands
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/examples'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/examples'
make<font size="3">: Nothing to be done for `all'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/examples'
Making all in headlines
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/headlines'
cd ../.. \
&& CONFIG_FILES=clients/headlines/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating clients/headlines/Makefile
config.status: executing depfiles commands
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/headlines'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/headlines'
make<font size="3">: Nothing to be done for `all'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/headlines'
Making all in lcdproc
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/lcdproc'
cd ../.. \
&& CONFIG_FILES=clients/lcdproc/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating clients/lcdproc/Makefile
config.status: executing depfiles commands
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/lcdproc'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/lcdproc'
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c main.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c mode.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c batt.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c chrono.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c cpu.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c cpu_smp.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c disk.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c load.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -Wall -O3 -c mem.c
gcc -Wall -O3 -o lcdproc main.o mode.o batt.o chrono.o cpu.o cpu_smp.o disk.o load.o mem.o ../../shared/libLCDstuff.a
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/lcdproc'
Making all in metar
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/metar'
cd ../.. \
&& CONFIG_FILES=clients/metar/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating clients/metar/Makefile
config.status: executing depfiles commands
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/metar'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/metar'
make<font size="3">: Nothing to be done for `all'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/metar'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients'
make<font size="3">: Nothing to be done for `all-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients'
Making all in server
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/server'
cd .. && automake --gnu --include-deps server/Makefile
cd .. \
&& CONFIG_FILES=server/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating server/Makefile
config.status: executing depfiles commands
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/server'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/server'
Making all in drivers
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/server/drivers'
cd ../.. && automake --gnu --include-deps server/drivers/Makefile
cd ../.. \
&& CONFIG_FILES=server/drivers/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating server/drivers/Makefile
config.status: executing depfiles commands
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/server/drivers'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/server/drivers'
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT lcd.o -MD -MP -MF ".deps/lcd.Tpo" \
-c -o lcd.o `test -f 'lcd.c' || echo './'`lcd.c; \
then mv -f ".deps/lcd.Tpo" ".deps/lcd.Po"; \
else rm -f ".deps/lcd.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT lcd_lib.o -MD -MP -MF ".deps/lcd_lib.Tpo" \
-c -o lcd_lib.o `test -f 'lcd_lib.c' || echo './'`lcd_lib.c; \
then mv -f ".deps/lcd_lib.Tpo" ".deps/lcd_lib.Po"; \
else rm -f ".deps/lcd_lib.Tpo"; exit 1; \
fi
lcd_lib.c: In function `insert_str_framebuf':
lcd_lib.c:80: warning: comparison between signed and unsigned
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT lcdm001.o -MD -MP -MF ".deps/lcdm001.Tpo" \
-c -o lcdm001.o `test -f 'lcdm001.c' || echo './'`lcdm001.c; \
then mv -f ".deps/lcdm001.Tpo" ".deps/lcdm001.Po"; \
else rm -f ".deps/lcdm001.Tpo"; exit 1; \
fi
lcdm001.c: In function `lcdm001_string':
lcdm001.c:425: warning: comparison between signed and unsigned
lcdm001.c:425: warning: signed and unsigned type in conditional expression
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT MtxOrb.o -MD -MP -MF ".deps/MtxOrb.Tpo" \
-c -o MtxOrb.o `test -f 'MtxOrb.c' || echo './'`MtxOrb.c; \
then mv -f ".deps/MtxOrb.Tpo" ".deps/MtxOrb.Po"; \
else rm -f ".deps/MtxOrb.Tpo"; exit 1; \
fi
MtxOrb.c: In function `MtxOrb_string':
MtxOrb.c:488: warning: comparison between signed and unsigned
MtxOrb.c:488: warning: signed and unsigned type in conditional expression
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT CFontz.o -MD -MP -MF ".deps/CFontz.Tpo" \
-c -o CFontz.o `test -f 'CFontz.c' || echo './'`CFontz.c; \
then mv -f ".deps/CFontz.Tpo" ".deps/CFontz.Po"; \
else rm -f ".deps/CFontz.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT curses_drv.o -MD -MP -MF ".deps/curses_drv.Tpo" \
-c -o curses_drv.o `test -f 'curses_drv.c' || echo './'`curses_drv.c; \
then mv -f ".deps/curses_drv.Tpo" ".deps/curses_drv.Po"; \
else rm -f ".deps/curses_drv.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT text.o -MD -MP -MF ".deps/text.Tpo" \
-c -o text.o `test -f 'text.c' || echo './'`text.c; \
then mv -f ".deps/text.Tpo" ".deps/text.Po"; \
else rm -f ".deps/text.Tpo"; exit 1; \
fi
text.c:247: warning: `text_contrast' defined but not used
text.c:253: warning: `text_backlight' defined but not used
text.c:293: warning: `text_flush_box' defined but not used
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT lb216.o -MD -MP -MF ".deps/lb216.Tpo" \
-c -o lb216.o `test -f 'lb216.c' || echo './'`lb216.c; \
then mv -f ".deps/lb216.Tpo" ".deps/lb216.Po"; \
else rm -f ".deps/lb216.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT bayrad.o -MD -MP -MF ".deps/bayrad.Tpo" \
-c -o bayrad.o `test -f 'bayrad.c' || echo './'`bayrad.c; \
then mv -f ".deps/bayrad.Tpo" ".deps/bayrad.Po"; \
else rm -f ".deps/bayrad.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT glk.o -MD -MP -MF ".deps/glk.Tpo" \
-c -o glk.o `test -f 'glk.c' || echo './'`glk.c; \
then mv -f ".deps/glk.Tpo" ".deps/glk.Po"; \
else rm -f ".deps/glk.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I../.. -Wall -O3 -MT glkproto.o -MD -MP -MF ".deps/glkproto.Tpo" \
-c -o glkproto.o `test -f 'glkproto.c' || echo './'`glkproto.c; \
then mv -f ".deps/glkproto.Tpo" ".deps/glkproto.Po"; \
else rm -f ".deps/glkproto.Tpo"; exit 1; \
fi
rm -f libLCDdrivers.a
ar cru libLCDdrivers.a lcd.o lcd_lib.o lcdm001.o MtxOrb.o CFontz.o curses_drv.o text.o lb216.o bayrad.o glk.o glkproto.o
ranlib libLCDdrivers.a
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/server/drivers'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/server'
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT client_data.o -MD -MP -MF ".deps/client_data.Tpo" \
-c -o client_data.o `test -f 'client_data.c' || echo './'`client_data.c; \
then mv -f ".deps/client_data.Tpo" ".deps/client_data.Po"; \
else rm -f ".deps/client_data.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT client_functions.o -MD -MP -MF ".deps/client_functions.Tpo" \
-c -o client_functions.o `test -f 'client_functions.c' || echo './'`client_functions.c; \
then mv -f ".deps/client_functions.Tpo" ".deps/client_functions.Po"; \
else rm -f ".deps/client_functions.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT clients.o -MD -MP -MF ".deps/clients.Tpo" \
-c -o clients.o `test -f 'clients.c' || echo './'`clients.c; \
then mv -f ".deps/clients.Tpo" ".deps/clients.Po"; \
else rm -f ".deps/clients.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT input.o -MD -MP -MF ".deps/input.Tpo" \
-c -o input.o `test -f 'input.c' || echo './'`input.c; \
then mv -f ".deps/input.Tpo" ".deps/input.Po"; \
else rm -f ".deps/input.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT main.o -MD -MP -MF ".deps/main.Tpo" \
-c -o main.o `test -f 'main.c' || echo './'`main.c; \
then mv -f ".deps/main.Tpo" ".deps/main.Po"; \
else rm -f ".deps/main.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT menu.o -MD -MP -MF ".deps/menu.Tpo" \
-c -o menu.o `test -f 'menu.c' || echo './'`menu.c; \
then mv -f ".deps/menu.Tpo" ".deps/menu.Po"; \
else rm -f ".deps/menu.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT menus.o -MD -MP -MF ".deps/menus.Tpo" \
-c -o menus.o `test -f 'menus.c' || echo './'`menus.c; \
then mv -f ".deps/menus.Tpo" ".deps/menus.Po"; \
else rm -f ".deps/menus.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT parse.o -MD -MP -MF ".deps/parse.Tpo" \
-c -o parse.o `test -f 'parse.c' || echo './'`parse.c; \
then mv -f ".deps/parse.Tpo" ".deps/parse.Po"; \
else rm -f ".deps/parse.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT render.o -MD -MP -MF ".deps/render.Tpo" \
-c -o render.o `test -f 'render.c' || echo './'`render.c; \
then mv -f ".deps/render.Tpo" ".deps/render.Po"; \
else rm -f ".deps/render.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT screen.o -MD -MP -MF ".deps/screen.Tpo" \
-c -o screen.o `test -f 'screen.c' || echo './'`screen.c; \
then mv -f ".deps/screen.Tpo" ".deps/screen.Po"; \
else rm -f ".deps/screen.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT screenlist.o -MD -MP -MF ".deps/screenlist.Tpo" \
-c -o screenlist.o `test -f 'screenlist.c' || echo './'`screenlist.c; \
then mv -f ".deps/screenlist.Tpo" ".deps/screenlist.Po"; \
else rm -f ".deps/screenlist.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT serverscreens.o -MD -MP -MF ".deps/serverscreens.Tpo" \
-c -o serverscreens.o `test -f 'serverscreens.c' || echo './'`serverscreens.c; \
then mv -f ".deps/serverscreens.Tpo" ".deps/serverscreens.Po"; \
else rm -f ".deps/serverscreens.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT sock.o -MD -MP -MF ".deps/sock.Tpo" \
-c -o sock.o `test -f 'sock.c' || echo './'`sock.c; \
then mv -f ".deps/sock.Tpo" ".deps/sock.Po"; \
else rm -f ".deps/sock.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT widget.o -MD -MP -MF ".deps/widget.Tpo" \
-c -o widget.o `test -f 'widget.c' || echo './'`widget.c; \
then mv -f ".deps/widget.Tpo" ".deps/widget.Po"; \
else rm -f ".deps/widget.Tpo"; exit 1; \
fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT configfile.o -MD -MP -MF ".deps/configfile.Tpo" \
-c -o configfile.o `test -f 'configfile.c' || echo './'`configfile.c; \
then mv -f ".deps/configfile.Tpo" ".deps/configfile.Po"; \
else rm -f ".deps/configfile.Tpo"; exit 1; \
fi
configfile.c: In function `config_get_int':
configfile.c:167: warning: comparison between signed and unsigned
configfile.c: In function `config_get_float':
configfile.c:189: warning: comparison between signed and unsigned
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -O3 -MT drivers.o -MD -MP -MF ".deps/drivers.Tpo" \
-c -o drivers.o `test -f 'drivers.c' || echo './'`drivers.c; \
then mv -f ".deps/drivers.Tpo" ".deps/drivers.Po"; \
else rm -f ".deps/drivers.Tpo"; exit 1; \
fi
gcc -Wall -O3 -o LCDd client_data.o client_functions.o clients.o input.o main.o menu.o menus.o parse.o render.o screen.o screenlist.o serverscreens.o sock.o widget.o configfile.o drivers.o drivers/libLCDdrivers.a ../shared/libLCDstuff.a -lncurses
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/server'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/server'
Making all in docs
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/docs'
cd .. \
&& CONFIG_FILES=docs/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating docs/Makefile
config.status: executing depfiles commands
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/docs'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/docs'
Making all in lcdproc-user
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
cd ../.. \
&& CONFIG_FILES=docs/lcdproc-user/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating docs/lcdproc-user/Makefile
config.status: executing depfiles commands
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
Making all in drivers
make<font size="4">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
cd ../../.. \
&& CONFIG_FILES=docs/lcdproc-user/drivers/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating docs/lcdproc-user/drivers/Makefile
config.status: executing depfiles commands
make<font size="4">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="4">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="4">: Nothing to be done for `all'.
make<font size="4">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="4">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="4">: Nothing to be done for `all-am'.
make<font size="4">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/docs'
make<font size="3">: Nothing to be done for `all-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/docs'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/docs'
Making all in scripts
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/scripts'
cd .. \
&& CONFIG_FILES=scripts/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating scripts/Makefile
config.status: executing depfiles commands
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/scripts'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/scripts'
make<font size="2">: Nothing to be done for `all'.
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/scripts'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3'
make<font size="2">: Nothing to be done for `all-am'.
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3'
</font><!--color-->


<font color="000000">
ich dachte das meine probleme mit den warning zu tun hat aber die sagen mir nichts
</font><!--color-->


Making install in shared
<font color="0000FF">
make<font size="1">: Entering directory `/root/lcdproc-0.4.3/shared'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/shared'
make<font size="2">: Nothing to be done for `install-exec-am'.
make<font size="2">: Nothing to be done for `install-data-am'.
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/shared'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3/shared'
Making install in clients
make<font size="1">: Entering directory `/root/lcdproc-0.4.3/clients'
Making install in examples
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients/examples'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/examples'
/bin/sh ../../mkinstalldirs /usr/local/bin
/usr/bin/install -c fortune.pl /usr/local/bin/fortune.pl
/usr/bin/install -c iosock.pl /usr/local/bin/iosock.pl
/usr/bin/install -c tail.pl /usr/local/bin/tail.pl
/usr/bin/install -c x11amp.pl /usr/local/bin/x11amp.pl
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/examples'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients/examples'
Making install in headlines
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients/headlines'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/headlines'
/bin/sh ../../mkinstalldirs /usr/local/bin
/usr/bin/install -c lcdheadlines /usr/local/bin/lcdheadlines
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/headlines'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients/headlines'
Making install in lcdproc
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients/lcdproc'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/lcdproc'
/bin/sh ../../mkinstalldirs /usr/local/bin
/usr/bin/install -c lcdproc /usr/local/bin/lcdproc
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/lcdproc'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients/lcdproc'
Making install in metar
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients/metar'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients/metar'
/bin/sh ../../mkinstalldirs /usr/local/bin
/usr/bin/install -c lcdmetar.pl /usr/local/bin/lcdmetar.pl
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients/metar'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients/metar'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/clients'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/clients'
make<font size="3">: Nothing to be done for `install-exec-am'.
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/clients'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/clients'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3/clients'
Making install in server
make<font size="1">: Entering directory `/root/lcdproc-0.4.3/server'
Making install in drivers
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/server/drivers'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/server/drivers'
make<font size="3">: Nothing to be done for `install-exec-am'.
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/server/drivers'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/server/drivers'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/server'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/server'
/bin/sh ../mkinstalldirs /usr/local/sbin
/usr/bin/install -c LCDd /usr/local/sbin/LCDd
make<font size="3">: Nothing to be done for `install-data-am'.
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/server'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/server'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3/server'
Making install in docs
make<font size="1">: Entering directory `/root/lcdproc-0.4.3/docs'
Making install in lcdproc-user
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
Making install in drivers
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="4">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="4">: Nothing to be done for `install-exec-am'.
make<font size="4">: Nothing to be done for `install-data-am'.
make<font size="4">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user/drivers'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="4">: Entering directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="4">: Nothing to be done for `install-exec-am'.
make<font size="4">: Nothing to be done for `install-data-am'.
make<font size="4">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/docs/lcdproc-user'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/docs'
make<font size="3">: Entering directory `/root/lcdproc-0.4.3/docs'
make<font size="3">: Nothing to be done for `install-exec-am'.
make install-man1 install-man8
make<font size="4">: Entering directory `/root/lcdproc-0.4.3/docs'
/bin/sh ../mkinstalldirs /usr/local/man/man1
/usr/bin/install -c -m 644 ./lcdproc.1 /usr/local/man/man1/lcdproc.1
/bin/sh ../mkinstalldirs /usr/local/man/man8
/usr/bin/install -c -m 644 ./LCDd.8 /usr/local/man/man8/LCDd.8
make<font size="4">: Leaving directory `/root/lcdproc-0.4.3/docs'
make<font size="3">: Leaving directory `/root/lcdproc-0.4.3/docs'
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/docs'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3/docs'
Making install in scripts
make<font size="1">: Entering directory `/root/lcdproc-0.4.3/scripts'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3/scripts'
make<font size="2">: Nothing to be done for `install-exec-am'.
make<font size="2">: Nothing to be done for `install-data-am'.
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3/scripts'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3/scripts'
make<font size="1">: Entering directory `/root/lcdproc-0.4.3'
make<font size="2">: Entering directory `/root/lcdproc-0.4.3'
make<font size="2">: Nothing to be done for `install-exec-am'.
make<font size="2">: Nothing to be done for `install-data-am'.
make<font size="2">: Leaving directory `/root/lcdproc-0.4.3'
make<font size="1">: Leaving directory `/root/lcdproc-0.4.3'
</font><!--color-->
<font color="000000">
nun sollten doch eigendlich laut anleitung von lcdproc auch die treiber sorry module installiert sein aber da is nix
ich habe suse8.2 kernel 2.4.20-4GB
mein display funktioniert hatte es unter windoof in 2 min am laufen mein port funkt auch mein drucker hat angesprochen
und nu?????
PS: Sorry das es so ausführlich ist
</font><!--color-->
Last edited by confu on 27. Jun 2003 9:24, edited 3 times in total.

Post Reply