Re: trouble searching for libs

2004-09-06 Thread Andre Caldas
n what you concluded. Maybe the implementation of AC_CHECK_LIB changed since then... Any way, good luck. Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: autoconf in pure MSVC environment?

2004-09-06 Thread Andre Caldas
ns that can be compiled on windows. That's not their fault: microsoft makes no effort to make this easier. Why developers should bother? Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: autoconf in pure MSVC environment?

2004-09-07 Thread Andre Caldas
(Microsoft could do it; perhaps you could ask them for help. :-) He doesn't want to discuss OS... (he said ;-)) Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: autoconf in pure MSVC environment?

2004-09-07 Thread Andre Caldas
So, my goal here is a tool to aid in porting UNIX applications to Windows. All you need is to port the libraries! Not the applications. Autoconf has nothing to do with that. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinf

Re: autoconf in pure MSVC environment?

2004-09-07 Thread Andre Caldas
to say... (wait, you do: "I want a gui for the configure script!") Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: autoconf in pure MSVC environment?

2004-09-07 Thread Andre Caldas
Please explain to me carefully why I should put a lot of effort into generating undocumented .sln files for a platform that I do not use, when there is nobody paying me to do so? You shouldn't, as you don't care about the problem. Some of us are more cross-platform oriented than you are, so we sh

Re: autoconf in pure MSVC environment?

2004-09-07 Thread Andre Caldas
Andre Caldas wrote: Yes, compiling small test probes is valid on Windows. The programming tools aren't an alien species, they just have GUI front ends and different different directory names and compiler command flags and so forth. Cosmetic differences, at least at the level of simple

Re: building a smiple hello_world

2004-09-09 Thread Andre Caldas
l_mono/automake.html#Alternative Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: Use of config.h: summary of responses.

2004-09-13 Thread Andre Caldas
should or not include a #ifdef HAVECONFIG_H in my installed headers Writing this e-mail I just realized that if there is a standard way to create and install libexample.m4 then most of the problems can be solved. Does this standard way exists? Thank you, Andre Caldas. __

Re: running config.status in subdirs

2004-12-15 Thread Andre Caldas
e abs_builddir. (I never tried it, though) > I'm not sure whether autoconf can already do this - I do > not think so. I think it already does what you want: - When I change the configure.ac "autoreconf is called and configure is called" - When I change some Makefile.am, the Makef

Re: AC_SUBST_FILE

2004-12-15 Thread Andre Caldas
I really love the feature to replace a autoconf variable with content of a file, ie. using AC_SUBST_FILE. But this feature would be of even greater value if variable substitution would take place. What variable would you want to substitute? With what value?

Re: lib_LIBRARIES must be set with `=' before using `+='

2005-02-23 Thread Andre Caldas
e billions of > other variables I have to set. You can always make a brand new variable: defaultlibdir = $(libdir) defaultlib_LIBRARIES = . What bothers me is "CLEANFILES". Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: lib_LIBRARIES must be set with `=' before using `+='

2005-02-24 Thread Andre Caldas
ith a > default value != "" will not work as expected, if I got > the code correctly. Are there any other problems to be > expected by this patch? ("make check" reported just > the pluseq7.test.) The problem here is whether not beei

Re: autoconf (GNU Autoconf) 2.57

2005-02-28 Thread Andre Caldas
Siddhartha Goel wrote: Why am I getting the following when I run autoheader? autoheader: error: AC_CONFIG_HEADERS not found in configure.ac What about trying to use the macro AC_CONFIG_HEADERS in your configure.ac? ___ Autoconf mailing list Autoconf@gnu.o

Re: An autoconf tutorial.

2005-05-25 Thread Andre Caldas
vergencies, it would be nice to have a comment about it, too. The important thing to learn about autotools, is not how to get the job done. But how to do it in a clean way. Please, keep doing the good work. And be open to criticism. This way, you will not only help lots of people, but probably the one who will learn most is going to be you. Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Autoconf and optional arguments for the configure script

2005-06-24 Thread Andre Caldas
eems to me that the "Autoconf Way [tm]" is using AC_ARG_WITH and AC_ARG_ENABLE. Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Autoconf and optional arguments for the configure script

2005-06-28 Thread Andre Caldas
the resoultution is not give like this to config.h #define XRES 320 #define YRES 240 It is given exaclty like this! but like this #define RES320X240 or #define RES640X480 No, because you will parse the input before calling AC_DEFINE. Good luck, Andre Caldas

Re: Need help with autoconf configure script

2005-07-13 Thread Andre Caldas
Hello! +configure:4995: conftest.c +../cgdb/configure: line 1: conftest.c: command not found Is it trying to execute conftest.c? Probably the environment variable is not set (or unset). What is line 1 of ../cgdb/configure? Andre Caldas

Behaviour differs at configure time

2005-07-19 Thread Andre Caldas
all -pedantic-errors -Wno-long-long -Woverloaded-virtual' Thank you, Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: How to let autoconf NOT include ($CFLAGS) in LINK?

2005-07-21 Thread Andre Caldas
Hello! AC_SUBST(CFLAGS, "-g -O -Wall -ansi") Sorry, I don't really know about your problem, but the FLAGS you want to impose on your users are their choice, not yours. Andre Caldas. ___ Autoconf mailing list Autoco

Re: checking for specific versions of operating system

2005-08-23 Thread Andre Caldas
ause trouble to your users. Of course, 'what to test for?' is always a dilema. (and 'how' is another one) Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Need initial Help

2005-09-07 Thread Andre Caldas
you type make at the 'build' top directory, the Makefiles will be called recursively. 'make all' will cause: make -C src/ all make -C doc/ all The variables 'srcdir', 'top_srcdir', 'builddir', etc are defined aut

Re: debug builds with NO optimizations

2006-02-13 Thread Andre Caldas
e. I would not advise anyone to edit a generated file. I myself like to use ./config.status --version to check for the arguments passed to it and re-run the configure script. By your method, I would have to remember what to change in "config.status" every

Re: debug builds with NO optimizations

2006-02-13 Thread Andre Caldas
.../configure CFLAGS=-g Just out of curiosity, is this different than 'CFLAGS=-g ./configure ...'? I do this all the time and wonder if your way is somehow better. "./config.status --version" will not document it. The recomended way is to use ./configure CFL

Re: debug builds with NO optimizations

2006-02-13 Thread Andre Caldas
igure" is easier to tell someone in an email and expect it to work. But this use is discouraged. Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: debug builds with NO optimizations

2006-02-13 Thread Andre Caldas
Probably you could save lots of time if you had two different build trees!! Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: debug builds with NO optimizations

2006-02-13 Thread Andre Caldas
et about any garbage "CFLAGS" that maybe there when I start doing other things 30 minutes latter. Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: debug builds with NO optimizations

2006-02-13 Thread Andre Caldas
LAGS'. But if you: ./child/config.status --version then you will. Andre Caldas. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Libtool convenience library dependence check

2004-08-18 Thread Andre Caldas
mething wrong? Is this the way convenience libraries are supposed to be used? Thank you, Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: Libtool convenience library dependence check

2004-08-22 Thread Andre Caldas
on convenience libraries? (this is the same as the above question in a different format) Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: Libtool convenience library dependence check

2004-08-22 Thread Andre Caldas
ckage) was edited! Can I call libtool a "obscure linker"? Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

Re: Libtool convenience library dependence check

2004-08-22 Thread Andre Caldas
library in "lib1/" is unconditionaly re-compiled. But... * If I do: "cd lib1 && make install" the library is _conditionaly_ compiled (that is, only the modified files are re-compiled). Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf

[solved]: Libtool convenience library dependence check

2004-08-23 Thread Andre Caldas
k you very much for your time. And sorry for not providing enough information. Andre Caldas. ___ Autoconf mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/autoconf