Re: automake

2005-11-25 Thread Andre Caldas
. So what the compiler did to me, is that, it was trying to open the winsock.h header instead of socket.h. Do you do this?... #ifdef HAVE_CONFIG_H # include config.h #endif Andre Caldas.

Re: automake

2005-11-25 Thread Andre Caldas
This is what I call a complete answer! Forget mine. :-) Andre Caldas.

Re: Migriting from qmake to autotools

2005-03-07 Thread Andre Caldas
In store/Makefile.am noinst_LTLIBRAIRES = libstore.la libstore_la_SOURCES = animation.cpp brush.cpp camera.cpp I hope you find this useful :-) Andre Caldas.

Re: Disabling optimization

2004-11-17 Thread Andre Caldas
like that (not sure): execname_SOURCES = cannot_opt.cpp cannot_opt.h can_opt.cpp can_opt.h cannot_opt_o_CXXFLAGS = -O0 Andre Caldas.

Re: Creating some directory at install time.

2004-11-16 Thread Andre Caldas
Rich Lucas Brasilino wrote: I'm wondering how can I create '$(localstatedir)/lib/$(PACKAGE)' directory at install time. Rich You could use an install-*-local target in your Makefile.am. I am not sure if mine is the proper way, but I just do: tmpdir = $(datadir)/temp dist_tmp_DATA = Andre

Re: preventing re-running of texi2dvi?

2004-10-20 Thread Andre Caldas
= ${info_TEXINFOS:.texi=.ps} dist_pdf_docs= ${info_TEXINFOS:.texi=.pdf} By the way, it seems that it is important to try to make distcheck your package. Andre Caldas.

Re: preventing re-running of texi2dvi?

2004-10-19 Thread Andre Caldas
? ;-) Andre Caldas.