Re: Recent interface/routing changes breaks on-demand PPP

2001-03-19 Thread Ruslan Ermilov
On Mon, Mar 19, 2001 at 06:34:34PM +0100, Alexander Leidinger wrote: On 19 Mar, Ruslan Ermilov wrote: 5. This affects not only ppp(8). Add default route that points to the LAN; change the IP address on interface; observe that the default route has gone away. The reason

Re: CURRENT breakage in usr.sbin/amd/mk-amd-map

2001-03-21 Thread Ruslan Ermilov
Makefiles except for the default in bsd.prog.mk. This bug also causes bogus setting and building of nfs headers in amd subdirs that don't have any C sources and/or don't need any nfs headers, e.g. in the scripts subdir. Fixed now, sorry. Cheers, -- Ruslan Ermilov Oracle Developer/DBA

Re: Recent interface/routing changes breaks on-demand PPP

2001-03-25 Thread Ruslan Ermilov
h src/usr.sbin/ppp/iface.c 1.17. You mean, ppp(8) does not do this now if negotiated address does not change? -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simfe

** HEADS UP **: bsd.man.mk changes

2001-03-26 Thread Ruslan Ermilov
for MAN[1-9] syntax. Developers, please make sure all new Makefiles use the new syntax. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http

Re: usr.bin/kdump - 'make world' broken?

2001-03-27 Thread Ruslan Ermilov
/kdump/mkioctls,v 1.20. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling

Re: make release broken in telnetd

2001-03-28 Thread Ruslan Ermilov
use the libtelnet it is trying to link to, does not have the crypto stuff. It happens during the "make world" part of the release, because /tmp/.world_done does not exist yet. A normal "make world", ie. outside of the "make release" environment works fine though

Re: make release broken in telnetd

2001-03-29 Thread Ruslan Ermilov
`MPPEInput': ppp.lo(.text+0x9f7): undefined reference to `RC4_set_key' ppp.lo(.text+0xa18): undefined reference to `RC4' ppp.lo(.text+0xa4e): undefined reference to `RC4' *** Error code 1 Stop in /usr/src/release/boot_crunch. *** Error code 1 ... ### -- Ruslan Ermilov Oracle

Re: Recent interface/routing changes breaks on-demand PPP (+sppp)

2001-03-30 Thread Ruslan Ermilov
On Fri, Mar 30, 2001 at 01:36:39PM +0200, Alexander Leidinger wrote: On 30 Mar, Ruslan Ermilov wrote: - if I put the interface down the first time after a login I have to readd the defaultroute (only once, after additional "ifconfig down/up" I didn't have to readd the de

Re: Recent interface/routing changes breaks on-demand PPP (+sppp)

2001-03-30 Thread Ruslan Ermilov
[Redirected to -net] On Fri, Mar 30, 2001 at 03:39:40PM +0200, Alexander Leidinger wrote: On 30 Mar, Ruslan Ermilov wrote: What to do in this situation? I didn't want add the defaultroute everytime (POLA). But if we don't do this, we may end up using the wrong source IP address

Re: *HEADS UP* libposix1e is integrated into libc

2001-04-05 Thread Ruslan Ermilov
. The changes are complete now, so any possible breakage should be over. I think you need to change MAN= to MAN+= in /posix1e/Makefile.inc. That just caused a make release to fail because it clobbered all the previous man entries and then ln couldn't link them. Committed! -- Ruslan Ermilov

** HEADS UP ** Groff 1.17 (including -mdocNG) imported

2001-04-17 Thread Ruslan Ermilov
mmand line : switches) : : `groff_mdoc.man' replaces `groff_mdoc.samples.man'; it now completely : documents the mdoc package. : : Great care has been taken to assure backwards compatibility. If you : encounter any abnormal results, please report them to [EMAIL PROTECTED] Cheers,

Re: ** HEADS UP ** Groff 1.17 (including -mdocNG) imported

2001-04-18 Thread Ruslan Ermilov
On Wed, Apr 18, 2001 at 07:33:21PM +0200, Thomas Quinot wrote: Le 2001-04-18, Ruslan Ermilov ecrivait : cd /usr/src/gnu/usr.bin/groff/tmac make cleandir obj make all install It works here, thanks! Make sure you delete empty files from /usr/share/man/[en.ISO_8859-1/]cat?/. I will try

Re: groff breaks make -j N buildworld

2001-04-19 Thread Ruslan Ermilov
${TMACMODE} \ ${DIST_DIR}/man.local ${DESTDIR}${TMACDIR} .endif To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software

make -jN bug (was: Re: groff breaks make -j N buildworld)

2001-04-19 Thread Ruslan Ermilov
m not sure if this a make(1) bug or a feature, as both NetBSD and OpenBSD behave the same. But I'm pretty sure this is a bug. Will? Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.6

Re: groff breaks make -j N buildworld

2001-04-19 Thread Ruslan Ermilov
k to `make all install'. If this works at all, then you can only use it without -j, since the `install' part of it doesn't work with -j. Separate steps are required to pass different flags to make(1). Is the atomic install the only known issue for not functional `make -jN install'? Cheers,

Re: make -jN bug (was: Re: groff breaks make -j N buildworld)

2001-04-19 Thread Ruslan Ermilov
On Thu, Apr 19, 2001 at 11:38:49PM +1000, Bruce Evans wrote: On Thu, 19 Apr 2001, Ruslan Ermilov wrote: Attached is the Makefile that demonstrates the problem. Run it like this: make obj; make all Then try: make install And then try: make -j2 install

Atomic install(1) by default (was: Re: groff breaks make -j N buildworld)

2001-04-19 Thread Ruslan Ermilov
On Thu, Apr 19, 2001 at 05:53:53PM +0300, Ruslan Ermilov wrote: On Thu, Apr 19, 2001 at 11:12:24PM +1000, Bruce Evans wrote: [...] IIRC, it is assumed that "make -jX install (where X 1)" _doesn't_ work. I've heard why, but I've forgotten :-) Right. One case where it do

Re: Atomic install(1) by default (was: Re: groff breaks make -j N buildworld)

2001-04-20 Thread Ruslan Ermilov
On Fri, Apr 20, 2001 at 06:39:30AM +1000, Bruce Evans wrote: On Thu, 19 Apr 2001, Ruslan Ermilov wrote: On Thu, Apr 19, 2001 at 05:53:53PM +0300, Ruslan Ermilov wrote: On Thu, Apr 19, 2001 at 11:12:24PM +1000, Bruce Evans wrote: atomic installation. Atomic installation (but not -C

Re: Atomic install(1) by default (was: Re: groff breaks make -j N buildworld)

2001-04-20 Thread Ruslan Ermilov
Hello Bruce! Forget all of this. I started incorporating OpenBSD fixes to install(1). They seem to cover all the cases you have mentioned. I will send a CFR when I finish. They used your revision 1.4 as the base, and implemented all of the todos, and even more. Thanks, -- Ruslan Ermilov

[CFR] OpenBSD install(1) fixes: atomic install, etc.

2001-04-20 Thread Ruslan Ermilov
-v and -D were withdrawn. o strip(1) failure is not considered fatal. Please review. Thanks, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http

Re: [CFR] OpenBSD install(1) fixes: atomic install, etc.

2001-04-20 Thread Ruslan Ermilov
On Fri, Apr 20, 2001 at 07:41:36PM +0300, Maxim Sobolev wrote: Konstantin Chuguev wrote: Hi, Ruslan Ermilov wrote: The attached patch incorporates most of OpenBSD fixes to install(1). It does not include manpage update. Most significant changes are: o New flag: -S (atomic

Re: [CFR] OpenBSD install(1) fixes: atomic install, etc.

2001-04-20 Thread Ruslan Ermilov
On Fri, Apr 20, 2001 at 08:03:20PM +0300, Ruslan Ermilov wrote: On Fri, Apr 20, 2001 at 07:41:36PM +0300, Maxim Sobolev wrote: Konstantin Chuguev wrote: Hi, Ruslan Ermilov wrote: The attached patch incorporates most of OpenBSD fixes to install(1). It does not include

Re: nroff -man broken?

2001-04-25 Thread Ruslan Ermilov
, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe

Re: telnet -a the default

2001-05-03 Thread Ruslan Ermilov
On Sat, Apr 28, 2001 at 01:15:06PM -0700, Nick Sayer wrote: Ruslan Ermilov wrote: On Sat, Apr 28, 2001 at 09:34:22AM -0700, Nick Sayer wrote: Ruslan Ermilov wrote: On Sat, Apr 28, 2001 at 08:45:48AM -0700, Nick Sayer wrote: Ruslan Ermilov wrote: Hi! Any

DEVFS

2001-05-10 Thread Ruslan Ermilov
) perl# mount /dev perl# mount -t devfs devfs on /dev (devfs, local) devfs on /dev (devfs, local) perl# mount /dev perl# mount -t devfs devfs on /dev (devfs, local) devfs on /dev (devfs, local) devfs on /dev (devfs, local) perl# Thanks, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL

Re: cvs commit: src Makefile.inc1

2001-05-15 Thread Ruslan Ermilov
On Mon, May 14, 2001 at 10:21:02AM -0700, Ruslan Ermilov wrote: ru 2001/05/14 10:21:02 PDT Modified files: .Makefile.inc1 Log: Add kbdcontrol(1) to bootstrap-tools. This fixes the upgrade path breakage in usr.sbin/sysinstall. Revision

Re: cvs commit: src Makefile.inc1

2001-05-15 Thread Ruslan Ermilov
to the kbdcontrol/Makefile, but this is a gross hack. On Tue, May 15, 2001 at 04:19:57PM +0300, Ruslan Ermilov wrote: On Mon, May 14, 2001 at 10:21:02AM -0700, Ruslan Ermilov wrote: ru 2001/05/14 10:21:02 PDT Modified files: .Makefile.inc1 Log: Add

Re: cvs commit: src Makefile.inc1

2001-05-15 Thread Ruslan Ermilov
. -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age

Re: cvs commit: src Makefile.inc1

2001-05-16 Thread Ruslan Ermilov
${.CURDIR} +CFLAGS+=-I${.CURDIR}/../../sys MAN= kbdcontrol.1 kbdmap.5 MLINKS= kbdmap.5 keymap.5 DPADD= ${LIBL} Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251

Re: Shouldn't wchar.h get copied somewhere during build?

2001-05-16 Thread Ruslan Ermilov
. -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age

Re: cvs commit: src Makefile.inc1

2001-05-16 Thread Ruslan Ermilov
On Thu, May 17, 2001 at 12:51:59AM +1000, Bruce Evans wrote: On Wed, 16 May 2001, Warner Losh wrote: In message [EMAIL PROTECTED] Ruslan Ermilov writes: : FWIW, my gross hack to usr.sbin/kbdcontrol also worked: I tend to dislike adding ../../sys to the includes list since they might

Re: cvs commit: src Makefile.inc1

2001-05-17 Thread Ruslan Ermilov
/sys (/usr/include/sys/dev doesn't even reflect the kernel tree). Might I guess it should probably be called /usr/include/sys/io[ctl], and digiio.h put there. -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD

Re: Where to put include files (was: cvs commit: src Makefile.inc1)

2001-05-17 Thread Ruslan Ermilov
their headers into include/fs and old ones in include/fs. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http

Re: Where to put include files (was: cvs commit: src Makefile.inc1)

2001-05-18 Thread Ruslan Ermilov
On Thu, May 17, 2001 at 07:52:51PM +0300, Ruslan Ermilov wrote: [...] There are 59 Makefiles that have -I${.CURDIR}/(../)+sys in them. All these are bogus. We should get rid of all of them (-I's). So far, I have found sbin/mount_* use headers from /sys/miscfs/ that are not installed

Re: Where to put include files (was: cvs commit: src Makefile.inc1)

2001-05-18 Thread Ruslan Ermilov
On Fri, May 18, 2001 at 05:11:11PM +0300, Ruslan Ermilov wrote: On Thu, May 17, 2001 at 07:52:51PM +0300, Ruslan Ermilov wrote: [...] There are 59 Makefiles that have -I${.CURDIR}/(../)+sys in them. All these are bogus. We should get rid of all of them (-I's). So far, I have found

Re: -STABLE kernel build broken?

2001-05-21 Thread Ruslan Ermilov
/netncp/ncp_rq.c,v 1.1 1999/10/02 04:06:17 bp Exp $ (The latter is up to 1.7 in -CURRENT.) 1.3 without M_WAIT - M_TRYWAIT should work. -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer

__FreeBSD_version and -CURRENT

2001-05-21 Thread Ruslan Ermilov
Hi! Is there any sense at all in bumping __FreeBSD_version in -CURRENT? (I would have liked to see FreeBSD 5.0-RELEASE go with 50.) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer

[CFR] /sys/miscfs/* - /sys/fs/

2001-05-21 Thread Ruslan Ermilov
need to (cd /sys; mv miscfs/* fs) before applying the patch. The patch is available from here: http://www.FreeBSD.org/~ru/miscfs2fs.patch Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer

** HEADS UP **: sys/miscfs file systems moved

2001-05-23 Thread Ruslan Ermilov
options: FDESC - FDESCFS, PORTAL - PORTALFS, UNION - UNIONFS. - Install header files for the above file systems. Warner, could you please add this to UPDATING? Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED

Re: ** HEADS UP **: sys/miscfs file systems moved

2001-05-23 Thread Ruslan Ermilov
that people should move /usr/include to (say) /usr/include.not before their next installworld and nuke /usr/include.not after it completes. Why? Only new headers get installed, no old headers were withdrawn. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED

sbin/vinum broken

2001-05-23 Thread Ruslan Ermilov
--- Makefile2001/05/23 05:24:53 1.20 +++ Makefile2001/05/23 13:55:24 @@ -5,6 +5,7 @@ MAN= vinum.8 CFLAGS+= -I${.CURDIR}/../../sys -Wall +CFLAGS+= -DVINUMDEBUG # Print __FILE__ and __LINE__ when doing perror() #CFLAGS+= -DDEVBUG Cheers, -- Ruslan Ermilov

Re: sbin/vinum broken

2001-05-23 Thread Ruslan Ermilov
On Wed, May 23, 2001 at 09:08:31AM -0700, David Wolfskill wrote: Date: Wed, 23 May 2001 16:56:39 +0300 From: Ruslan Ermilov [EMAIL PROTECTED] src/sbin/vinum is broken at the moment. It doesn't build without -DVINUMDEBUG. A quick workaround: [Workaround -- adding CFLAGS

Re: sbin/vinum broken

2001-05-24 Thread Ruslan Ermilov
On Thu, May 24, 2001 at 09:24:56AM +0930, Greg Lehey wrote: On Wednesday, 23 May 2001 at 16:56:39 +0300, Ruslan Ermilov wrote: Hi! src/sbin/vinum is broken at the moment. It doesn't build without -DVINUMDEBUG. *sigh*. I could have sworn I tested this, but it seems I did

Re: ** HEADS UP **: sys/miscfs file systems moved

2001-05-25 Thread Ruslan Ermilov
. Eh? that's a bug in the installation proceedure then. Don't I answered this question? Only new subdirs have appeared. -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251

Re: 'make includes' ownership patch

2001-05-28 Thread Ruslan Ermilov
introduced long after include/Makefile. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com

Re: 'make includes' ownership patch

2001-05-28 Thread Ruslan Ermilov
specification from BIN*? Because headers are installed with NOBINMODE, not BINMODE :-) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http

Re: set*uid broken?

2001-06-06 Thread Ruslan Ermilov
. -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age

** HEADS UP **: -nostdinc -Wfoo == -DNO_WERROR is temporarily the default for `buildworld'

2001-06-11 Thread Ruslan Ermilov
is hidden after the -nostdinc. PLEASE DON'T FIX THE HEADERS UNTIL WE FIGURE OUT WHY THIS IS HIDDEN AFTER -nostdinc. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251

Re: ** HEADS UP **: -nostdinc -Wfoo == -DNO_WERROR is temporarily the default for `buildworld'

2001-06-11 Thread Ruslan Ermilov
On Mon, Jun 11, 2001 at 09:26:28PM +0300, Ruslan Ermilov wrote: [...] While this is definitely a problem in fts.h, which is fixed with the attached patch, it is unclear why this warning is hidden after the -nostdinc. For those interested, here's the missing patch. -- Ruslan Ermilov

Patch to restore WARNS feature

2001-06-12 Thread Ruslan Ermilov
for the reason of missing library functions. Also, the -traditional-cpp bit in games/adventure/Makefile correlares badly with -nostdinc and WARNS=2. Please review (tested). Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED

fts_open() (was: Re: Patch to restore WARNS feature)

2001-06-13 Thread Ruslan Ermilov
= ap[1]; ap[0]-fts_link = NULL; This just hides the bug that fts's comparison function is not suitable for use by qsort(). Bruce On Tue, Jun 12, 2001 at 02:38:13PM -0400, Garrett Wollman wrote: On Tue, 12 Jun 2001 15:53:18 +0300, Ruslan Ermilov [EMAIL PROTECTED] said: + qsort

Re: fts_open() (was: Re: Patch to restore WARNS feature)

2001-06-13 Thread Ruslan Ermilov
this is more general than passing any kind of function pointer.) How should we call this function? (I'll implement this tomorrow.) -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251

ucred.cr_gid

2001-06-22 Thread Ruslan Ermilov
xucred.cr_gid New I'm not sure what to do with xucred. Also, I'm not sure about KINFO_PROC_SIZE on ia64 and PowerPC. Please review. See also ChangeLog. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED

[CFR] ucred.cr_gid

2001-06-26 Thread Ruslan Ermilov
Could someone please take a look at it before I commit this? - Forwarded message from Ruslan Ermilov [EMAIL PROTECTED] - Date: Fri, 22 Jun 2001 18:05:09 +0300 From: Ruslan Ermilov [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: ucred.cr_gid Message-ID: [EMAIL

Re: [CFR] ucred.cr_gid

2001-06-27 Thread Ruslan Ermilov
On Tue, Jun 26, 2001 at 11:18:56AM -0400, Robert Watson wrote: On Tue, 26 Jun 2001, Ruslan Ermilov wrote: Could someone please take a look at it before I commit this? I won't get a chance to properly review this until I'm at USENIX tomorrow. If you're willing to hold off for about

Re: [CFR] ucred.cr_gid

2001-06-27 Thread Ruslan Ermilov
On Wed, Jun 27, 2001 at 06:40:53PM +1000, Bruce Evans wrote: On Wed, 27 Jun 2001, Ruslan Ermilov wrote: On Tue, Jun 26, 2001 at 11:18:56AM -0400, Robert Watson wrote: ... off. I'm generally fairly positive about this change, but would be interested in hearing Bruce's thoughts

Re: libalias, natd and punch_fw

2001-06-27 Thread Ruslan Ermilov
Invalid Port Command. natd did not punch new firewall-rules. is libalias broken or just configured different in -current? Fixed in lib/libalias/alias_ftp.c,v 1.12, thanks for noticing! Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG

TIOCSCTTY

2001-07-02 Thread Ruslan Ermilov
Hi! Could someone please explain why the following code snippet does not work anymore with the /dev/console argument? # ./tiocsctty /dev/console tiocsctty: ioctl(/dev/console, TIOCSCTTY): Operation not permitted Thanks, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED

Re: did somebody notice a crash in ip_output if you're using multicast?

2001-07-19 Thread Ruslan Ermilov
-current in the body of the message -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling

Cross builds and upgrade path from 4.x are broken in usr.bin/file

2001-08-09 Thread Ruslan Ermilov
, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age Index

Re: Cross builds and upgrade path from 4.x are broken in usr.bin/file

2001-08-13 Thread Ruslan Ermilov
for creating tools that are to be used only during `buildworld', and are not used/installed otherwise. The file(1) is special in that it produces the MD format, hence it is not suitable for build-tools. (I did not know that.) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED

Re: Cross builds and upgrade path from 4.x are broken in usr.bin

2001-08-13 Thread Ruslan Ermilov
On Fri, Aug 10, 2001 at 11:54:27AM -0700, John Baldwin wrote: On 10-Aug-01 Ruslan Ermilov wrote: On Fri, Aug 10, 2001 at 10:04:01AM -0700, Mark Peek wrote: At 7:14 PM +0300 8/10/01, Ruslan Ermilov wrote: On Fri, Aug 10, 2001 at 08:38:21AM -0700, Mark Peek wrote: At 5:37 PM +0300 8

Re: Cross builds and upgrade path from 4.x are broken in usr.bin/file

2001-08-14 Thread Ruslan Ermilov
On Mon, Aug 13, 2001 at 01:30:15PM -0700, David O'Brien wrote: On Fri, Aug 10, 2001 at 08:23:00PM +0300, Ruslan Ermilov wrote: Your solution does not work. You're creating binary files in HOST format during the build phase and expecting things such as alignment and endianness

Re: Cross builds and upgrade path from 4.x are broken in usr.bin/file

2001-08-14 Thread Ruslan Ermilov
On Tue, Aug 14, 2001 at 08:55:56AM -0700, David O'Brien wrote: On Tue, Aug 14, 2001 at 09:54:04AM +0300, Ruslan Ermilov wrote: They produce the same output, but in the general case they do not need to. What I hear? Hell, then my solution (or something similar) should be committed

Re: Cross builds and upgrade path from 4.x are broken in usr.bin/file

2001-08-15 Thread Ruslan Ermilov
. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer, +380.652.512.251Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age

Re: 4-STABLE--5-CURRENT upgrade path is b0rken in libform [patch]

2001-08-17 Thread Ruslan Ermilov
-DNDEBUG -DHAVE_CONFIG_H ncurses_def.h: MKncurses_def.sh ncurses_defs AWK=${AWK} sh ${NCURSES}/include/MKncurses_def.sh \ Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay Software AG, [EMAIL PROTECTED] FreeBSD committer

Re: 4-STABLE--5-CURRENT upgrade path is b0rken in libform [patch]

2001-08-17 Thread Ruslan Ermilov
On Fri, Aug 17, 2001 at 02:00:43PM +0200, Alexander Langer wrote: Thus spake Ruslan Ermilov ([EMAIL PROTECTED]): Are you sure? Yes, I reported this on IRC already some weeks ago, but I was too lazy to fix it, so I just copied the include to /usr/include manually. ;-) I can easily

Re: Cross builds and upgrade path from 4.x are broken in usr.bin/file

2001-08-17 Thread Ruslan Ermilov
On Fri, Aug 17, 2001 at 08:49:10AM -0700, David O'Brien wrote: On Fri, Aug 10, 2001 at 05:37:51PM +0300, Ruslan Ermilov wrote: I can't believe I hear that from you, Bruce. :-) Generation at install time is a damn bad idea, please see below. [...] 1. This won't work for cross-platform

Re: /usr/games/wtf

2001-08-21 Thread Ruslan Ermilov
On Tue, Aug 21, 2001 at 01:03:11PM +0700, Max Khon wrote: hi, there! I would like to add /usr/games/wtf from NetBSD to base system. Any opinions/objections? FWIW, I don't like its name. :-) Cheers, -- Ruslan Ermilov Oracle Developer/DBA, [EMAIL PROTECTED] Sunbay

Re: weekly_catman not generating the right result?

2011-08-03 Thread Ruslan Ermilov
, -- Ruslan Ermilov r...@freebsd.org FreeBSD committer ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: awk(1) segfaults when building kernel modules

2011-08-10 Thread Ruslan Ermilov
; } setclvar(p);/* a commandline assignment before filename */ %%% imho r224731 should completely be reverted. aren't those exactly the kind of commits re@ shouldn't approve? -- Ruslan Ermilov r...@freebsd.org FreeBSD committer ___ freebsd

Re: awk(1) segfaults when building kernel modules

2011-08-11 Thread Ruslan Ermilov
[...] Should be fixed in r224776; please confirm. Cheers, -- Ruslan Ermilov r...@freebsd.org FreeBSD committer ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail

Re: Deterministic builds

2011-12-09 Thread Ruslan Ermilov
On Fri, Dec 09, 2011 at 12:16:39PM +0100, Erik Cederstrand wrote: I've been working on a project to make it possible to produce deterministic builds with FreeBSD. By this I mean building a FreeBSD distribution twice from the same code base and having all files in the two distributions match by

Re: Deterministic builds

2011-12-09 Thread Ruslan Ermilov
On Fri, Dec 09, 2011 at 03:25:40PM +0100, Erik Cederstrand wrote: Den 09/12/2011 kl. 14.37 skrev Ruslan Ermilov: On Fri, Dec 09, 2011 at 12:16:39PM +0100, Erik Cederstrand wrote: I've been working on a project to make it possible to produce deterministic builds with FreeBSD. By this I

Re: HEADSUP: /etc/malloc.conf format change

2012-04-25 Thread Ruslan Ermilov
backwards compatiblity for the documented API, or at the very least provide a mean to detect this otherwise disruptive and hard to detect change for a programmer. Cheers, -- Ruslan Ermilov r...@freebsd.org FreeBSD committer ___ freebsd-current@freebsd.org

Re: HEADSUP: /etc/malloc.conf format change

2012-04-26 Thread Ruslan Ermilov
On Wed, Apr 25, 2012 at 10:43:59AM -0700, Jason Evans wrote: On Apr 25, 2012, at 9:39 AM, Ruslan Ermilov wrote: So you removed _malloc_options that was part of the documented programming API, while some software made use of it. [...] Please explore the possibility to add backwards

Re: [RFC] Un-staticise the toolchain

2012-04-26 Thread Ruslan Ermilov
On Thu, Apr 26, 2012 at 12:35:48PM +0300, Konstantin Belousov wrote: I think it is time to stop building the toolchain static. I was told that original reasoning for static linking was the fear of loosing the ability to recompile if some problem appears with rtld and any required dynamic

Re: [RFC] Un-staticise the toolchain

2012-04-27 Thread Ruslan Ermilov
On Fri, Apr 27, 2012 at 11:58:59AM +0300, Konstantin Belousov wrote: On Thu, Apr 26, 2012 at 05:41:40PM +0400, Ruslan Ermilov wrote: On Thu, Apr 26, 2012 at 12:35:48PM +0300, Konstantin Belousov wrote: [...] Patch below makes the dynamically linked toolchain a default, adding

Re: [PATCH] Fix CFLAGS overwrite by Makefile

2011-05-25 Thread Ruslan Ermilov
AMD Features=0x28100800SYSCALL,NX,RDTSCP,LM AMD Features2=0x1LAHF TSC: P-state invariant I am still not sure what is the default gcc target architecture on this machine. Why not go along a supported way, and do a cross-build? -- Ruslan Ermilov r...@freebsd.org FreeBSD committer

[HEADS UP] color and page width support in man(1)

2011-06-03 Thread Ruslan Ermilov
Hi there, On a freshly installed -CURRENT, to view a colorized manpage in color and in full terminal width, try this: env MANCOLOR=yes MANWIDTH=tty man grotty Both features are disabled by default for POLA reasons. Bikeshedding will be redirected to /dev/null. Cheers, -- Ruslan

Re: WITHOUT_INSTALLLIB broken?

2011-06-16 Thread Ruslan Ermilov
-06-16-log2 show how to test this. At this time, there is no /etc/make.conf nor /etc/src.conf. Any idea what's wrong with libegacy.a here? This option wasn't designed for build, only for install. It's like WITHOUT_TOOLCHAIN, which is documented to not work for build targets. -- Ruslan Ermilov

Re: WITHOUT_INSTALLLIB broken?

2011-06-16 Thread Ruslan Ermilov
On Thu, Jun 16, 2011 at 05:09:05PM +0400, Eir Nym wrote: On 16 June 2011 16:55, Ruslan Ermilov r...@freebsd.org wrote: On Thu, Jun 16, 2011 at 01:50:17PM +0200, Milan Obuch wrote: Hi, I encountered an error when WITHOUT_INSTALLLIB option is specified for 'make buildworld' process. I

Re: Bad 'grep' behaviour in -CURRENT, faulty binary detection?

2000-01-04 Thread Ruslan Ermilov
l me an address of appropriate "announce" mailing list... Thanks, -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org

Re: 4.0 code freeze scheduled for Jan 15th

2000-01-06 Thread Ruslan Ermilov
On Thu, Jan 06, 2000 at 02:32:47AM -0800, Amancio Hasty wrote: Curious , what is elischer.org ? 8) According to www.elischer.org, this is the temporary home page for the Elischer family's internet enterprises and Family stuff. -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL

HEADS UP: GNU texinfo has been upgraded to 4.0

2000-01-17 Thread Ruslan Ermilov
option has been removed, since it is (and always was) the same as stock --entry option (i.e., it overrides any INFO-DIR-ENTRY from the INFO-FILE). Happy hacking, -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD

Re: buildworld failure in === makeinfo

2000-01-17 Thread Ruslan Ermilov
e or directory *** Error code 1 Stop in /usr/src/gnu/usr.bin/texinfo/makeinfo. *** Error code 1 Stop in /usr/src/gnu/usr.bin/texinfo. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Could you please try the following patch? -- Ruslan Ermilov

Re: Is texinfo needed for buildworld with -DNOINFO ?

2000-01-18 Thread Ruslan Ermilov
/cvsweb.cgi/src/Makefile.inc1?r1=1.129r2=1.130 Cheers, -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http

Re: Is texinfo needed for buildworld with -DNOINFO ?

2000-01-18 Thread Ruslan Ermilov
with the status quo -- always build and install the texinfo program, even if info files are not to be installed. The problem is that `{bootstrap,cross}-tools' are always built with -DNOINFO, and thus there is no way to determine wherher the user explicitly requested -DNOINFO or not. -- Ruslan Ermilov

Re: Is texinfo needed for buildworld with -DNOINFO ?

2000-01-18 Thread Ruslan Ermilov
On Tue, Jan 18, 2000 at 11:47:27PM +1100, Bruce Evans wrote: On Tue, 18 Jan 2000, Ruslan Ermilov wrote: On Tue, Jan 18, 2000 at 12:31:18PM +0200, Sheldon Hearn wrote: On Tue, 18 Jan 2000 19:14:19 +0900, Munehiro Matsuda wrote: It seems that texinfo is compiled as cross

Re: HEADS UP: grep 2.4a is now in the tree

2000-01-18 Thread Ruslan Ermilov
On Tue, Jan 18, 2000 at 11:00:43AM -0500, Ben Rosengart wrote: On Tue, 18 Jan 2000, Ruslan Ermilov wrote: --binary-files='text' treats binary files as text (equivalent to -a or --text). So "-a" now does the opposite of what it used to do? Not exactly. A stock gr

Re: HEADS UP: grep 2.4a is now in the tree

2000-01-19 Thread Ruslan Ermilov
On Wed, Jan 19, 2000 at 10:02:14AM +0600, Max Khon wrote: hi, there! On Tue, 18 Jan 2000, Ruslan Ermilov wrote: The equivalent to the old -a option is --binary-files=without-match. If you want this by default, you can hardcode it in GREP_OPTIONS environment variable. I think

Re: installworld fialed

2000-01-19 Thread Ruslan Ermilov
/Makefile). -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age

Re: Please help spread the CVSup mirror load more evenly

2000-01-22 Thread Ruslan Ermilov
A y.y.y.y ... A z.z.z.z -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org

Re: 4.0 CODE FREEZE vs PR patches

2000-01-25 Thread Ruslan Ermilov
to [EMAIL PROTECTED] -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Infor

Re: grep --binary-files=without-match (fwd)

2000-01-26 Thread Ruslan Ermilov
PROTECTED] with "unsubscribe freebsd-current" in the body of the message -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org

Re: src/include/Makefile,v 1.109 is broken

2000-01-27 Thread Ruslan Ermilov
On Thu, Jan 27, 2000 at 06:34:08PM +0200, Sheldon Hearn wrote: On Thu, 27 Jan 2000 17:00:58 +0200, Ruslan Ermilov wrote: An attached patch seems to fix the problem. Does anybody actually understand what's really going on in this file? Everyone uses the words "seems to" an

Re: conflicts keyword gone?

2000-01-31 Thread Ruslan Ermilov
+2 -2 src/sys/pc98/conf/GENERIC98 -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com

HEADS UP: GNU grep 2.4d

2000-01-31 Thread Ruslan Ermilov
, -- Ruslan Ermilov Sysadmin and DBA of the [EMAIL PROTECTED]United Commercial Bank, [EMAIL PROTECTED] FreeBSD committer, +380.652.247.647Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age

Re: HEADS UP: GNU grep 2.4d

2000-01-31 Thread Ruslan Ermilov
On Mon, Jan 31, 2000 at 01:02:29PM -0500, Will Andrews wrote: On Mon, Jan 31, 2000 at 03:54:00PM +0200, Ruslan Ermilov wrote: Under a big pressure from the FreeBSD community, GNU grep maintainers released grep-2.4d, which has a new option -I, a short equivalent to --binary-files='without

Re: HEADS UP: GNU grep 2.4d

2000-02-01 Thread Ruslan Ermilov
On Tue, Feb 01, 2000 at 08:24:41AM -0500, Will Andrews wrote: On Mon, Jan 31, 2000 at 08:28:30PM +0200, Ruslan Ermilov wrote: Yes, that's why all this fuss have taken place ;=) WOOHOO! I agree with Alex Langer, though. -R - -r gets on my nerves. But I suppose it is consistent with `rm

<    1   2   3   4   5   6   7   >