Re: Latest MonoDevelop Progress

2016-06-28 Thread Ivan Radovanovic

On 06/27/2016 18:10, Russell Haley napisa:

 ...
patches, instead of doing it through svn patches. It will make
everything WAY easier to push back upstream. Not that it matters, eh,
Ivan? :0)



I already see who is to be in charge of pushing everything upstream :-P
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Maintaining mono/.net

2016-06-28 Thread Ivan Radovanovic

On 06/27/2016 20:21, Kurt Jaeger napisa:

Hi!


A couple of us on the freebsd-mono@ mailing list are having a
discussion on how best to maintain the mono ports/.net ports. One of
the things that has come up is maintaining the patches for "all this
stuff". The current paradigm in FreeBSD as I understand it is to use
the files directory and apply the patches to the port via svn/ports
tree. However, with the ubiquity of GitHub in opensource, it now seems
to be feesable to simply create a Github accound to maintain a bunch
of forked repositories (which is essentially a patched git
repository!).


 From my point of view, while not perfect, it sounds reasonable.



We are open for all (good) ideas (good in sense: easier to use, 
requiring less effort to maintain patches) :-)

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


[bug] Driver for the Lucent LT Winmodem chipset (comms/ltmdm)

2006-08-26 Thread Ivan Radovanovic
I have recently found bug in ltmdm driver. Driver crashes whole system 
every time when phone call is received while driver is in memory. 
Problem is in ltmdmsio.c file, trying to read NULL pointer. I fixed this 
problem, in attachment are two diff files:

- patch-sys-dev-ltmdm-ltmdmsio.c - patch file from directory files in
ltmdm port directory. I have changed this file to include check not to
read memory from NULL pointer
- ltmdmsio.c.diff - diff after applying change between original
ltmdmsio.c file, and ltmdmsio.c file I have changed

Best regards,
Ivan

P.S.
I am using FreeBSD 6.1, problem also existed in FreeBSD 5.x



2089c2089
< if (com->tp != 0 && com->tp->t_hotchar != 0 && recv_data == com->tp->t_hotchar)
---
> if (com->tp->t_hotchar != 0 && recv_data == com->tp->t_hotchar)



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: [bug] Driver for the Lucent LT Winmodem chipset (comms/ltmdm)

2006-08-27 Thread Ivan Radovanovic

I did. Thanks for advice

Regards,
Ivan

Peter Jeremy napisa:


On Sat, 2006-Aug-26 20:23:13 +0200, Ivan Radovanovic wrote:
 

I have recently found bug in ltmdm driver. Driver crashes whole system 
every time when phone call is received while driver is in memory. 
   



Can you please submit this using send-pr so the bug and fix aren't lost.

 




___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"