Re: Installing shell scripts

2005-04-20 Thread Stepan Kasal
Hello, On Tue, Apr 19, 2005 at 06:35:15PM +0200, Jul wrote: > different subdirectories, and I would like the 'make install' process > just copy them into the 'bin' directory without any modification (only > chmod). this should work: dist_bin_SCRIPTS = magic-script As this was an automake ques

Re: Installing shell scripts

2005-04-20 Thread Jul
Thanks for answer. This seems not working either as the configure process looks for a 'magic-script' rule and fails. I'll see that on automake list. Have a nice day too. ++ Jul. Hello, On Tue, Apr 19, 2005 at 06:35:15PM +0200, Jul wrote: different subdirectories, and I would like the 'make ins

Re: Installing shell scripts

2005-04-20 Thread Jul
Sorry! It works! I didn't configure correctly my SUBDIRS variables! Thanks a lot. ++ Jul. Thanks for answer. This seems not working either as the configure process looks for a 'magic-script' rule and fails. I'll see that on automake list. Have a nice day too. ++ Jul. Hello, On Tue, Apr 19, 2005 a

Re: Installing shell scripts

2005-04-20 Thread Stepan Kasal
Hello again, On Wed, Apr 20, 2005 at 09:32:10AM +0200, Jul wrote: > >This seems not working either as the configure process looks for a > >'magic-script' rule and fails. > Sorry! It works! I didn't configure correctly my SUBDIRS variables! please forgive me my nit-picking: the variable SUBDIRS

autoconf and nfs

2005-04-20 Thread Mathias Rettich
Hi list, I'm using autocof with kdevelop3. If I'm using the script configure, generated by autoconf as a user in a nfs-home-directory I get the following message: error: Your Installation isn't able to compile simple C++ programs. Check config.log for details - if you're using a Linux distributio

RE: autoconf

2005-04-20 Thread Carl Nicol
Ok, I'm in the process of installing m4 1.4.3. It is not quite so easy, as I'm seeing that regex.c has a lot of size warnings because it is not setup for running on a 64bit machine. I'm tweaking regex.c now, but if you know of a newer source for it, I'd be happy to try it out. The newer ones that

Re: autoconf and nfs

2005-04-20 Thread Paul Eggert
Mathias Rettich <[EMAIL PROTECTED]> writes: > I'm using autocof with kdevelop3. If I'm using the script configure, > generated by autoconf as a user in a nfs-home-directory I get the > following message: > > error: Your Installation isn't able to compile simple C++ programs. > Check config.log for

Re: autoconf

2005-04-20 Thread Paul Eggert
"Carl Nicol" <[EMAIL PROTECTED]> writes: > Ok, I'm in the process of installing m4 1.4.3. It is not quite so easy, as > I'm seeing that regex.c has a lot of size warnings because it is not setup > for running on a 64bit machine. OK, but that's also true for 1.4.1, right? So you haven't lost any

RE: autoconf

2005-04-20 Thread Carl Nicol
Ok, I've got my first hack working, and autoconf/aclocal no longer has a problem. Thanks Paul, I never would have thought it was m4, though I had ran out of all my other ideas. I'll see if I can use the file you sent me as a back burner project. In the meantime, I'm going to clean up my code and

Re: autoconf

2005-04-20 Thread Paul Eggert
"Carl Nicol" <[EMAIL PROTECTED]> writes: > Is size_t relatively reliable these days, Yes. gnulib and gnulib-using projects have been assuming C89 or better for some time now. size_t is defined in on all C89 compilers. (Also some other .h files define it, but stddef.h is smallest.) _