Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Dec 1999 16:43:55 +0100
From:      "Lazaro D. Salem" <lazaro@online.no>
To:        <hm@hcs.de>, "ISDN Mailinglist" <freebsd-isdn@FreeBSD.ORG>
Cc:        <freebsd-isdn@FreeBSD.ORG>
Subject:   Problem w/i4b 0.90.00 (Fix and patch included)
Message-ID:  <000b01bf43ee$88dfa9a0$0701a8c0@it-step>

next in thread | raw e-mail | index | archive | help
HM writes:
> Please, please: read the i4b README and accompanying docs, almost
> everything is described there. In case you got stuck somewhere,
> scan the ISDN mailinglist archives on www.freebsd.org or write
> to the ISDN mailinglist, the people are quite helpful there!

oooops sorry.
Here is my problem report.
I upgraded from i4b-0.83.00 on a FreeBSD  3.3-RELEASE on i386,
fresh install. I Ran both overuninstall.sh and overinstall.sh
After untarring, succesfully building userland and configured the kernel,
It failed to make dependencies exiting with something like:
---
mkdep -a -f
newdep -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit  -Wnested-ext
erns -Wstrict-prototypes -Wmissing-prototypes  -Wpointer-arith -Winline -Wun
initialized -Wformat -Wunused  -fformat-extensions -ansi  -nostdinc -I- -I. 
-I../.. -I/usr/include  -DKERNEL -DVM_STACK -include opt_global.h -elf
device_if.c bus_if.c ../../cam/cam.c ../../cam/cam_xpt.c
../../cam/cam_extend.c ../../cam/cam_queue.c ../../cam/cam_periph.c
../../cam/cam_sim.c ../../cam/scsi/scsi_all.c ../../cam/scsi/scsi_da.c
../../cam/scsi/scsi_sa.c
[ ... ]
../../i4b/driver/i4b_rbch.c:76: machine/i4b_rbch_ioctl.h: No such filke or
directory
mkdep: compile failed


*** Error code 1

Stop.
---

It seems that overinstall.sh forgets to create the link to
/usr/local/src/i4b/machine directory
it was (absent in the 3.3-REL distributed version of i4b < 0.83 at least).
I made the link and tried again, with same result. reading carefully I came
out witth
this patch to be applied in the ../i4b/machine dir.
Thanks for i4b (even I still have problmes to make it run... more later)!
Lazaro

--- i4b_rbch.c Sat Dec 11 13:53:57 1999
+++ i4b_rbch.c-ORIGINAL Sat Dec 11 13:53:18 1999
@@ -72,9 +72,9 @@
 #endif

 #ifdef __FreeBSD__
-#include <i4b/machine/i4b_ioctl.h>
-#include <i4b/machine/i4b_rbch_ioctl.h>
-#include <i4b/machine/i4b_debug.h>
+#include <machine/i4b_ioctl.h>
+#include <machine/i4b_rbch_ioctl.h>
+#include <machine/i4b_debug.h>
 #else
 #include <i4b/i4b_ioctl.h>
 #include <i4b/i4b_rbch_ioctl.h>







To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-isdn" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?000b01bf43ee$88dfa9a0$0701a8c0>