Re: Repost: AC_CONFIG_SUBDIRS problem

2001-10-22 Thread Earnie Boyd
='gcc -mno-cygwin' configure --host=mingw32 --build=mingw32 --target=mingw32 Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Functions / satellite scripts (Was: bison-1.29c 'configure' problems on Solaris 8.)

2001-10-22 Thread Earnie Boyd
Lars J. Aas wrote: On Mon, Oct 22, 2001 at 08:18:13AM -0400, Earnie Boyd wrote: : Paul Eggert wrote: : I think this idea is a blind alley. If we want to use modern shell : features, then we should go ahead and require the configure user to : have a modern shell. That's much simpler

Autotools conformance parser

2001-11-14 Thread Earnie Boyd
Anyone know of a tool or methods in use to parse for package configuration standards as expected by the tools? There seem to be many variations and it would be a nice to have a parser to give deviation from standard reports. -- Earnie

bash-2.05a - possible autoconf considerations

2001-11-15 Thread Earnie Boyd
. /quote The above quote was posted on the Cygwin mailing list by Chet Ramey the bash maintainer. IIRC, there was discussion prior to 2.50 release concerning these. -- Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http

Re: autoconf: _m4_divert_diversion

2001-11-22 Thread Earnie Boyd
if there is one). aclocal -I directory with .m4 files autoheader automake autoconf If you still get the error, then ask the package maintainers where the m4 functions are defined because they're not in the package. Earnie. _ Do You Yahoo!? Get your

Re: Is config.guess generated from some auto tool

2001-12-19 Thread Earnie Boyd
/config/ Or use automake --add-missing Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: cmp in test scripts

2002-01-24 Thread Earnie Boyd
the test may succeed. What I'd like to see is some check to see if the use of cmp is valid and if not then maybe set CMP=diff ... What shell are you using on the DOS filesystem? A properly ported cmp would be a better solution. Earnie

Re: cmp in test scripts

2002-01-24 Thread Earnie Boyd
John Poltorak wrote: On Thu, Jan 24, 2002 at 06:00:36PM -0500, Earnie Boyd wrote: John Poltorak wrote: Is there any way that autoconf can be used to handle cmp in test scripts? Occasionally a test will fail because of the use of cmp to test differences between generated data

Re: cmp in test scripts

2002-01-25 Thread Earnie Boyd
Tim Van Holder wrote: On Fri, 2002-01-25 at 02:09, Earnie Boyd wrote: John Poltorak wrote: On Thu, Jan 24, 2002 at 06:00:36PM -0500, Earnie Boyd wrote: John Poltorak wrote: Is there any way that autoconf can be used to handle cmp in test scripts? Occasionally

Re: AC_INIT translates PACKAGE to lower case

2002-02-01 Thread Earnie Boyd
parameter in AC_INIT. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Chances of build success on non-Unix platforms

2002-02-07 Thread Earnie Boyd
they are purely historical, (going back to the last millenium :-) ) or whether there is any likelihood of success nowadays. Is there a tar mailing list around, BTW? Don't know. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address

Re: Two problems for autoconf(1.NEC SX 2.Cray)

2002-02-25 Thread Earnie Boyd
insert into 'configure' is portable; that has to be your responsibility. But autoconf could supply it's own shell that one could use to execute the configure script. Then the configure script itself would always be portable assuming that the shell itself could build. ;) Earnie

Re: cross-compiling question: static libraries and binaries to different places?

2002-03-05 Thread Earnie Boyd
configcache configure --prefix=/usr --host=bar --build=foo --target=bar make make install DESTDIR=/depot The standards for configure and make are such that this is the only way to accomplish what you want, AFAICS Earnie Dan Kegel wrote: I'm cross-developing I want to build a package that has

Re: RFC: ./configure or ./config.status --clean

2002-04-03 Thread Earnie Boyd
observations/points/suggestions. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Why does c++ use CFLAGS and not

2002-04-19 Thread Earnie Boyd
Try CXXFLAGS instead of CPPFLAGS. Earnie. Dr. David Kirkby wrote: I've got a test is a configure.in which sets CPPFLAGS to what I want, by calling an external programme wx-config. CPPFLAGS=$CPPFLAGS `wx-config --cflags` That works, and if I echo $CPPFLAGS, its value is as expected

Re: How do I conditinally make a makefile?

2002-04-19 Thread Earnie Boyd
Check the use of SUBDIR in the automake info manual. Earnie. Dr. David Kirkby wrote: Hi, I've an application that has both a command-line and a version with a graphical user interface (GUI). These are located in directories src/non_gui and src/gui. The GUI version should only

Re: OpenWatcom support

2002-05-12 Thread Earnie Boyd
Watcom binaries. Earnie. = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http://gw32.freeyellow.com/ --- --- Minimalist GNU for Windows http://www.mingw.org

Re: Site Macro Directory

2002-05-16 Thread Earnie Boyd
be to not check for the site macro directory. Earnie.

Re: Latest autoconf breaks ccAudio, ccRTP

2002-05-31 Thread Earnie Boyd
You need an AC_PREREQ(2.53) in your configure.in file. Cygwin has specialized scripts that search for AC_PREREQ to determine whether or not to use 2.13 or the newer versions of autoconf. If it doesn't find an AC_PREREQ then it defaults to 2.13. Earnie. Jason Spence wrote: Hi, I'm

Re: Cross-compiler setup with autoconf and M$ CL

2002-06-04 Thread Earnie Boyd
Have you ever review MinGW and MSYS? See: http://www.mingw.org/ for more information. Earnie. Keve Müller wrote: Hi! Thanks for the _fast_ help. With your pointers I've tracked down the problem to the following. CC=cl ./configure --host=windows32 fails, because config.guess tries

Re: cache directory is not removed

2002-06-06 Thread Earnie Boyd
directory). There is an easy way to get rid of the cache directory. It involves a simple command. This commands repeated use will not even come close to the amount of bits spread for this thread and others like it. Just `rm -rf autom4te-2.53.cache' if you don't want it laying around. Earnie.

Re: cache directory is not removed

2002-06-06 Thread Earnie Boyd
Steven G. Johnson wrote: Earnie Boyd wrote: So now I run `configure -C' always. I use the cache files to determine problem areas of my runtime libraries. Bill Wendling wrote: BTW, the removal of automatically generating a config.cache file by default was a bad idea, in my opinion

Re: cache directory is not removed

2002-06-07 Thread Earnie Boyd
the autoconf version number, i.e., I will have to change my `make dist` after every autoconf release. So your real problem is where the cache directory is created. If it weren't created in the source directory then your problem would be solved. Earnie.

Re: cache directory is not removed

2002-06-07 Thread Earnie Boyd
paragraph the term exists also implies user readable and user writable. Earnie.

Re: cache directory is not removed

2002-06-07 Thread Earnie Boyd
Bill Wendling wrote: Also sprach Earnie Boyd: } Sam Steingold wrote: } } } } So your real problem is where the cache directory is created. If it } weren't created in the source directory then your problem would be } solved. } } pretty much yes. } /tmp/autocong.cache

Re: [Autogen-devel] building a libguile client

2002-06-26 Thread Earnie Boyd
Bruce Korb wrote: Earnie Boyd wrote: I execute noag-boot.sh and find that configure can't locate -lregex for some reason. I do have it in /usr/lib. But not in /usr/lib/libc*. But, couldn't we just look for them in the other common libraries in the configury before complaining

Re: auto-regenerating Makefile.in and Makefile files

2002-07-03 Thread Earnie Boyd
the Makefile to do and what Ralf meant with his make answer. What do you mean by user-defined configure options? Earnie.

Re: auto-regenerating Makefile.in and Makefile files

2002-07-08 Thread Earnie Boyd
or configure.in to include the new SUBDIR? I.E.: Makefile.in : Makefile.am configure.in Earnie.

Re: preprocessor definitions with am, ac and ah without template files

2002-07-09 Thread Earnie Boyd
of version combinations and am now on ac 2.53 and am 1.6.2, but I just cannot work around this. Make sure that your acinclude.m4 file doesn't include older versions of these macros. Earnie.

Re: Autoconf for DJGPP

2002-07-16 Thread Earnie Boyd
I suggest you as an appropriate DJGPP list for help. The autoconf and configure are Bourne shell scripts and therefore you need an appropriate Bourne shell interpreter. Earnie. [EMAIL PROTECTED] wrote: Dear All, I am trying to compile GNU Chess with the help of DJGPP. I am doing

Re: Autoconf for DJGPP

2002-07-16 Thread Earnie Boyd
Earnie Boyd wrote: I suggest you as an appropriate DJGPP list for help. The autoconf and s/as/use configure are Bourne shell scripts and therefore you need an appropriate Bourne shell interpreter. Earnie. [EMAIL PROTECTED] wrote: Dear All, I am trying to compile

Re: Autoconf for DJGPP

2002-07-16 Thread Earnie Boyd
on Win32, executing bash. And, no I won't create a Makefile from your Makefile.in as that is pointless. The purpose of autoconfiguration is so that the build process knows about your environment and your environment doesn't match mine. Earnie.

Re: Compilation of GIMP under window32

2002-08-21 Thread Earnie Boyd
We can handle this in MinGW. We'll create the sys/param.h file. For now you can use: FILE NAME=/mingw/include/sys/param.h #ifndef _SYS_PARAM_H #define _SYS_PARAM_H #include sys/types.h #include limits.h #endif /FILE Please report other problems with this to [EMAIL PROTECTED] Earnie. James

Re: [PATCH] fix bug in autoconf-2.13 that keeps cross gcc from buildingon cygwin

2002-08-26 Thread Earnie Boyd
I suggest that this issue be dealt with within the Cygwin distribution of autoconf-2.13. Earnie. Dan Kegel wrote: [repost -- mail system problems] Building cross gcc's on cygwin fails because autoconf 2.13's AC_TRY_COMPILER test assumes that it's ok to try to run possibly cross-compiled

Re: Autom4te, autoconf problem

2002-09-05 Thread Earnie Boyd
/usr/bin/m4 --version? Earnie. f l wrote: Hi all, when I execute this command: autom4te -F autoconf.m4f autoconf.m4 I obtain this output: autoconf.m4:108: /usr/bin/m4: Warning: Too few arguments to built-in 'patsubst' Anyone know what is the problem ? Thanks

Re: Fw: MKS toolkit the 2nd

2002-09-08 Thread Earnie Boyd
Just point people to www.mingw.org and it's Minimal SYStem package, MSYS, and it's MinGW package. :) Advantage: : The configure script already executes properly. : It's open source. : It uses gcc+binutils+gmake. Earnie.

Re: Libtool 1.4.3

2002-10-09 Thread Earnie Boyd
of the community, I suggest the release to be 1.5 and that Akim's suggestion for AC_PREREQ a strong point. Perhaps, both a 1.4.3 and a 1.5 where 1.4.3 does a AC_PREREQ 2.13. Earnie.

Re: functions in different libraries on different OSes.

2002-10-09 Thread Earnie Boyd
this for windows support. Earnie.

Re: configuring sub directories optional

2002-10-28 Thread Earnie Boyd
sides then top it with jelly on one side and peanut butter on the other. I just love sticky messes! ;) I suppose checking for the existance of a created file in the subdirectory from the top-level configure isn't a choice that one would consider? Earnie.

Re: configuring sub directories optional

2002-10-28 Thread Earnie Boyd
Jeff Squyres wrote: On Mon, 28 Oct 2002, Earnie Boyd wrote: I suppose checking for the existance of a created file in the subdirectory from the top-level configure isn't a choice that one would consider? No -- that's not the problem. The problem is that AC_CONFIG_SUBDIRS (and therefore

Re: ccache and autotools

2002-11-08 Thread Earnie Boyd
generating the Makefiles? Would it not be best to fix ccache? Or is it such that ccache should avoid -MT? Earnie.

Re: check for microsoft compiler cl

2002-11-12 Thread Earnie Boyd
builtin rule for .obj though. Earnie.

Re: autopoint?

2002-11-14 Thread Earnie Boyd
Olaf Weber wrote: Patrick Welche writes: What is autopoint? Apparently a utility in the gettext package. That apparently needs executed through the missing script? Earnie.

Re: AC_MINGW32 and AC_CANONICAL_HOST

2002-11-29 Thread Earnie Boyd
over a guile configure.in.) Did you autoupdate? Earnie.

Re: Defining prefix

2002-12-12 Thread Earnie Boyd
John Poltorak wrote: If I have prefix defined in config.site and use a diferent value on the command line, which should take precedence? The command line. Earnie.

Re: make fails for 2.57 with mingw/msys

2002-12-31 Thread Earnie Boyd
-2.0.0-3 and MSYS-1.0.8. The combination you've set forth does not work. I provide for that reason a prebuilt autotools in a msysDTK package. If you wish to discuss this further, please take it to the [EMAIL PROTECTED] list. Earnie.

Re: test (and gmane)

2003-01-08 Thread Earnie Boyd
interested fourth party (a single individual) creates the mail - news via a request to gmane. Gmane administrators then create the link by joining the mail list. Earnie.

Re: auto{conf,make} DJGPP: DESTDIR

2003-01-10 Thread Earnie Boyd
/djgpp. But that still sounds bothersome when combining DESTDIR. Check out: http;//www.mingw.org/msys.shtml for a Minimal SYStem alternative that can cope with this problem. Curious, what does DJGPP return for ``uname -s''? Earnie.

Re: Makefile variables depending on configure args - how?

2003-01-20 Thread Earnie Boyd
autoconf. Is the follwing OK, or are there any issues (like portability)? AC_SUBST(DIET, $DIETDIR) The rule of thumb is to quote. The expansions may cause problems that quoting will avoid. I.E.: It may work this time, but not the next. Earnie.

Re: How to Setup Autoconf?

2003-01-27 Thread Earnie Boyd
should just execute the configure script. Is this a MS windows environment? Yes, see http://www.mingw.org. Earnie.

Re: How to Setup Autoconf?

2003-01-27 Thread Earnie Boyd
/msys.shtml for info. BTW, you may need to see http://www.cygwin.com if this is a cygwin1.dll dependent version fo apache. Earnie.

Re: Is AC_FUNC_MALLOC more trouble than it's worth?

2003-02-06 Thread Earnie Boyd
, then. Would you happen to know of any (common) systems for which this is a problem? (just so I can get an idea of what kind of priority I should give this - I've been having a bit of trouble using the replacement realloc in a C++ program) Win32 systems, both realloc and free. Earnie.

Re: keeping $exec-prefix et al unexpanded

2003-03-06 Thread Earnie Boyd
IIRC, ``make install prefix=/tmp/foo'' is a GNU standard mandate where prefix for the install does not modify the prefix for the build. Earnie. Harlan Stenn wrote: Why don't you use DESTDIR instead? IE: ./configure --prefix=/usr make make DESTDIR=/tmp install cd /tmp tar cfz binary

Re: please reply immediately

2003-03-08 Thread Earnie Boyd
to the distribution of SPAM. **It happens, ignore **it and go on. Earnie.

Re: Portability of preprocessor directives

2003-03-10 Thread Earnie Boyd
for the untested in the next release from the current. Earnie.

Re: Portability of preprocessor directives

2003-03-11 Thread Earnie Boyd
Thomas Dickey wrote: On Mon, Mar 10, 2003 at 06:58:59PM -0500, Earnie Boyd wrote: If the OS isn't supported by the vendor is it really necessary for new releases of the tool to support such a beast. If a hobbyist is in need of an older release, so be it, let the hobbyinsts help each other

Re: OT - Packages maintaining source for systems no longersupported[WAS: Re: Portability of preprocessor directives]

2003-03-12 Thread Earnie Boyd
Andreas Buening wrote: Earnie Boyd wrote: [snip] I would like to emphasize though, if the hobbyist isn't willing to test for new releases using his hobby environment then support for that environment should be removed. A package maintainer doesn't have enough cycles to maintain code

Re: OT - Packages maintaining source for systems no longersupported[WAS: Re: Portability of preprocessor directives]

2003-03-12 Thread Earnie Boyd
Thomas Dickey wrote: On Wed, Mar 12, 2003 at 08:27:21AM -0500, Earnie Boyd wrote: What do you consider a hobbyist system? One that the vendor no longer supports and supplies fixes for and I as a maintainer of the software no longer have no access to test it myself. If it's not even tested how

Re: OT - Packages maintaining source for systems no longersupported[WAS: Re: Portability of preprocessor directives]

2003-03-12 Thread Earnie Boyd
Thomas E. Dickey wrote: cygwin mingw32 You mean the freeyellow site? I've taken care of that. Earnie.

Re: OT - Packages maintaining source for systems no longersupported[WAS: Re: Portability of preprocessor directives]

2003-03-12 Thread Earnie Boyd
Thomas Dickey wrote: On Wed, Mar 12, 2003 at 12:32:41PM -0500, Earnie Boyd wrote: Thomas E. Dickey wrote: cygwin mingw32 You mean the freeyellow site? I've taken care of that. well, that's (one of) your hobbiest webpages. where's the professional one? I have nothing to do

Re: autoconf and cl.exe

2003-03-19 Thread Earnie Boyd
working on. So hopefully I can come up with a general solution to the problem. Have you looked at MSYS from www.mingw.org? I know of no reason why you shouldn't be able to use cl with it. Let's discuss on [EMAIL PROTECTED] what your difficulties are. Earnie.

Re: autoconf and cl.exe

2003-03-19 Thread Earnie Boyd
be worked through on the mingw-users list. Earnie. P.S.: Due to SPAM issues mingw-users and mingw-msys have become member only lists. If you wish to post, you will need to join the list. If you don't want to receive the list mail then choose the nomail option when joining. Please visit http

Re: Default for libexecdir

2003-04-04 Thread Earnie Boyd
, or perhaps you like --with-pkglibdir=/path/to/pkg/lib better. The default value for your new switch is the value for --libexecdir. Earnie.

Re: Help -- Cygwin configuration problem

2003-04-05 Thread Earnie Boyd
I'm redirecting you to [EMAIL PROTECTED] Please research their archives. Please remove [EMAIL PROTECTED] from your responses. Earnie. Wei Qin wrote: I have some trouble running the generated configure script on Cygwin, it complains that /bin/sh: not found at various occasions. I created

Re: How many packages use autotools?

2003-09-26 Thread Earnie Boyd
UNIX, AIX, etc.) You couldn't be farer from the truth with that statement. I use autoconf on Windows for most products. I have been since 1998. Earnie. -- http://www.mingw.org

Re: How many packages use autotools?

2003-09-28 Thread Earnie Boyd
the code without refactoring the build process. Perhaps you should check those out. Earnie. -- http://www.mingw.org

Re: autoconf 1.7

2003-09-29 Thread Earnie Boyd
Roopa Prabhu wrote: Can anybody direct me to autoconf 1.7 download. Cause i tried searching for it, but in vain. Perhaps you're really looking for automake-1.7? Or perhaps autoconf-2.57? Earnie -- http://www.mingw.org

Re: New target

2003-10-19 Thread Earnie Boyd
Kristian Van Der Vliet wrote: Hi, I have a small patch to config.guess config.sub which adds a new target for the Syllable operating system (A fork of the now-defunct AtheOS). I assume I just need to send the CVS diffs to autoconf-patches? IIRC, that should be config-patches. Earnie -- http

Re: [committed] Disable shared cache file more.

2004-01-05 Thread Earnie Boyd
Nathanael, I don't understand why you force a static cache file. Please give your reasons. Earnie. Nathanael Nerode wrote: Ick. But it appears necessary for now. Works for me on i686-pc-linux-gnu. * configure.in: Don't share a cache file for host dirs. * configure

Re: [committed] Disable shared cache file more.

2004-01-05 Thread Earnie Boyd
Nathanael Nerode wrote: Nathanael, I don't understand why you force a static cache file. Please give your reasons. Earnie. I'm disabling the shared cache file for the obvious reason; different subdirectories want to cache different, inconsistent values for the same variables. This should

Re: GNU Libtool 1.5.2 released

2004-01-29 Thread Earnie Boyd
as a preprocessor. I thought autoconf already had a macro to test for preprocessor invocation through the compiler frontend. Am I wrong? Earnie -- http://www.mingw.org http://sourceforge.net/projects/mingw https://sourceforge.net/donate/index.php?user_id=15438

Re: PACKAGE_STRING

2004-03-15 Thread Earnie Boyd
Perhaps you could specify the shell via ``./configure SHELL=/usr/bin/ksh'' or which ever one isn't buggy? Earnie. [EMAIL PROTECTED] wrote: Hello, I use autoconf 2.59... AC_INIT generates a PACKAGE_STRING preprocessor variable which includes a blank between the package name and its version

Re: [RFC] getting rid of the config.guess/sub problem when bootstrapping new ports/systems

2013-05-21 Thread Earnie Boyd
used. I know you mean for the variable to be set at autoreconf/configure usage but there are always idiots who install it into their .profile files and forget they did that. -- Earnie -- https://sites.google.com/site/earnieboyd ___ Autoconf mailing list

Re: [RFC] getting rid of the config.guess/sub problem when bootstrapping new ports/systems

2013-05-21 Thread Earnie Boyd
where to find it. -- Earnie -- https://sites.google.com/site/earnieboyd ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: [RFC] getting rid of the config.guess/sub problem when bootstrapping new ports/systems

2013-05-21 Thread Earnie Boyd
and config.sub something similar to the following might be best? ~ if [[ -f /usr/local/share/config/config.guess ]] then . /usr/local/share/config/config.guess exit fi if [[ -f /usr/share/config/config.guess ]] then . /usr/share/config/config.guess exit fi -- Earnie -- https

Re: [RFC] getting rid of the config.guess/sub problem when bootstrapping new ports/systems

2013-05-21 Thread Earnie Boyd
and configure would execute the config.guess and config.sub in that directory or error if the files do not exist or are unreadable. -- Earnie -- https://sites.google.com/site/earnieboyd ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org

Re: [RFC] getting rid of the config.guess/sub problem when bootstrapping new ports/systems

2013-05-21 Thread Earnie Boyd
solution does help those with packages that currently use that legacy method. -- Earnie -- https://sites.google.com/site/earnieboyd ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: process result code in if

2013-06-06 Thread Earnie Boyd
-- Earnie -- https://sites.google.com/site/earnieboyd ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

<    1   2