autoconf/tools produces to many top level files

2013-04-12 Thread Bob Rossi
the autotools so that everything else gets put somewhere else (like in a nested directory)? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: autoconf/tools produces to many top level files

2013-04-12 Thread Bob Rossi
On Fri, Apr 12, 2013 at 06:49:59AM -0600, Eric Blake wrote: On 04/12/2013 05:30 AM, Bob Rossi wrote: Hi, I'm creating a new project and using autotools. I've done this before, but for some reason this time I've noticed how many files autotools creates. It totally pollutes the top level

Re: Noooooooooo!

2008-09-02 Thread Bob Rossi
symlinks and the problem went away. I don't know anything about what you guys are talking about, but, i know that symlinks don't work well on windows. Do you have a workaround for msys/windows, or systems that don't handle symlinks well? Bob Rossi

differences running in build dir or install dir

2007-11-14 Thread Bob Rossi
be just an extra step in the development cycle, thereby wasting more precious time. Does anyone have any advice for me in this area? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: differences running in build dir or install dir

2007-11-14 Thread Bob Rossi
On Wed, Nov 14, 2007 at 09:37:57AM -0800, Brian Dessent wrote: Bob Rossi wrote: This is a sort of general purpose question. It's typical that the build directory and the install directly have a different directory hierarchy. Therefor, if you run a built program in the build directory

Re: differences running in build dir or install dir

2007-11-14 Thread Bob Rossi
On Wed, Nov 14, 2007 at 11:41:24AM -0700, Bob Proulx wrote: Bob Rossi wrote: One of the things my build system does is compile a bunch of plugins. The application scans a directory, and attempts to load all of the plugins in that directory. When I run the program from the build dir

Re: VPATH build...

2007-04-03 Thread Bob Rossi
` abs_top_builddir=`pwd` ;; esac It's probably not correct, but it works. Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Why unknown?

2007-02-12 Thread Bob Rossi
/features.htm a PC, then? Sure, if it's for your personal use, then it's a personal computer! http://en.wikipedia.org/wiki/Personal_computer Now, I hope you aren't using the autotools on a non personal computer. In that case you would be using a NPC. I don't think GNU supports that. Bob Rossi

abs_top_srcdir

2007-02-08 Thread Bob Rossi
ideas? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

order to run autotools

2007-01-23 Thread Bob Rossi
I get, cd ../cgdb /bin/bash /home/bob/rcs/svn/cgdb/cgdb.testsuite/cgdb/config/missing --run autoheader Am I doing something wrong or is this expected? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman

Re: path separator

2007-01-23 Thread Bob Rossi
in this situation? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: path separator (was: target triplet)

2007-01-22 Thread Bob Rossi
in an earlier reply to Bob Rossi]: http://article.gmane.org/gmane.comp.gnu.mingw.msys/3822 Thanks for the pointer, I was not fully aware of the limitation that $PATH_SEPARATOR is useful for $build only, not for $host. OK to apply the patch at the end to document this? I have a question

target triplet

2007-01-21 Thread Bob Rossi
-gnu. Are there any other odd cases? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: target triplet

2007-01-21 Thread Bob Rossi
On Sun, Jan 21, 2007 at 11:22:40PM +0100, Ralf Wildenhues wrote: Hello Bob, * Bob Rossi wrote on Sun, Jan 21, 2007 at 11:15:23PM CET: I would like to get access to the target triplet fields. The cpu, os and vendor strings. Does autoconf provide these separatly? Here you go: http

Re: linking small programs with AC_LINK_IFELSE

2007-01-18 Thread Bob Rossi
On Tue, Jan 09, 2007 at 08:58:24PM +0100, Ralf Wildenhues wrote: Hello Bob, * Bob Rossi wrote on Wed, Dec 20, 2006 at 09:00:47PM CET: I'm wondering. I'm trying to use AC_LINK_IFELSE to link a small program against libexpat. I set the flags LIBS=$LIBS $EXPAT_LDADD CPPFLAGS

linking small programs with AC_LINK_IFELSE

2006-12-20 Thread Bob Rossi
that program and only use the libraries and headers that I give it? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

AC_CONFIG_SUBDIRS

2006-12-06 Thread Bob Rossi
-level Makefile. The other option is to use the AC_CONFIG_SUBDIRS option and explicitly remove the options that I do not want to flow down. What should I do? Any advice from people that have solved this problem before? Thanks, Bob Rossi ___ Autoconf

Re: AC_CONFIG_SUBDIRS

2006-12-06 Thread Bob Rossi
On Wed, Dec 06, 2006 at 08:06:54PM +0100, Ralf Wildenhues wrote: Hello Bob, * Bob Rossi wrote on Wed, Dec 06, 2006 at 03:40:00PM CET: When you run the top-level configure script, it determines what libraries you need to build the project, and then downloads the .tar.gz dependency

Re: cygwin -mno-cygwin AC_CHECK_SIZEOF

2006-12-01 Thread Bob Rossi
. Think this will go upstream? Thanks, Bob Rossi

cross compiling AC_CHECK_SIZEOF

2006-12-01 Thread Bob Rossi
Hi, How does AC_CHECK_SIZEOF understand what values to give when cross compiling if it can't run the executable? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: cygwin -mno-cygwin AC_CHECK_SIZEOF

2006-12-01 Thread Bob Rossi
? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: cygwin -mno-cygwin AC_CHECK_SIZEOF

2006-12-01 Thread Bob Rossi
On Fri, Dec 01, 2006 at 07:06:06AM -0700, Eric Blake wrote: According to Bob Rossi on 12/1/2006 6:57 AM: CPPFLAGS=-mno-cygwin CFLAGS=-mno-cygwin -O0 ./configure --build=mingw32 --enable-experimental-libtool EVIL. --build is for the platform you are BUILDING on (ie. cygwin

cygwin -mno-cygwin AC_CHECK_SIZEOF

2006-11-30 Thread Bob Rossi
=`cat conftestval`, ... now cygwin's cat doesn't understand \r\n, so ac_cv_sizeof_int=`cat conftestval` results in 4\r, which breaks the configure.in scripts that check with if statements for $ac_cv_sizeof_int = 4. What is the best way to resolve something like this? Thanks, Bob Rossi

Re: What is causing this readline error

2006-11-13 Thread Bob Rossi
': examples/rl.c:148: error: `rl_num_chars_to_read' undeclared (first use in this function) make: *** [readline] Error 1 Well, did you look at the translation unit? what does it look like? Bob Rossi

Re: bison generated files

2006-05-23 Thread Bob Rossi
On Mon, May 22, 2006 at 02:13:26PM -0400, Bob Rossi wrote: Hi, Does anyone know if bison generated files typically get checked into the source repository, and build system the same way flex generated files are? That way, other developers or users do not need bison installed if they do

Re: bison generated files

2006-05-23 Thread Bob Rossi
On Tue, May 23, 2006 at 04:48:56PM -0700, Paul Eggert wrote: Bob Rossi [EMAIL PROTECTED] writes: Does anyone know if bison generated files typically get checked into the source repository, and build system the same way flex generated files are? That way, other developers or users do

bison generated files

2006-05-22 Thread Bob Rossi
, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: conditionally using libtool

2006-05-02 Thread Bob Rossi
On Mon, May 01, 2006 at 09:39:04PM -0500, Bob Friesenhahn wrote: On Mon, 1 May 2006, Bob Rossi wrote: Would you mind quicly explaining how autoconf works? Meaning what are the steps taken that generate a configure.sh script? Don't be needlessly confused by the m4 gibberish which is often

Re: conditionally using libtool

2006-05-01 Thread Bob Rossi
works? Meaning what are the steps taken that generate a configure.sh script? I understand that m4 is used. Is m4 the only tool that is run on the configure.in file to generate the configure script? I'm trying to better understand how macro's in an sh condition effect the outcome. Bob Rossi

Re: conditionally using libtool

2006-04-29 Thread Bob Rossi
On Sat, Apr 29, 2006 at 09:09:19AM +0200, Ralf Wildenhues wrote: * Bob Rossi wrote on Sat, Apr 29, 2006 at 04:00:03AM CEST: Can I do something in configure.in that says if .. AM_LIBTOOL fi; or is this invalid? This is invalid and will break at unfortunate places. Use

Re: conditionally using libtool

2006-04-29 Thread Bob Rossi
On Fri, Apr 28, 2006 at 09:05:02PM -0700, Russ Allbery wrote: Bob Rossi [EMAIL PROTECTED] writes: I would like to have my package create a single static library and a single program by default. However, if the user does --enable-tcl-extension, then I would like to create a shared

Re: conditionally using libtool

2006-04-29 Thread Bob Rossi
On Sat, Apr 29, 2006 at 05:50:41PM +0200, Ralf Wildenhues wrote: * Bob Rossi wrote on Sat, Apr 29, 2006 at 12:15:49PM CEST: On Sat, Apr 29, 2006 at 09:09:19AM +0200, Ralf Wildenhues wrote: * Bob Rossi wrote on Sat, Apr 29, 2006 at 04:00:03AM CEST: Can I do something in configure.in

Re: conditionally using libtool

2006-04-29 Thread Bob Rossi
On Sat, Apr 29, 2006 at 06:34:59PM +0200, Ralf Wildenhues wrote: * Bob Rossi wrote on Sat, Apr 29, 2006 at 06:18:54PM CEST: OK, so is the only safe way to do this to have 2 configure.in scripts? One that uses AC_PROG_LIBTOOL and one that doesn't? I don't see why that would be necessary

conditionally using libtool

2006-04-28 Thread Bob Rossi
; or is this invalid? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: nested packages

2006-04-14 Thread Bob Rossi
I'm not interested in having it installed unless the package is being configured on it's own. (Unless the library install dir is the same as CGDB's installed dir --prefix=). OK, that should be fine. Thanks for the help. This seems to work wonderfully for me! Bob Rossi

Re: nested packages

2006-04-13 Thread Bob Rossi
On Thu, Apr 13, 2006 at 09:58:33AM +0200, Ralf Wildenhues wrote: Hi Bob, * Bob Rossi wrote on Thu, Apr 13, 2006 at 02:57:48AM CEST: On Wed, Apr 12, 2006 at 10:48:15PM +0200, Ralf Wildenhues wrote: * Stepan Kasal wrote on Wed, Apr 12, 2006 at 10:41:58PM CEST: On Wed, Apr 12, 2006 at 08

nested packages

2006-04-11 Thread Bob Rossi
./configure twice for the installation of CGDB. I would like to include them both in the same CVS repository and make separate releases of the packages. Any advice? I could be persuaded to do things differently. Thanks, Bob Rossi ___ Autoconf mailing list

Re: debug builds with NO optimizations

2006-02-06 Thread Bob Rossi
of curiosity, is this different than 'CFLAGS=-g ./configure ...'? I do this all the time and wonder if your way is somehow better. Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: am files in CVS and MAINTAINER_MODE

2006-01-17 Thread Bob Rossi
subversion preserve these? Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: makeinfo

2006-01-16 Thread Bob Rossi
On Mon, Jan 16, 2006 at 09:59:57AM +0100, Ralf Wildenhues wrote: Hi Bob, * Bob Rossi wrote on Sun, Jan 15, 2006 at 12:26:53AM CET: When I run configure I get this error, ... Making all in src Making all in doc Updating ../../cgdb/doc/version.texi /home/bob/cvs/cgdb/cgdb/cgdb

Re: makeinfo

2006-01-16 Thread Bob Rossi
* fulfil this expectation). OK, now thats wierd. If I'm going to make people install texinfo, then I should apparently just make them go the extra mile and install the autotools? Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org

Re: am files in CVS and MAINTAINER_MODE

2006-01-16 Thread Bob Rossi
-maintainer-mode? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: makeinfo

2006-01-16 Thread Bob Rossi bob
On Mon, Jan 16, 2006 at 04:25:17PM +, Keith MARSHALL wrote: Bob Rossi wrote: OK, now thats wierd [sic]. If I'm going to make people install texinfo, then I should apparently just make them go the extra mile and install the autotools? Not necessarily. If you've committed

am files in CVS and MAINTAINER_MODE

2006-01-14 Thread Bob Rossi
created. In short, is there a nice way of adding the generated files into CVS and not having timestamp problems with out this macro? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

makeinfo

2006-01-14 Thread Bob Rossi
. Grab either from any GNU archive site. Do I need to have that program installed to run configure? I'm running this out of a CVS repo of a program, that has all the autotool files checked in. Not from a 'make dist' of the autotools. Thanks, Bob Rossi

creating a distro

2005-07-28 Thread Bob Rossi
Makefile.am's. However, it is picking up the $(READLINE_DIR) from my build directory. I want it to pick up the READLINE_DIR from my source directory. Is there any way to do this? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org

Re: creating a distro

2005-07-28 Thread Bob Rossi
in the dist. Got any advice? Thanks again and again and again, Bob Rossi Index: Makefile.in === RCS file: /cvsroot/cgdb/cgdb/Makefile.in,v retrieving revision 1.35 diff -u -r1.35 Makefile.in --- Makefile.in 28 Jul 2005 22:42:22 -

Re: enable/disable configure options for subpackages

2005-07-27 Thread Bob Rossi
installed. So it doesn't mind _that_ much if you are not portabale to other versions of Autoconf. Yeah, this goes double for me, since I put the autoconf files in CVS. Thanks for all your help, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http

Re: enable/disable configure options for subpackages

2005-07-26 Thread Bob Rossi
On Fri, Jul 15, 2005 at 12:14:44PM +0200, Stepan Kasal wrote: Hello, On Thu, Jul 14, 2005 at 03:36:48PM -0400, Bob Rossi wrote: Is there a way to pass in --disable-shared to the AC_CONFIG_SUBDIRS? I apologize for the wrong answer I gave previously. No, I don't know about any

enable/disable configure options for subpackages

2005-07-14 Thread Bob Rossi
in --disable-shared to the AC_CONFIG_SUBDIRS? BTW, CGDB currently doesn't use any shared libraries, so if there is a global setting I can use, that would currently be fine. Thanks again, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http

Re: Need help with autoconf configure script

2005-07-14 Thread Bob Rossi
On Thu, Jul 14, 2005 at 10:01:46AM +0200, Stepan Kasal wrote: Hello, On Wed, Jul 13, 2005 at 07:38:25AM -0400, Bob Rossi wrote: Is this a bug in autoconf? yes, this is a bug in autoconf. It is well known, and it'll be fixed in Autoconf 3, in a distant future... OK, Thanks

Re: Need help with autoconf configure script

2005-07-13 Thread Bob Rossi
? This is line 1 of configure, #!/bin/sh If you would like me to send in ../cgdb/configure, I will. It's 7974 lines long. Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Need help with autoconf configure script

2005-07-13 Thread Bob Rossi
On Wed, Jul 13, 2005 at 11:02:48AM +0200, Andreas Schwab wrote: Bob Rossi [EMAIL PROTECTED] writes: On Wed, Jul 13, 2005 at 12:04:27AM +0200, Andreas Schwab wrote: Bob Rossi [EMAIL PROTECTED] writes: If I run ./configure then by default opt_with_readline_prefix is no. During

Re: Configure help

2005-07-13 Thread Bob Rossi
readline/CGDB I was wondering if this is OK? Finally, is there a way to not have readline install anything? Since I linked statically to it, I don't need anything else from it. Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http

Need help with autoconf configure script

2005-07-12 Thread Bob Rossi
the slightly modified version of VL_LIB_READLINE that I am using. Thanks, Bob Rossi dnl Available from the GNU Autoconf Macro Archive at: dnl http://www.gnu.org/software/ac-archive/htmldoc/vl_lib_readline.html dnl AC_DEFUN([VL_LIB_READLINE], [ AC_CACHE_CHECK([for a readline compatible library

Re: Need help with autoconf configure script

2005-07-12 Thread Bob Rossi
fi The 2 lines commentted out above (AC_CHECK_HEADERS) are causing VL_LIB_READLINE to break the configure script, even though those lines are never executed. Does anyone understand how this could happen? I am at a loss and really need some help. Thanks, Bob Rossi On Tue, Jul 12, 2005 at 09:32

Re: Configure help

2005-07-07 Thread Bob Rossi
CPPFLAGS=-I$opt_with_readline_prefix/include -I$opt_with_readline_prefix/include/readline $CPPFLAGS Thanks for the much needed help, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Configure help

2005-07-06 Thread Bob Rossi
On Wed, Jul 06, 2005 at 06:07:36PM +0200, Ralf Wildenhues wrote: Hi Bob, * Bob Rossi wrote on Tue, Jul 05, 2005 at 05:25:21PM CEST: I am having a little trouble using autoconf to configure my package. Currently, I am tring to build a package that depends on another package. Basically

Configure help

2005-07-05 Thread Bob Rossi
for libreadline.a until after the make is done. Is there a way to ./configure make make install the readline package, and then continue with CGDB's configure? Thanks, Bob Rossi ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman

Re: noinst_bin problem

2005-05-23 Thread Bob Rossi
On Mon, May 23, 2005 at 09:36:30AM +0200, Ralf Wildenhues wrote: Hi Bob, * Bob Rossi wrote on Sat, May 21, 2005 at 01:33:33AM CEST: I only want cgdb to get installed, not the other programs. For this reason I use the rule, noinst_bin_PROGRAMS = kui_driver noinst_bindir

noinst_bin problem

2005-05-20 Thread Bob Rossi
create directory `/tmp/foo../../../progs': Permission denied make[4]: *** [install-noinst_binPROGRAMS] Error 1 What am I doing wrong? I realize this may be a simple problem, hoever, I can not figure it out. Any help would be greatly appreciated. Thanks, Bob Rossi