Re: Cygwin build scripts in perl

2010-02-25 Thread Ilguiz Latypov
> It isn't clear from your email what you are attempting to accomplish but > it sounds like you are trying to build cygwin using a non-cygwin-aware > version of perl. If that is the case, then this is not of interest to > the project or this mailing list. The build breaks were exposed by using

Cygwin build scripts in perl

2010-02-23 Thread Ilguiz Latypov
(a) I found that winsup/cygwin/mkimport specified non-existent file names as arguments to objcopy invocations. I am not sure why this did not cause build breaks earlier. (b) It appears perl 5.6 and, possibly, perl 5.10 do not implement the "list form of pipe" in calls to "open()", open $my

[bug #28983] forcing a target matching a pattern rule shadows the rule's actions

2010-02-22 Thread Ilguiz Latypov
Follow-up Comment #2, bug #28983 (project make): Correction: the semicolon at the end of the work-around lines should be removed because it assigned an empty set of actions to the artificial target. GNU make will complain if another rule assigns any actions to the same target, .PHONY: foo.o ;

[bug #28983] forcing a target matching a pattern rule shadows the rule's actions

2010-02-22 Thread Ilguiz Latypov
Follow-up Comment #1, bug #28983 (project make): The work-around, as I see it in one build system, is to add an extra dummy target, = ALWAYS-BUILD: ; file.o: ALWAYS-BUILD = Same with the explicit noisy target, ===

[bug #28983] forcing a target matching a pattern rule shadows the rule's actions

2010-02-22 Thread Ilguiz Latypov
Additional Item Attachment, bug #28983 (project make): File name: force-build-of-a-target-matching-a-pattern-rule.mak Size:0 KB ___ Reply to this item at: _

[bug #28983] forcing a target matching a pattern rule shadows the rule's actions

2010-02-22 Thread Ilguiz Latypov
URL: Summary: forcing a target matching a pattern rule shadows the rule's actions Project: make Submitted by: ilgiz Submitted on: Mon 22 Feb 2010 03:35:05 PM EST Severity: 3 - Normal

Re: CreateProcess() - executed program gets different argument depending if it's compiled with gcc (cygwin) or cl (VS)?

2010-02-18 Thread Ilguiz Latypov
> Thanks to your createprocess.c/dumpargs.c pair, I could figure the existing > Cygwin's parsing without looking into its source code. It turned to ignore > the > escaping power of a bare (unquoted) backslash when it was followed by a > double > quote, which is against both MSVC and Bash

Re: CreateProcess() - executed program gets different argument depending if it's compiled with gcc (cygwin) or cl (VS)?

2010-02-18 Thread Ilguiz Latypov
> As you can see dumpargs_gcc receives "\127.0.0.127\foo.cxx" and dumpargs_cl > receives "\\127.0.0.127\foo.cxx". Interesting. I am confused, too. (1) Native-only parameter passing: execv(PROG, ARGV) -> MSVCRT -> line = M(ARGV) -> CreateProcess( PROG, line, .. ) -> MSVC

a bug in a week old mmap

2010-02-17 Thread Ilguiz Latypov
$ gdb --args perl -i -pe 's/\r//g' f.txt GNU gdb 6.8.0.20080328-cvs (cygwin-special) Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRAN

a bug in cygpath

2010-02-12 Thread Ilguiz Latypov
This caused Cygwin to run dumper.exe which pointed to a bug in cygpath.cc. $ cygpath -p -w '' I am attaching a patch that seems to have fixed the issue. -- Index: cygpath.cc ===

execute a file in backslash notation from shell

2010-02-12 Thread Ilguiz Latypov
It never occurred to me that shells are unable to execute their first word in the Windows native backslash format, $ 'c:\cygwin\bin\echo.exe' test bash: c:\cygwin\bin\echo.exe: command not found $ ls -la 'c:\cygwin\bin\echo.exe' -rwxr-xr-x 1 ilatypov Domain Users 48128 2008-12-17 1

Re: document side effects of incomplete implementations in regtool and cyglsa-config, suggest a manual restore procedure

2010-01-27 Thread Ilguiz Latypov
> * Safe boot locks up after loading the last driver service such as ksecdd, > wudfpf, ntfs, ndis, sisagp, viaagp, alim1541, agpamd, agp440, agpcpq. + mup.sys -- Index: ntsec.sgml === RCS file: /cvs/src/src/winsup/doc/ntsec.sg

Re: document side effects of incomplete implementations in regtool and cyglsa-config, suggest a manual restore procedure

2010-01-27 Thread Ilguiz Latypov
> I spent many hours trying to find the cause of these effects. Forgot to mention another side effect: * Safe boot locks up after loading the last driver service such as ksecdd, wudfpf, ntfs, ndis, sisagp, viaagp, alim1541, agpamd, agp440, agpcpq.Index: ntsec.sgml ===

document side effects of incomplete implementations in regtool and cyglsa-config, suggest a manual restore procedure

2010-01-27 Thread Ilguiz Latypov
The current cyglsa-config script does not detect a failure in regtool that cannot read the LSA Authentication Packages registry entry, $ regtool get /HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control/Lsa/Authentication\ Packages Error (2): The system cannot find the file specified. $

[bug #22923] option to prevent "interspersed" output in parallel builds

2010-01-18 Thread Ilguiz Latypov
Follow-up Comment #9, bug #22923 (project make): I agree with comment #2 that polling pipes would incur unnecessary overhead and that the generic solution would pair each spawned action against the pre-defined template of a "logger" command. Looking at the recipient of messages in the existing i

[bug #22923] option to prevent "interspersed" output in parallel builds

2010-01-14 Thread Ilguiz Latypov
Follow-up Comment #5, bug #22923 (project make): Another idea mentioned in a Python bug discussion on file handles contention is to have each spawned make process redirect stdout and stderr of its spawned actions to a socket opened by the main make process. (Perhaps, each make process could do t

[bug #27983] Windows text mode mis-interpreted

2009-11-16 Thread Ilguiz Latypov
Follow-up Comment #1, bug #27983 (project findutils): Correction of my phrase on the extra file entity, One has to explicitly set it with the "r" vs. "rb" (O_BINARY) open mode. There is no explicit text mode setting. The "r" mode is the default and will be interpreted by the emulation layer

set binary mode on stdin and stdout for Cygwin

2009-11-13 Thread Ilguiz Latypov
Hello, I found that Cygwin distributes a modified version of gzip that fixes a binary mode issue reproduced with the attached script. http://mirrors.kernel.org/sourceware/cygwin/release/gzip/ I could not find a version-controlled repository with this patch. The one at Sourceforge does not

[bug #27983] Windows text mode mis-interpreted

2009-11-10 Thread Ilguiz Latypov
Additional Item Attachment, bug #27983 (project findutils): File name: text-mode.sh Size:2 KB ___ Reply to this item at: ___ Message

[bug #27983] Windows text mode mis-interpreted

2009-11-09 Thread Ilguiz Latypov
Additional Item Attachment, bug #27983 (project findutils): File name: text-mode.sh Size:2 KB ___ Reply to this item at: ___ Message

[bug #27983] Windows text mode mis-interpreted

2009-11-09 Thread Ilguiz Latypov
URL: Summary: Windows text mode mis-interpreted Project: findutils Submitted by: ilgiz Submitted on: Mon 09 Nov 2009 11:04:14 PM EST Category: xargs Severity: 3 - Norm

Bug#508299: see also

2009-05-31 Thread Ilguiz Latypov
See also bug 511633. -- I. ___ pkg-java-maintainers mailing list pkg-java-maintainers@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

Bug#508299: see also

2009-05-30 Thread Ilguiz Latypov
See also bug 511633. -- I. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

[jira] Commented: (NUTCH-733) plain text view of cached files ignores HTML encoding

2009-05-04 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12705819#action_12705819 ] Ilguiz Latypov commented on NUTCH-733: -- My patch does not wrap long lines. >

[jira] Updated: (NUTCH-733) plain text view of cached files ignores HTML encoding

2009-04-30 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-733?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-733: - Attachment: text.jsp-plain-text.diff.txt Set the Content-Type: "text/plain; charset=UTF-8&qu

[jira] Created: (NUTCH-733) plain text view of cached files ignores HTML encoding

2009-04-30 Thread Ilguiz Latypov (JIRA)
gui Affects Versions: 1.0.0 Reporter: Ilguiz Latypov The plain text view of cached HitDetails is sent as raw text under the Content-Type: text/html header. Either the content type should be changed to text/plain (patch attached) or the text should be HTML-encoded (perhaps

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: protocol-smb.zip > protocol-smb: plugin protocol implementing the CIFS/SMB proto

[jira] Issue Comment Edited: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB prot

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12645933#action_12645933 ] ilatypov edited comment on NUTCH-427 at 11/7/08 8:50 PM: --- Fixe

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: protocol-smb-diff.txt > protocol-smb: plugin protocol implementing the CIFS/

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: (was: protocol-smb.zip) > protocol-smb: plugin protocol implementing the CIFS/

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: (was: protocol-smb-diff.txt) > protocol-smb: plugin protocol implementing

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: protocol-smb.zip > protocol-smb: plugin protocol implementing the CIFS/SMB proto

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: protocol-smb-diff.txt > protocol-smb: plugin protocol implementing the CIFS/

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: (was: protocol-smb.zip) > protocol-smb: plugin protocol implementing the CIFS/

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: (was: protocol-smb-diff.txt) > protocol-smb: plugin protocol implementing

[jira] Issue Comment Edited: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB prot

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12645933#action_12645933 ] ilatypov edited comment on NUTCH-427 at 11/7/08 5:47 PM: --- Fixe

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: protocol-smb-diff.txt > protocol-smb: plugin protocol implementing the CIFS/

[jira] Updated: (NUTCH-427) protocol-smb: plugin protocol implementing the CIFS/SMB protocol. This protocol allows Nutch to crawl Microsoft Windows Shares remotely using the CIFS/SMB protocol implment

2008-11-07 Thread Ilguiz Latypov (JIRA)
[ https://issues.apache.org/jira/browse/NUTCH-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ilguiz Latypov updated NUTCH-427: - Attachment: protocol-smb.zip Fixed reading of SMB files, updated to jcifs 1.3.0, enhanced the

[webpy] Re: about debugerror and template

2007-10-20 Thread Ilguiz Latypov
ptions in templates do result in an HTML output of the back-trace. The exception's message shown above the back-trace contains a line number in the template, if my memory serves me. -- Ilguiz Latypov. Home telephone: +1 (519) 569-7193. Cell telephone: +1 (519) 998-2865. 31 Oprington D

Bug#396194: my mistake

2007-04-16 Thread Ilguiz Latypov
On Mon, Apr 16, 2007 at 01:51:05AM -0400, Ilguiz Latypov wrote: > My report on wodim failure could be a result of my own liberal > application of hdparm. I am mistaken again, so my former report on the failure in wodim remains in force. I found that wodim still produced blank DVDs even a

Bug#396194: my mistake

2007-04-15 Thread Ilguiz Latypov
My report on wodim failure could be a result of my own liberal application of hdparm. Few days later I removed /etc/hdparm.conf, rebooted the machine and found wodim working just fine. The hdparm options that failed my system are included below. My DVD writer is /dev/hdb. Regards, -- Ilguiz

Bug#396194: and the other burning tool worked

2007-04-07 Thread Ilguiz Latypov
The other DVD-burn command produced a working disk with the same ISO image. $ genisoimage -dvd-video -o /dev/dvdrw bv.iso -- Ilguiz -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#396194: wodim: another failure with Hyundai DVD+R

2007-04-07 Thread Ilguiz Latypov
Package: wodim Version: 9:1.1.4-1 Followup-For: Bug #396194 I have a similar problem here. I created the ISO image with vobcopy 0.5.14 dvdauthor 0.6.14 genisoimage 1.1.4 $ mkdir vobs $ vobcopy -o vobs $ mkdir dvd $ dvdauthor -o dvd -t vobs/*.vob $ dvdauthor -o dvd -T $ genisoimage -dvd-video

Bug#418108: python-central: a guess on fixing the bug

2007-04-06 Thread Ilguiz Latypov
Package: python-central Version: 0.5.13 Followup-For: Bug #418108 I am guessing that the fix to the problem can be as simple as adding a line "global config" under "global _defaults" in the failed script: --- /usr/share/pycentral-data/pyversions.py.orig2007-04-06 23:23:10.0 -04

Bug#418108: python-central: a guess on fixing the bug

2007-04-06 Thread Ilguiz Latypov
Package: python-central Version: 0.5.13 Followup-For: Bug #418108 I am guessing that the fix to the problem can be as simple as adding a line "global config" under "global _defaults" in the failed script: --- /usr/share/pycentral-data/pyversions.py.orig2007-04-06 23:23:10.0 -04

Bug#415968: another work-around

2007-03-29 Thread Ilguiz Latypov
Here is another work-around to setting stdout's encoding. > import sys, codecs, locale > > if sys.stdout.encoding is None: > (lang, enc) = locale.getdefaultlocale() > if enc is not None: > (e, d, sr, sw) = codecs.lookup(enc) > # sw will encode Unicode data to the locale-s

end key in less

2006-09-27 Thread Ilguiz Latypov
Hello, Since the Cygwin's less package still ships a version dependent on termcap, here is an addition to rxvt termcap entry so that pressing the End key moves the window to the end of file. Regards, -- Ilguiz --- /etc/termcap.orig 2006-09-26 18:44:21.304921500 -0400 +++ /etc/termcap

Bug#376055: x11-common: dexconf ignores mouse port and protocol selections

2006-06-29 Thread Ilguiz Latypov
Package: x11-common Version: 1:7.0.22 Severity: important Tags: patch Trying to figure why my choice of ImPS/2 isn't stored in xorg.conf, I found that dexconf ignored it. Here is the patch. === --- dexconf.orig2006-06-11 23

Bug#376055: x11-common: dexconf ignores mouse port and protocol selections

2006-06-29 Thread Ilguiz Latypov
Package: x11-common Version: 1:7.0.22 Severity: important Tags: patch Trying to figure why my choice of ImPS/2 isn't stored in xorg.conf, I found that dexconf ignored it. Here is the patch. === --- dexconf.orig2006-06-11 23

Bug#345374: [Yaird-devel] Bug#345374: yaird: via82cxxx

2006-06-29 Thread Ilguiz Latypov
Jonas, On Thu, Jun 29, 2006 at 12:19:45PM +0200, Jonas Smedegaard wrote: > Which kernel package do you use? Is it an official Debian-packaged one? 2.6.17. I am running Debian unstable. The package was retrieved through the regular Debian mechanism (apt-get from debian.yorku.ca). > And what ke

Bug#345374: yaird: via82cxxx

2006-06-29 Thread Ilguiz Latypov
Package: yaird Version: 0.0.12-14 Followup-For: Bug #345374 Same problem here with via82cxxx not being included into /init. As a work-around, I modified /etc/yaird/Default.cfg to include the chipset-specific IDE driver unconditionally in the prologue:

Bug#226180: x11-common: readline prompts are enabled by a separate package

2006-06-28 Thread Ilguiz Latypov
Package: x11-common Version: 1:7.0.22 Followup-For: Bug #226180 It occured to me that the readline mode of Debian configurator, DEBCONF_FRONTEND=readline dpkg-reconfigure will show default prompts when libterm-readline-gnu-perl is installed. This was suggested by debconf(7) from debconf-doc.

Bug#226180: x11-common: readline prompts are enabled by a separate package

2006-06-28 Thread Ilguiz Latypov
Package: x11-common Version: 1:7.0.22 Followup-For: Bug #226180 It occured to me that the readline mode of Debian configurator, DEBCONF_FRONTEND=readline dpkg-reconfigure will show default prompts when libterm-readline-gnu-perl is installed. This was suggested by debconf(7) from debconf-doc.

Bug#342160: initscripts: checkroot.sh ignores fsck result

2005-12-05 Thread Ilguiz Latypov
Package: initscripts Version: 2.86.ds1-6 Severity: normal Tags: patch The /etc/init.d/checkroot.sh script ignored the fsck's "PLEASE REBOOT LINUX NOW" exit code because the code is stored too late. As a result, the fixes fsck made to my filesystem could be corrupted again because the system didn

a bug in the compiler's backend?

2005-08-03 Thread Ilguiz Latypov
Hello, The compiler locks up when it is given a sequence of arrays. See the test IDL file below. I updated to the latest glib, libIDL, ORBit2, orbitcpp from CVS, but the bug occured again. Is this a known issue? Thanks, -- Ilguiz Latypov programmer at DiskStream Waterloo, Ontario

Re: [PATCH] New ORB_init option "ORBNetID="

2005-07-27 Thread Ilguiz Latypov
ible to avoid these inconsistencies by providing only the host's name to the clients. One could leave the investigation of non-loopback interfaces to the configuration mode of numeric addressing. -- Ilguiz Latypov programmer at DiskStream Waterloo, Ontario, Canada ___ orbit-list mailing list orbit-list@gnome.org http://mail.gnome.org/mailman/listinfo/orbit-list

Re: Orbit2 , server code in C and client code in Java (1.5)

2005-07-12 Thread Ilguiz Latypov
What does ior-decode-2 from ORBit2 tell about the stringified IOR? The first character in every line of the output was cut. On Tue, Jul 12, 2005 at 02:59:31PM +0530, Rahul Agrawal wrote: > ul 12, 2005 2:29:37 PM com.sun.corba.se.impl.ior.IORImpl getProfile > ARNING: *"IOP00511201: (INV_OBJREF) I

linking a proprietary application against ORBit2

2005-06-30 Thread Ilguiz Latypov
). There are both COPYING (GPL) and COPYING.LIB (LGPL) files in the top-level ORBit2 CVS directory. The linc2 subdirectory contains the file COPYING with LGPL in it. I assume this means that linc2 is under LGPL. The terms of linking against libORBit-2.so are unclear. -- Ilguiz Latypov programmer

Bug#277298: a fix to hwclock*.sh init scripts

2005-06-17 Thread Ilguiz Latypov
$HWCLOCKPARS. Without the above fix, the hwclock* scripts will assume that the system time was updated from the hardware clock and that the hardware clock is UTC-based. Then the scripts will apply a timezone shift. This will make the current system time shifted incorrectly. -- Ilguiz Latypov programmer

Re: Finding an initial name-servive using multicasting

2005-03-31 Thread Ilguiz Latypov
cols. In my case it was too complex as I needed only to resolve a certain service name into its host name and port number. I guess mdns gives more options and extensions based on the DNS protocol. -- Ilguiz Latypov programmer at DiskStream Waterloo, Ontario, Canada ___

Re: Finding an initial name-servive using multicasting

2005-03-29 Thread Ilguiz Latypov
object() mechanism, thanks to the short corbaloc URL made possible by the Alejandro's patch. > Another question is how this is supposed to function. Should every user > always get their own name service (name space)? Should there be a system > one also? Is the separation only o

Bug#264603: postgresql-dev: I concur.

2005-03-15 Thread Ilguiz Latypov
Package: postgresql-dev Version: 7.4.7-3 Followup-For: Bug #264603 It would be nice to get the recent 8.0 stable branch of the PostgresQL client library (currently provided by the postgresql-dev package) because the upstream fixed a bug in the error reporting code: http://developer.postgresql.or

Bug#277640: libnss-ldap links against a non-reentrant version of the OpenLDAP library

2005-02-22 Thread Ilguiz Latypov
Package: libnss-ldap Version: 220-1 Followup-For: Bug #277640 The stall happens because libnss-ldap is linked against the non-reentrant version of the OpenLDAP library. This causes an application's call to gethostbyname() to lock up because another call to gethostbyname() occurs within the non-r

Bug#286715: gcj: segfaults instead of reporting the ambiguous expression

2004-12-21 Thread Ilguiz Latypov
Package: gcj-3.4 Version: 3.4.3-4 Severity: normal File: gcj The gcj compiler segfaults when encountering an ambiguous piece of code. The lack of parentheses around the expression test ? "not" : "some" creates the ambiguity: boolean test = ((args == null) || (args.length == 0)); S

Re: Disabling apache user authentication for a subdirectory?

2004-07-22 Thread Ilguiz Latypov
tc/apache/passwd-viewcvs AuthName "Version control repository" AuthType Basic Require valid-user Satisfy any Regards, -- Ilguiz Latypov ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

Re: [uClinux-dev] Problem execute CGI with boa on uClinux (fwd)

2002-08-28 Thread Ilguiz Latypov
are not working or are assumed to not work on the target \ platform. #endif]) AC_OUTPUT -- Forwarded message -- Date: Thu, 11 Jul 2002 10:49:18 -0400 (EDT) From: Ilguiz Latypov <[EMAIL PROTECTED]&

Re: freeradius installation considerations

2002-08-15 Thread Ilguiz Latypov
On Thu, 15 Aug 2002, Marcel wrote: > The only way I am thinking is that they have to start > a browser and just serve to > http://www.whatever.they.want.com and a basic homepage > shows up to authenticate themafter they are > authenticated they will be forwarded to the homepage > the entered

Re: Using Mgetty And freeRadius

2002-08-04 Thread Ilguiz Latypov
Bikrant, On Sun, 4 Aug 2002, Bikrant Neupane wrote: > Now, I want to authenticate dialin users against the > freeradius while still using mgetty to receive the > incoming calls. I think the mgetty program only handles indications of incoming calls by accessing serial port. Once the CONNECT or

Re: Trouble with 20020715 snapshot

2002-07-16 Thread Ilguiz Latypov
Alan, On Tue, 16 Jul 2002, Alan DeKok wrote: > My thoughts are that the patches are a nice idea, but there's no way > I'm going to re-write the autoconf stuff just before 0.6.1 is > released. My patch is only a suggestion, and thanks for even paying any attention to it. > Also, I'm *neve

Re: Trouble with 20020715 snapshot

2002-07-16 Thread Ilguiz Latypov
On Tue, 16 Jul 2002, Ilguiz Latypov wrote: > The bootstrap script allows to remove automatically generated files from > the CVS repository. I forgot to attach the new files: acinclude.m4 which is former aclocal.m4 without libtool.m4 and AC_CHECK_TYPE_INCLUDE and the bootstrap

Re: Trouble with 20020715 snapshot

2002-07-16 Thread Ilguiz Latypov
I do have libltdl installed on my system as part of RedHat's libtool RPM package. However, the configure script fails to find the header file which exists: === $ ./configure --without-snmp \ --with-system-libtoo

Re: promiscuous authentication

2002-07-16 Thread Ilguiz Latypov
On Tue, 16 Jul 2002, Alan DeKok wrote: > In addition, why would you want to expose a key piece of software to > any random packet from the internet? Is it *really* that hard to type > in the 10-100 client IP addresses? I was testing the perl Authen::Radius module with its "make test" command

Re: promiscuous authentication

2002-07-15 Thread Ilguiz Latypov
I agree that promiscuous authentication is not how FreeRadius was supposed to work. Sorry for not reading the documentation first. I thought that communication between Radius clients and servers is secure by design. Is this not always true? Ilguiz On Mon, 15 Jul 2002, Alan DeKok wrote: >

promiscuous authentication

2002-07-15 Thread Ilguiz Latypov
= superbt.ca } As you see, the significant part of netmask is reduced to 0 leftmost bits. Is this a safe approach? The patch is enclosed. -- Ilguiz Latypov computer programmer SuperBT Canada, Inc 153 Union St. E. Waterloo, Ontario N2J 1C4 Canada GMT-4 day time tel. +1 (519) 569

Re: RedHat 7.3 + Netboot kernel load failure...

2002-06-13 Thread Ilguiz Latypov
On Thu, 13 Jun 2002, Chris Wilkinson wrote: > kernel /netboot-kernel-2.4.9-31.gz rw root=/dev/nfs Does network boot expect a kernel in gzip-ped format? After looking at arch/i386/boot/compressed/Makefile I found that regular vmlinux and bzImage kernel formats have extra headers in

Re: grub cd

2002-06-11 Thread Ilguiz Latypov
I never tried using GRUB on a CD-ROM, but here is the boot sector writing procedure. It was adapted from http://tldp.org/HOWTO/CD-Writing-HOWTO-4.html#ss4.11 The boot.img file must be a 1.44M floppy image to boot. I heard a size 2.88M is OK as well. The boot.img file should be located

Re: GRUB and that "other" OS...

2002-04-18 Thread Ilguiz Latypov
Hans, On Thu, 18 Apr 2002, Hans Quennet wrote: >grub> rootnoverify (hd0,0) >grub> makeactive >grub> chainloader +1 Nice try. > /sbin/grub-install /dev/hda1 RedHat add-on script to "simplify" bootloader installation? > one 40GB drive (5 8MB partitions) one cleared for the RedHat

RE: Serial console

2002-04-11 Thread Ilguiz Latypov
Svein, I had no problems with navigating through the "full screen" menu over the serial port. The border lines are replaced with 7-bit approximations to allow for different terminal emulators. The GRUB source code was checked out off the CVS repository at http://savannah.gnu.org/projec

Re: Problem with RedHAT 7.2 and Win2000 Server

2002-04-09 Thread Ilguiz Latypov
Roberto, Do you think the second disk needs this option in configuration file? rootnoverify (hd1,0) Ilguiz On Tue, 9 Apr 2002, Roberto C. Salazar M. wrote: > rootnoverify (hd0,0) ___ Bug-grub mailing list [EMAIL PROTECTED] http://mail.gnu.org/ma

Re: Removing grub *WITHOUT* using other OS'es. Was: ...RemovingGrub (Again)

2002-04-04 Thread Ilguiz Latypov
Kingsly, Is "c" specifier required in the block size parameter (bs=446c)? I think the default unit size is a block of 512 bytes. Ilguiz On Fri, 5 Apr 2002, Kingsly John wrote: > # dd if=/dev/zero of=/dev/hdX bs=446 count=1 ___ Bug-grub mailing l

Re: How do I try out, and then possibly install, new kernels?

2002-03-27 Thread Ilguiz Latypov
Steve, On Sat, 30 Mar 2002, steve wrote: > and I was wondering, are there different instructions I must follow if I > want to experiment with new kernels, or do I just use the Kernel How-To? Have you checked the GRUB home page at http://www.gnu.org/software/grub/ ? Ilguiz _

Re: ERROR21 >>>

2002-03-27 Thread Ilguiz Latypov
Araz, Error 21 means "no disk", as stage2/shared.h suggests. I was able to fine tune the GRUB installation by running the grub user space shell and executing the commands grub> root (hd0) grub> setup (hd0) The setup command is a wrapper that finally invokes "embed" and "install" commands

Re: DoC grub_firmware (newbie..)

2002-03-11 Thread Ilguiz Latypov
David, I was able to test the grub_firmware file produced by the patch on a 64M DoC 2000. Yes, I could get to the GRUB prompt and play with "root (dc0," command. GRUB can access the configuration file and the kernel image stored in ext2 partition. The partition was created on top of NFTL bloc

Re: PATCH (updated): 'lilo -R' functionality

2002-03-07 Thread Ilguiz Latypov
Nice feature, I haven't tried that with GRUB yet. By the way, since GRUB can parse the /boot/gru/menu.lst file at "run-time", why not just modify that configuration file and restore it from the startup script? Ilguiz On Thu, 7 Mar 2002, Keir Fraser wrote: > Really? I generally use 'lilo -R'

Re: DiskOnChip 2000 and Millenium support in GRUB bootloader

2002-02-28 Thread Ilguiz Latypov
Yoshinori, 1. I cleaned up the patch with regard to the debugging leftovers. Do you think I need to remove extra debug information activated by the DOC_DEBUG switch (dprintf calls)? What other adjustments are necessary? 2. Besides, I changed stage1/doc_stage1{,b}.S so that the GRUB firmware

Re: (no subject)

2002-02-25 Thread Ilguiz Latypov
Andreas, Check out http://www.gnu.org/manual/grub-0.90/html_node/grub_15.html Apparently, the Windows loader is located at the start of partition. Partition can begin only from cylinder boundary if my DOS time memories serve me. The slack space between MBR and the next cylinder gives room

Re: DiskOnChip 2000 and Millenium support in GRUB bootloader

2002-02-21 Thread Ilguiz Latypov
onfigure and stage{1,2}/Makefile.in Ilguiz On Tue, 19 Feb 2002, Ilguiz Latypov wrote: > I attached the patch that enables booting off DiskOnChip flash memory > devices. The patch is the adaptation of the GRUB compatible DiskOnChip > bootloader from the

<    1   2