Re: autocon and sub-packages

2015-09-04 Thread Earnie
thing that could be cobbled together, if you still want to go the >> route of shipping dependent library bundles. > > Thanks. I indeed think it should be possible to achieve this. > As I said I would personally prefer not to bundle libraries but I'm not > in a position where I can take this decision. You could let the make do the extraction. No need to cobble something in shell code. Make the extraction via make depend on some missing file. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: Autoconf can't find X11 libraries

2016-01-26 Thread Earnie
want to cross-compile for the 64bit host. Then you don't need to worry which bit set the lib directory contains. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: Add clang++ to AC_PROG_CXX

2016-03-19 Thread Earnie
on to ignore the environment variables for these checks since the package may be dependent on a specific named tool. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: OS400

2016-04-18 Thread Earnie
hen you need to discuss them on the libtool list. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: Call the AC_CHECK_HEADER macro on a condition

2016-04-18 Thread Earnie
provide legacy support, would it not? I suppose there comes a point in time when legacy needs a maximum age but I think that requires some acknowledgement from the users of autoconf. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.

Re: Why doesn't Autotools makefile update Bash hash cache after install?

2017-06-13 Thread Earnie
e and the inodes will not be released until the processes with open channels to it have closed. Often a reboot is the only way to relieve that issue. On Windows, you cannot delete an opened file, if you try you will get an error from the system. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: Bug#850329: autoconf tries to execute foreign binaries

2017-08-21 Thread Earnie
the territory where I'd be > uncomfortable proposing it myself. Does anyone on the autoconf mailing > list have thoughts? With --host alone autoconf should assume it is a cross compile without doing any further testing even if the guessed BUILD environment is identical to the specified --h

Re: How to configure Autoconf in /usr/local to use M4 in /usr/local?

2018-01-07 Thread Earnie
On 1/4/2018 3:02 AM, Jeffrey Walton wrote: > > My question is, how do I tell Autoconf where the missing macros are? > Just like GCC, use one or more -I options. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.or

Re: How to configure Autoconf in /usr/local to use M4 in /usr/local?

2018-01-07 Thread Earnie
On 1/7/2018 10:38 AM, Jeffrey Walton wrote: > On Sun, Jan 7, 2018 at 10:28 AM, Earnie <ear...@users.sourceforge.net> wrote: >> On 1/4/2018 3:02 AM, Jeffrey Walton wrote: >>> >>> My question is, how do I tell Autoconf where the missing macros are? >>> &g

Re: cl.exe and system types

2018-08-20 Thread Earnie
hatever you desire but something sensible like x86_64-pc-msvc might work well. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: cl.exe and system types

2018-08-21 Thread Earnie
have been > added in 2002. Clearly we've not made it to the future yet. :) Should it ever get here? Maybe the fix is to remove the comment. What we have has worked for many years with no one bugged about it enough to supply a patch to do otherwise. -- Earnie ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: cl.exe and system types

2018-08-23 Thread Earnie
variables to the binaries. IIRC, The 64bit version of Cygwin has a cross build for the 32bit version[1] so the --host would be i686-pc-cygwin and config.guess can figure out the --build or you can specify it as x86_64-pc-cygwin. [1] https://cygwin.com/cgi-bin2/package-grep

Re: Skip all version checks with autoconf?

2018-08-27 Thread Earnie
ne, > just not necessarily the higher version number requirement within the line. > > I'm thinking more along the lines of: > > sed -i '/AM_INIT_AUTOMAKE/ s/\b[0-9.]*\b//' > Wouldn't wrappers like Cygwin uses work? Of course the wrapper requires you to have every possible version

Re: Configure tests using pipes

2018-07-18 Thread Earnie
ate a temporary area, make that the working >> directory, and use /path/to/src/configure instead. > > In my environment, I don't have permission to run the build in a non-NFS area. > Maybe time to talk with your management or IT department about

Re: configure: error: C preprocessor "/lib/cpp" fails sanity check

2018-11-17 Thread Earnie
is in the mix, a top level configure script or perhaps make can execute another configure script that has its own config.log file. My guess based on the above is the config.log you need exists in the /home/luser/Downloads/binutils-2.26.1/libiberty directory. -- Earnie _

Re: How to optionally test for a C++ compiler?

2000-02-14 Thread Earnie Boyd
ix - perhaps only check for it on DOS and Windows Why not use AC_PATH_PROGS and put cl last in the list? = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalis

Re: Help understanding AC_TRY_CPP

2000-03-03 Thread Earnie Boyd
of the configure script just so that I could see the output of gcc. My vote would be to remove conftest at the front of the script, if that's even necessary, and leave it for the user to look at when script exists. Then let `make clean' handle the removal of conftest. = --- Earnie Boyd: mailto:[EMAIL

Re: Help understanding AC_TRY_CPP

2000-03-03 Thread Earnie Boyd
that it is. = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist GNU for Windows__ Mingw32 List: http://www.egroups.com/group/mingw32 Mingw Home: (Coming Soon

Re: Portability of `?' in sed

2000-03-09 Thread Earnie Boyd
--- Akim Demaille [EMAIL PROTECTED] wrote: Does someone know how `\?' is portable in sed? Are you asking about the metacharacter ? which indicates "matches zero or one occurences of the preceding regular expression" or the quoted metacharacter \? which indicates a literal `?'? Ea

Re: Moving/Deleting open files isn't portable

2000-03-21 Thread Earnie Boyd
--- "Thomas Bushnell, BSG" [EMAIL PROTECTED] wrote: Earnie Boyd [EMAIL PROTECTED] writes: Haven't thought of one yet. But whatever the fix entails it will have to close the fd to foo before the mv/rm. In that case, Win-32 is not Posix compliant, and it should not be a s

Re: Moving/Deleting open files isn't portable

2000-03-21 Thread Earnie Boyd
--- "Thomas Bushnell, BSG" [EMAIL PROTECTED] wrote: Earnie Boyd [EMAIL PROTECTED] writes: Haven't thought of one yet. But whatever the fix entails it will have to close the fd to foo before the mv/rm. In that case, Win-32 is not Posix compliant, and it should not be a s

Re: automake --build-dir

2000-04-03 Thread Earnie Boyd
s autoconf. ^^ NOT PORTABLE. Not all environments will allow you to delete an open file. A file that tries to delete itself will fail on such an environment. Earnie. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messe

Re: backward compatibility (WAS: Re: Is this a bug in autoconf? (patch included))

2000-04-25 Thread Earnie Boyd
be error and abort by default unless a switch --allow-deprecated (or what ever) be given. This would help to clean up the configure.in scripts that still use them but would allow the user to use them if wanted. Cheers, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX

Re: Is this a bug in autoconf? (patch included)

2000-04-25 Thread Earnie Boyd
--- Ralf Corsepius [EMAIL PROTECTED] wrote: -8- IMHO, cross-compilation should be defined as build!=host. This make logical sense build!=host indicates cross-compilation. = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http

Re: config.[guess|sub] (WAS: Re: Is this a bug in autoconf? (patch included))

2000-04-27 Thread Earnie Boyd
, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist GNU for Windows__ Mingw32 List: http://www.egroups.com/group/mingw32/ Mingw Home: http://www.mingw.org

Re: automatic cross compiler search patch

2000-05-22 Thread Earnie Boyd
patibility is a must. Also, IMO, backward compatibility doesn't need to be automatic. It can be provided for by a switch or even by a separate set of macros in a iberty.m4 file or both. Cheers, ===== --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin New

Re: Why is -g -O2 enabled by default for gcc/g++?

2000-05-22 Thread Earnie Boyd
hese flags get added to the compiler flags? You have the option to change the value like so: CXXFLAGS="-foo -bar" ../configure Cheers, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.ht

Re: Why is -g -O2 enabled by default for gcc/g++?

2000-05-22 Thread Earnie Boyd
ant to add the switches the use the common means. Is this correct? Cheers, ===== --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist GNU for Windows__ Mingw32

Re: Detecting DJGPP, Cygwin, Mingwin and EMX OS/2

2000-05-24 Thread Earnie Boyd
reports: MINGW_WinNT DU147636 3 0 i686 unknown Cheers, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist GNU for Windows__ Mingw32 List: http://www.egroups.com/group

Re: Detecting DJGPP, Cygwin, Mingwin and EMX OS/2

2000-05-24 Thread Earnie Boyd
--- Eli Zaretskii [EMAIL PROTECTED] wrote: On Wed, 24 May 2000, Earnie Boyd wrote: Cygwin comes with uname which reports: CYGWIN_NT-4.0 DU147636 1.1.0(0.17/3/2) 2000-03-01 00:15:19 i686 unknown For MinGW I have a uname hack which reports: MINGW_WinNT DU147636 3 0 i686 unknown

Re: Detecting DJGPP, Cygwin, Mingwin and EMX OS/2

2000-05-24 Thread Earnie Boyd
BTW, since your supporting MinGW, the IFS value when searching the PATH needs to be ';' instead of ':'. Cheers, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist

Re: Detecting DJGPP, Cygwin, Mingwin and EMX OS/2

2000-05-24 Thread Earnie Boyd
--- Eli Zaretskii [EMAIL PROTECTED] wrote: On Wed, 24 May 2000, Earnie Boyd wrote: Cygwin comes with uname which reports: CYGWIN_NT-4.0 DU147636 1.1.0(0.17/3/2) 2000-03-01 00:15:19 i686 unknown For MinGW I have a uname hack which reports: MINGW_WinNT DU147636 3 0 i686

Re: DJGPP testsuite results

2000-06-06 Thread Earnie Boyd
we want to check for do support it, right? -8- Correct. = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist GNU for Windows__ Mingw32 List: http

Re: DJGPP testsuite results

2000-06-06 Thread Earnie Boyd
it be set in config.site until a test can be divined. This will help with MinGW as well. Cheers, ===== --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://www.freeyellow.com/members5/gw32/index.html __Minimalist GNU for Windows__ Mi

Re: [patch] automake: m4/depout.m4

2000-06-07 Thread Earnie Boyd
g? There's more to cygwin than I though... We've just been building from C:/source to C:/build on NT... Lars, you need to join the Cygwin mailing list and look at the documentation both of which you can find at http://sourceware.cygnus.com/cygwin/. I can't believe your developing with Cygwin

Re: [patch] automake: m4/depout.m4

2000-06-07 Thread Earnie Boyd
--- "Lars J. Aas" [EMAIL PROTECTED] wrote: On Wed, Jun 07, 2000 at 07:04:55AM -0700, Earnie Boyd wrote: : --- "Thomas E. Dickey" [EMAIL PROTECTED] wrote: : On Wed, 7 Jun 2000, Lars J. Aas wrote: : The following patch made the configure script work, but one should : p

Re: --host = cross breaks GCC builds

2000-06-28 Thread Earnie Boyd
--- Akim Demaille [EMAIL PROTECTED] wrote: "Earnie" == Earnie Boyd [EMAIL PROTECTED] writes: Earnie I have yet to do a cross-compile but hope to use Akim's and Earnie Mo's patches to do so when I GARTI. Hm, Get A Ride To It? No, doesn't sound right. The dictionaries of dic

Re: Why does ./configure not set prefix and exec_prefix?

2000-07-19 Thread Earnie Boyd
OR: configure (prefix=/usr/local) make prefix=/usr (user Foo always does it this way) make install I may want to test an installation and want to build with a different prefix than what it was configured with. There's probably more. Regards, = --- Earnie Boyd: mailto

Re: Comment delimiters in the autoconf archive

2000-07-19 Thread Earnie Boyd
fice. I just want to add that seeing the comments in the generated scripts is an added benefit to the newbie trying to learn what's happening. It more clearly shows how we get from foo.in to foo.sh and makes the process easier to assimilate. Cheers, ===== --- Earnie Boyd: mailto:[EMAIL

Re: Why does ./configure not set prefix and exec_prefix?

2000-07-19 Thread Earnie Boyd
expect that the prefix is changeable at the time of make. My guess is that others do also. Regards, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://gw32.freeyellow.com/ __Minimalist GNU for Windows__ Mingw32 List: http

Re: Usage of GNU autoconf under Cygwin

2000-07-29 Thread Earnie Boyd
--- Andrew Makhorin [EMAIL PROTECTED] wrote: Dear Earnie, I'm writing to thank you for your help. You're very welcome. I thought that there is full compatibility between GNU/Linux and Cygwin. Probably I was wrong. (I'm a novice in GNU/Linux as well as in Cygwin and many things

Re: Autoconf Extension Files

2000-08-03 Thread Earnie Boyd
I'm going to agree with Jim. I like the idea of separate files for different functions. It's easier to debug and correct that way. Regards, Earnie. --- Jim Meyering [EMAIL PROTECTED] wrote: Sheesh you guys! Why don't you do real work instead of arguing about this tiny little point. I

Re: Autoconf Extension Files

2000-08-04 Thread Earnie Boyd
but it is whether to have both options. My choice is for both options. Cheers, = --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://gw32.freeyellow.com/ __Minimalist GNU for Windows__ Mingw32 List: http://www.egroups.com/group

Re: HTML format documentation

2000-08-24 Thread Earnie Boyd
--- David Morgan [EMAIL PROTECTED] wrote: Earnie Boyd wrote: --- Peter Eisentraut [EMAIL PROTECTED] wrote: I fully support making "docdir" a separate directory that defaults to `${prefix}/doc' -- after all, this has been reality for years. But I'd like to see this tak

Re: grep -E ? (Was: Compilation problem solved)

2000-08-29 Thread Earnie Boyd
--- Lars Hecking [EMAIL PROTECTED] wrote: Alexandre Oliva writes: On Aug 29, 2000, Earnie Boyd [EMAIL PROTECTED] wrote: AFAIK '^ *+' is a regular expression and not an extended regular expression. `+' after `*' isn't portable, IIRC. In fact, I don't understand what we're

Re: HTML format documentation

2000-09-01 Thread Earnie Boyd
a package but not all packages are systems. So, given that, what might be needed is more an $(osinitprefix) variable that is set by default to /etc/local and the appropriate switches to control that. Cheers, Earnie __ Do You Yahoo!? Yahoo! Mail - Free

Re: HTML format documentation

2000-09-08 Thread Earnie Boyd
] [DPREFIX/man] Akim Cheers, = --- http://earniesystems.safeshopper.com --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://gw32.freeyellow.com/ __Minimalist GNU for Windows__ Mingw32 List: http://www.egroups.com/group

Fwd: Re: I'm new in cygwin: how to mmap?

2000-09-12 Thread Earnie Boyd
FYI on portability issue. Cheers, Earnie. Note: forwarded message attached. __ Do You Yahoo!? Yahoo! Mail - Free email you can access from anywhere! http://mail.yahoo.com/ Hi! "Dr. Volker Zell" [EMAIL PROTECTED] wrote: "Cori

Re: Meta list issue: subject prefixes

2000-09-21 Thread Earnie Boyd
, = --- http://earniesystems.safeshopper.com --- Earnie Boyd: mailto:[EMAIL PROTECTED] __Cygwin: POSIX on Windows__ Cygwin Newbies: http://gw32.freeyellow.com/ __Minimalist GNU for Windows__ Mingw Home: http://www.mingw.org

Re: Meta list issue: subject prefixes

2000-09-27 Thread Earnie Boyd
--- Akim Demaille [EMAIL PROTECTED] wrote: "Earnie" == Earnie Boyd [EMAIL PROTECTED] writes: Earnie --- Ossama Othman [EMAIL PROTECTED] wrote: Out of curiosity, are you guys receiving duplicate e-mails from the list? I seem to be getting two copies of each e-mail sen

Re: AC_PROG_CC not working

2000-10-11 Thread Earnie Boyd
o function. Cheers, ===== 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/ --- __ Do

Re: AC_PROG_CC not working

2000-10-11 Thread Earnie Boyd
quot;.exe") This sounds good, but you'd have to test for the existance of contest.exe in case of the instance of some system producing something other than .exe as an extention. Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com

Re: AC_PROG_CC not working

2000-10-27 Thread Earnie Boyd
C isn't a good idea for autoconf. Cheers, = 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: AC_PROG_CC not working

2000-10-27 Thread Earnie Boyd
is only used to identify the build system. How can it ever be used to identify a HOST or TARGET system? Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http://gw32.freeyellow.com/ --- --- Minimalist

Re: Forbidden strings

2000-11-06 Thread Earnie Boyd
. Why not just prefix the reserved autoconf variables with a `_' character? This would be normal for vendor supplied tools and prevents user name space pollution. Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX

Re: Forbidden strings

2000-11-07 Thread Earnie Boyd
--- Akim Demaille [EMAIL PROTECTED] wrote: "Alexandre" == Alexandre Oliva [EMAIL PROTECTED] writes: Alexandre On Nov 6, 2000, Earnie Boyd [EMAIL PROTECTED] wrote: Why not just prefix the reserved autoconf variables with a `_' character? Alexandre autoconf used to use ju

Re: Portability of fopen (foo, wb) (Was: bug in AC_COMPUTE_INT)

2000-11-16 Thread Earnie Boyd
ingle UNIX Specification Version 2" from The Open Group supports wb. I've checked several man pages and all except those related to PHP supports the 'b' option. It is also required for conformity by IEEE STDSt (``POSIX'')-ansiC standard according to http://www.ajk.tele.fi/libc/stdio/fopen

Re: Portability of fopen (foo, wb) (Was: bug in AC_COMPUTE_INT)

2000-11-16 Thread Earnie Boyd
--- Akim Demaille [EMAIL PROTECTED] wrote: "Earnie" == Earnie Boyd [EMAIL PROTECTED] writes: Earnie Lars, just to satisfy my curiosity please send me the output Earnie of `cygcheck -s -r -v'. What's this? It is a tool developed by the Cygwin team to report on the us

Re: Where did the Cygwin and Mingw checks go?

2000-11-22 Thread Earnie Boyd
++. Correct!. And for VC++ since you don't have uname you would have to specify the values for the variables. Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http://gw32.freeyellow.com

Re: Where did the Cygwin and Mingw checks go?

2000-11-22 Thread Earnie Boyd
supplied by autoconf figures it out. I don't know if the discussion has become code yet. Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http://gw32.freeyellow.com/ --- --- Minimalist GNU for Windows http

Re: More on fopen() problem on Cygwin

2000-11-22 Thread Earnie Boyd
ppropriately with Cygwin packages on binary mounts. Given that "wb" and "rb" are ANSI compliant then I suggest that your "wb" patch to be correct. It solves the problems created by non-Cygwin programs and this includes all other Win32 port

Re: More on fopen() problem on Cygwin

2000-11-22 Thread Earnie Boyd
--- "Lars J. Aas" [EMAIL PROTECTED] wrote: On Wed, Nov 22, 2000 at 11:13:15AM -0800, Earnie Boyd wrote: : Oh, I get it, : it's cl that's creating the program that outputs the lines that contains the : \r\n. This means that your "wb" would cause the cl created program t

Fwd: Guess what...

2000-11-30 Thread Earnie Boyd
, we will soon have one :) -8- We can have 2.50 in September, or at worst October if autothings go wrong. Hey Akim, did you mean 2001 for this? ;^) LOL, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http

Re: OBJ and EXE and cross-compilation (Was: AC_OBJEXT again)

2000-12-12 Thread Earnie Boyd
for the --host argument, otherwise the configure script would not think it was a cross compile. Is this even a cross compile? Well sort of. (ugh) You would need to CC='gcc -mno-cygwin' configure --host=i386-mingw32msvc Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http

Re: OBJ and EXE and cross-compilation (Was: AC_OBJEXT again)

2000-12-12 Thread Earnie Boyd
--- Mo DeJong [EMAIL PROTECTED] wrote: On Tue, 12 Dec 2000, Earnie Boyd wrote: --- Mo DeJong [EMAIL PROTECTED] wrote: But would this still work if I wanted to compile with the mingw compiler under Cygwin? The mingw native compiler is also named gcc, so what --host triple

Re: OBJ and EXE and cross-compilation (Was: AC_OBJEXT again)

2000-12-12 Thread Earnie Boyd
config.guess should do it. Can't it tell cygwin from mingw? With an appropriate uname, yes. Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http://gw32.freeyellow.com/ --- --- Minimalist GNU for Windows

Re: AC_OBJEXT again

2000-12-13 Thread Earnie Boyd
doing good. -o conftest will produce conftest.exe assuming we're linking. Cheers, = Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Windows http://gw32.freeyellow.com/ --- --- Minimalist GNU for Windows http

Re: OBJ and EXE and cross-compilation (Was: AC_OBJEXT again)

2000-12-13 Thread Earnie Boyd
--- Alexandre Oliva [EMAIL PROTECTED] wrote: On Dec 12, 2000, Earnie Boyd [EMAIL PROTECTED] wrote: --- Alexandre Oliva [EMAIL PROTECTED] wrote: On Dec 12, 2000, Mo DeJong [EMAIL PROTECTED] wrote: I guess the question is, should we try to compile something and the set the $host

Re: AC_CYGWIN etc. (Was: AC_OBJEXT again)

2000-12-13 Thread Earnie Boyd
ACYGWIN instead. Cheers, = 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: AC_CYGWIN etc. (Was: AC_OBJEXT again)

2000-12-14 Thread Earnie Boyd
exe for -o foo. If you `gcc -o run. tst.c' no extention is created as gcc thinks there already is one. Mo, you should check to make sure that you didn't do this. Cheers, ===== Earnie Boyd mailto:[EMAIL PROTECTED] --- http://earniesystems.safeshopper.com --- --- Cygwin: POSIX on Wi

Re: Problem detecting Cygwin/Mingw compiler

2001-01-04 Thread Earnie Boyd
'gcc -mno-cygwin' ../configure -host=mingw32 When using Cygwin's gcc to compile for MinGW then you are in fact cross compiling. Cheers, Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Problem detecting Cygwin/Mingw compiler

2001-01-05 Thread Earnie Boyd
for Cygwin. Cheers, Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Moving to Automake 1.4a

2001-01-12 Thread Earnie Boyd
ble to get the automake source from a CVS server even if I had a cvs client. If you do this, please package the source for the version of automake that you use with the autoconf source. Cheers, Earnie. _ Do You Yahoo!? Get your free @yahoo.com addre

Re: Moving to Automake 1.4a

2001-01-12 Thread Earnie Boyd
Akim Demaille wrote: "Earnie" == Earnie Boyd [EMAIL PROTECTED] writes: Earnie IMO, it would be undesirable to have autoconf use a version of Earnie automake that isn't a released version. It seems to me that there is still a chance to have an Automake release soon.

Re: Moving to Automake 1.4a

2001-01-12 Thread Earnie Boyd
Pavel Roskin wrote: Hello, Earnie! IMO, it would be undesirable to have autoconf use a version of automake that isn't a released version. When I was learning automake, autoconf, etc. I went about it by actually using the tools on themselves. Not having a released version

Re: Change request: file names

2001-01-18 Thread Earnie Boyd
to make your life easier. Alexandre How about using .m4in instead? Gross. Not only gross, it wouldn't work on DOS anyway. DOS has a 8.3 filename limit. I think these kind of limitations will have to resort to cross building to the non-compliant systems. Leave it alone. Chee

autoconf-2.49c, libtool-1.3.5 and Cygwin

2001-01-29 Thread Earnie Boyd
error while sourcing /tmp/ah309/trace.sh The script creates traces.sh and executes trace.sh. Cheers, Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: autoconf-2.49c, libtool-1.3.5 and Cygwin

2001-01-29 Thread Earnie Boyd
r. I would have expected the same problems from configure.in and indeed traces.sh does have the errors from configure.in as you say. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: GNATS needs some work (autoconf/59)

2001-01-31 Thread Earnie Boyd
nd whip up a patch Tim if it works. Could you describe precisely how it works? In fact, may I ask you to complete the documentation of PATH in autoconf.texi to explain how it works on Cygwin and DJGPP? Maybe Earnie would have good hints to give. Because I seem to have understood we kind

Re: hardcoded prefix in aclocal

2001-02-01 Thread Earnie Boyd
is automake is installed in /install/automake gettext is installed in /install/gettext libtool is installed in /install/libtool You want to configure --prefix=/usr/local make make install prefix=/install/automake Earnie. ___

Re: autoconf 2.49c fails if '.' is in PATH

2001-02-19 Thread Earnie Boyd
programs behaving like this? Is this behavior due to the hash cache? What if you rehash or hash -r? Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Detecting the need for -mwin32 in newer cygwin gcc's

2001-03-08 Thread Earnie Boyd
t Autoconf can't determine my needs it can only determine what I have. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: Rename atomicity

2001-03-08 Thread Earnie Boyd
in the same directory or across directories. The one caveat is that the MoveFile function will fail on directory moves when the destination is on a different volume. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http

Re: updated win32 macro

2001-03-15 Thread Earnie Boyd
about the what ifs. Earnie. edward wrote: it's a language feature. it attempts to answer the following question: how do i get a windows C-based [.c, .cc, .m] file to an object file? it's just syntactic sugar for -mwin32, which itself is syntactic sugar for setting some defines, some

Re: updated win32 macro

2001-03-15 Thread Earnie Boyd
supporting a -mwin32 switch. This issue is code based and should be based on a HAVE_WIN32_THREADS switch. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: win32 compiler test V3a

2001-03-15 Thread Earnie Boyd
t must have been a side effect of one of the other syntax errors. I just retired and it works now. Well hopefully retiring isn't what made it work. I want to be lazy when I retire. ;^) LOL, Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: autoconf auxdir

2001-04-06 Thread Earnie Boyd
or SUPport which I obtained from the definition of auxiliary. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: autoconf auxdir

2001-04-10 Thread Earnie Boyd
Alexandre Oliva wrote: On Apr 10, 2001, Akim Demaille [EMAIL PROTECTED] wrote: PS/ I would like to know why sometimes we end up with ``Earnie Boyd [EMAIL PROTECTED]'' in the CC. That's from Earnie's Reply-To: Right. I set the Reply-To that way to help the blind not add my email

Re: Release next week?

2001-04-10 Thread Earnie Boyd
betas. And no one use them. Let's face it, the only means to have feedback on Autoconf is to release it and be ready to release another one within a month. Release early, release often. I agree. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: autoconf auxdir

2001-04-10 Thread Earnie Boyd
G_CONF_DIR... "CONFIG_CONFIG" seems a bit strange. And the original point was also o be consistent with *_SRCDIR (no _ before DIR). So AC_CONFIG_CFGDIR? I like better AC_CONFIG_SUPDIR, as suggested by Earnie. The ambiguity is perfect :-)

Re: autoconf auxdir

2001-04-12 Thread Earnie Boyd
the SUPDIR name based on the denotation of auxiliary so that it would fit the original intention of use. IMNSHO, I believe that CONFIGDIR or CFGDIR is changing the intended use. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address

Re: autoconf auxdir

2001-04-12 Thread Earnie Boyd
Akim Demaille wrote: "Earnie" == Earnie Boyd [EMAIL PROTECTED] writes: Earnie Alexandre Oliva wrote: On Apr 12, 2001, Akim Demaille [EMAIL PROTECTED] wrote: aux means nothing and is not portable. auxdir is puke puke puke Agreed. I still like AC_CONFIG_SUPDIR b

Re: cygwin libtool breakage

2001-06-04 Thread Earnie Boyd
might give the google.com a try with this http://www.google.com/search?hl=enlr=safe=offq=AC_EXEEXT+2001+site%3Agnu.org -- Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: gcc -mno-cygwin and autoconf 2.50

2001-06-05 Thread Earnie Boyd
Teun Burgers wrote: Tim Van Holder wrote: Of course, if you need to specify CC anyway, you might as well specify your host system too: ./configure CC='gcc -mno-cygwin' --host=i386-pc-mingw32 After all, you're basically cross-compiling, aren't you. Earnie Boyd wrote

Default values for infodir and mandir [WAS: Re: [autoconf] doc dirs?]

2001-06-20 Thread Earnie Boyd
switches for infodir and mandir in place for backward compatibility but shouldn't there values default to ['$(docdir)/info'] and ['$(docdir)/man'] instead. IIRC this is what the FHS recommends. -- Earnie. _ Do You Yahoo!? Get your free

Re: times ?!

2001-08-14 Thread Earnie Boyd
. I'm not sure if other shells have similar commands. Maybe autotest should test for this: at_times=: times /dev/null 21 times=at_times ... $at_times at-times Shouldn't that be time and not times for portability? Earnie. _ Do You

Re: Portability of find(1)

2001-09-18 Thread Earnie Boyd
... {} ... and not find ... foo: \{\} ... At least on DU. find . -name \*foo -exec echo \{\} {} \; gives \{\} somefile-foo on Cygwin and \{\} {} on HP-UX 10.20 and HP-UX 11. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http

Re: configure busybox

2001-09-20 Thread Earnie Boyd
you're worried about portability then let me warn against using file names that differ only in case. This won't work well with file systems that are case insensitive. Earnie. _ Do You Yahoo!? Get your free @yahoo.com address at http

Re: Autoconf, DOS and NT (was Ebcdic rule)

2001-10-04 Thread Earnie Boyd
portability, or after such a test succeeds), then that is a portability bug that should get fixed. And when I was getting to like Autoconf. Now I'll have to fork it to get my needs for portability met. Way to go, Paul. ;^D Earnie. _ Do

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

2001-10-22 Thread Earnie Boyd
by autoconf supplying it's own Shell executable? Let's see...uhm...autosh sounds like a good name. It wouldn't need to be interactive friendly so perhaps a starting point would be the old Linux ash shell. Earnie. _ Do You Yahoo!? Get your

  1   2   >