Re: Midnight Commander 4.6.1 has been released.

2005-07-25 Thread Pavel Tsekov
Hello, On Mon, 25 Jul 2005, christian laubscher wrote: On Sat, Jul 23, 2005 at 01:22:17PM -0400, Miguel de Icaza wrote: The changes since the last public release (4.6.0) are as follows: [...] an additional change seems to be that mcserv is not built the same way it used to be, up to

crypt/shadow vs pam

2005-07-25 Thread christian laubscher
what could i specify to let it be built like before? i manually edited the config.h file to enable crypt/shadow instead of pam; also, i changed the makefile variable MCSERVLIBS to state -lcrypt instead of -lpam -ldl. surely there must be a cleaner way to achieve this. ;-) --

Re: Midnight Commander 4.6.1 has been released.

2005-07-25 Thread christian laubscher
On Mon, Jul 25, 2005 at 10:58:35AM +0300, Pavel Tsekov wrote: Can you provide a log of the build and the output of configure. It would be best if you could put them somewhere for download instead of mailing them to the list. http://www.sisyphus.ch/mc/ tia, christian --

Re: mcserv and PAM was Re: Midnight Commander 4.6.1 has been released.

2005-07-25 Thread christian laubscher
hi pavel, The following line from acinclude.m4 should explain the situation better: [...] dnl MC_MCSERVER_CHECKS dnlCheck how mcserver should check passwords. dnlPossible methods are PAM, pwdauth and crypt. dnlThe later works with both /etc/shadow and /etc/passwd. dnlIf

chown while copying files to fvat / msdos fs

2005-07-25 Thread phaidros
hi, how to configure mc that it doesn't try to chown copied/moved files on vfat/msdos filesystems? is there an option to set for such things? regards, k. ___ Mc mailing list http://mail.gnome.org/mailman/listinfo/mc

Re: chown while copying files to fvat / msdos fs

2005-07-25 Thread Pavel Tsekov
Hello, How about reading the mailing list archive ? On Mon, 25 Jul 2005, kloschi wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi, how to configure mc that it doesn't try to chown copied/moved files on vfat/msdos filesystems? is there an option to set for such things? regards,

Re: [PATCH] Choose syntax with dynamic list allocation

2005-07-25 Thread Pavel Tsekov
Hello, I see you were too eager to get your stuff into CVS. Please, explain the use of `char ***pnames'. On Wed, 20 Jul 2005, Leonard den Ottolander wrote: Well, it turned out my pointer arithmetic wasn't that bad, but testing for (! count % NENTRIES) to reallocate the list is not entirely

Re: [PATCH] Choose syntax with dynamic list allocation

2005-07-25 Thread Leonard den Ottolander
Hi Pavel, On Mon, 2005-07-25 at 21:41, Pavel Tsekov wrote: On Mon, 25 Jul 2005, Leonard den Ottolander wrote: The char** (string list) that was names is dynamically allocated in edit_read_syntax_file(). Since I have to pass that char** by reference I end up using a char*** (pnames). Seems