Re: Why does one shared library cause the project to fail: Warning: Linking the executable x against the loadable module

2018-04-21 Thread Vincent Torri
hello try this : in your Makefile.am, avoid -module for each built application or library which is not opened with dlopen (line 43 and 45, 57 and 59) hth Vincent Torri On Sun, Apr 22, 2018 at 1:39 AM, Yuri wrote: > On 03/30/18 22:52, Yuri wrote: >> >> This project (calf studio)

Re: test programs in C and C++

2018-03-11 Thread Vincent Torri
der files (it works > fine when the source tree and the build tree is the same). The relevant > instructions in /e-antic/test/Makefile.am are > > AM_CPPFLAGS = -I../.. > LDADD = ../../libeantic.la if ../../ is the top level directory, try : AM_CPPFLAGS = -I$(top_srcdir) LDADD = $(top

Re: Part 2: Add Cleanfiles for User Defined Special Sources [Re: How to add new Makefile-Rules through Configure?]

2015-03-10 Thread Vincent Torri
makefile, where the append-trick puts a rule in a specific makefile. > Sometime the first is better, sometimes the latter. > > > Both hacks do the trick, but both are still a hack, so again: Is there a > better way? > > Any comments on what is a proper solution? > > Requirements

Re: make dist fails for EXTRA_DIST elements

2015-03-09 Thread Vincent Torri
Hey On Mon, Mar 9, 2015 at 11:23 PM, Andy Falanga (afalanga) wrote: > Hi, > > The project I'm working on builds in both Windows and Linux. As you may > imagine, there are some conditional compilations and, in fact, sometimes full > files are left out. There are also some header files, and a p

Re: How to use ld options correctly for --whole-archive in automake and libtool

2015-03-05 Thread Vincent Torri
On Thu, Mar 5, 2015 at 8:04 PM, Andy Falanga (afalanga) wrote: >> -Original Message- >> From: Vincent Torri [mailto:vincent.to...@gmail.com] >> Sent: Thursday, March 05, 2015 10:44 AM >> To: Andy Falanga (afalanga) >> Cc: Thomas Jahns; automake@gnu.org

Re: How to use ld options correctly for --whole-archive in automake and libtool

2015-03-05 Thread Vincent Torri
27;t have this many uses of "-Wl," though so that is > quite interesting. > >> But what exactly is the problem with using e.g. ../Shared/HwMgmt/ >> libhwmgmt.la? That sata.so will then require libhwmgmt.so? libtool >> should be able to set sata.so's rpath su

Re: passing flags to C compiler but not to C++ compiler

2013-07-29 Thread Vincent Torri
On Mon, Jul 29, 2013 at 5:17 PM, Robert Boehne wrote: > On 07/27/13 16:26, Vincent Torri wrote: >> >> On Sat, Jul 27, 2013 at 10:24 PM, Robert Boehne >> wrote: >>> >>> >>> On 07/27/13 00:32, Vincent Torri wrote: >>>> >>>> he

passing flags to C compiler but not to C++ compiler

2013-07-27 Thread Vincent Torri
t' is valid for C/ObjC but not for C++ How can I remove this warning when compiling c++ files ? thank you Vincent Torri

custom silent rule not working in MSYS

2013-03-21 Thread Vincent Torri
erbose)$(sed_process) Note that AM_V_GEN is working Am I doing something wrong ? thank you Vincent Torri

non recursive make and BUILT_SOURCES: circular dependency error

2013-02-13 Thread Vincent Torri
RCES. So i'm really completely lost... any help is really welcome :-) thank you Vincent Torri

Re: bug#13578: [IMPORTANT] A new versioning scheme for automake releases, and a new branching scheme for the Git repository

2013-02-12 Thread Vincent Torri
re trying to be clever and invent > a new versioining scheme incompatible with every other existing one. > > No, if we want to change the versioning scheme for beta and rc > versions, we want the new scheme to be already used and well known. in our project, we append _beta and _rc (or _rc1, _rc2 etc...) for beta and release candidate. It's sufficiently explicit. For example, 1.14.0_beta Vincent Torri

subdir-objects and generated file names

2013-02-11 Thread Vincent Torri
mar.y (both of them are in src/lib/css) is it possible to keep the name grammar.h and not src_lib_css_libecss_la-ecss_grammar.h while using the subdir-objects option ? thank you Vincent Torri

Fwd: looking for a good example of non-recursive Make using project

2012-11-19 Thread Vincent Torri
and reply to the list too... -- Forwarded message -- From: Vincent Torri Date: Sat, Nov 17, 2012 at 1:53 PM Subject: Re: looking for a good example of non-recursive Make using project To: Václav Zeman On Sat, Nov 17, 2012 at 1:35 PM, Václav Zeman wrote: > On 11/17/2012 11

Re: looking for a good example of non-recursive Make using project

2012-11-17 Thread Vincent Torri
included and not managed by automake directly) Hth Vincent Torri

libtool libraries, dependencies and parallel builds

2012-11-01 Thread Vincent Torri
ependencies with parallel builds in my case ? thank you Vincent Torri

included Makefile file and relative path

2012-10-31 Thread Vincent Torri
Hey Is there a way to let included makefiles to use paths relatives to where they are? for example: in e/src/modules/Makefile.am i want to "include connman/Makefile.am" and i want to source files being searched in e/src/modules/connman and no in e/src/modules thank you Vincent Torri

Re: Module statically linked, and maintainer-clean rule

2012-10-28 Thread Vincent Torri
On Sun, Oct 28, 2012 at 11:57 AM, Stefano Lattarini wrote: > On 10/28/2012 11:34 AM, Vincent Torri wrote: >> Hey >> >> Our project build some modules as shared lib. We added the possibility >> to statically link them to the library with autoconf. We then defi

Module statically linked, and maintainer-clean rule

2012-10-28 Thread Vincent Torri
rc/lib/Makefile.am: if BUILD_STATIC mylib_la_SOURCES += ../module/foo.c endif but then same kind of error, with foo.Plo in src/module/.deps when the 2nd maintainer-clean rule is launched : that file does not exist anymore Does someone know what I have to do ? thank you Vincent Torri

source files with same name but in different directories

2012-10-27 Thread Vincent Torri
Hey mylib_SOURCES = foo/file.c bar/file.c there is an error because the names of the files are the same, even if they are in a different directory Except changing the names, is there a way to allow such case ? thank you Vincent Torri

using $(wildcard) in EXTRA_DIST

2012-09-18 Thread Vincent Torri
) what is the correct way to add all the files, without listing them all in EXTA_DIST ? thank you Vincent Torri

building conditionnaly without using AM_CONDITIONAL

2012-09-09 Thread Vincent Torri
that. So: make : does not build that part make bench : build that part (it's a benchmark prog) So i tried to set the 'all' rule to nothing in Makefile.am, it has no effect. Is there a way to do what I want ? thank you Vincent Torri

not running a make rule if distcheck is called

2012-08-19 Thread Vincent Torri
ally precise enough, imho) does someone know what i should do ? thank you Vincent Torri

Re: undefing HAVE_CONFIG_H

2012-07-29 Thread Vincent Torri
On Sun, Jul 29, 2012 at 5:20 PM, Vincent Torri wrote: > hey > > in a Makefile.am, is it possible to undefine HAVE_CONFIG_H (to remove > it from the flags passed to gcc in the command line) ? > forget, it's the gcc option -U. sorry for the noise Vincent Torri

undefing HAVE_CONFIG_H

2012-07-29 Thread Vincent Torri
hey in a Makefile.am, is it possible to undefine HAVE_CONFIG_H (to remove it from the flags passed to gcc in the command line) ? thanks Vincent Torri

with MSYS (Windows), the hook is not executed after the main rule's work is done

2012-07-27 Thread Vincent Torri
the behavior. I'm not sure that my question is for automake or libtool ML. If necessary, I'll transfert the mail to the libtool ML. versions I have: automake 1.11.1 libtool 2.4 Does someone have an idea of the problem ? thank you Vincent Torri

compiling different files with different C compilers

2012-06-07 Thread Vincent Torri
? AC_PROG_CC ? AC_PROG_CC_C99 ? thank you Vincent Torri

problem with BUILT_SOURCES and make distcheck

2011-11-12 Thread Vincent Torri
iling. C) Now I do a 'make clean', then 'make distcheck, 1) cmapdump is compiled 2) cmap_cns.h is generated correctly 3) mupdf is compiled successfully. So why do I have to clean first before distcheck ? Thank you Vincent Torri

absolute or relative path for source files

2011-05-15 Thread Vincent Torri
ES = ../path2/file.c ? thank you Vincent Torri

Re: link dependency failed with make -j*

2011-03-28 Thread Vincent Torri
On Mon, Mar 28, 2011 at 10:11 AM, Ralf Wildenhues wrote: > Hello Vincent, > > * Vincent Torri wrote on Mon, Mar 28, 2011 at 06:40:51AM CEST: > > On Mon, Mar 28, 2011 at 1:10 AM, Bob Friesenhahn < > > bfrie...@simple.dallas.tx.us> wrote: > > > On Sun, 27 Mar

Re: link dependency failed with make -j*

2011-03-27 Thread Vincent Torri
On Mon, Mar 28, 2011 at 1:10 AM, Bob Friesenhahn < bfrie...@simple.dallas.tx.us> wrote: > On Sun, 27 Mar 2011, Vincent Torri wrote: > > Hey, >> >> I have a library that depends on several libraries, these latter ones >> must >> be buil

link dependency failed with make -j*

2011-03-27 Thread Vincent Torri
enable parallel compilation ? thank you Vincent Torri

Re: PKG_CHECK_MODULES on system without pkg-config installed?

2011-03-10 Thread Vincent Torri
On Thu, Mar 10, 2011 at 11:02 AM, Jef Driesen wrote: > > mi...@gnu.org wrote: > > Jef Driesen writes: > >> Isn't it easier to just check for the presence of the header file and/or > >> the library file, avoiding pkg-config entirely? > > > > Well, I'd prefer not to guess when possible, and not usi

Re: about what goes into a distribution file

2011-02-17 Thread Vincent Torri
forget it, i should think more before sending mails Vincent Torri On Fri, Feb 18, 2011 at 8:33 AM, Vincent Torri wrote: > Hey, > > from the automake documentation, all the files read by AC_CONFIG_FILES are > added in the distribution. But why aren't the generated files not in t

about what goes into a distribution file

2011-02-17 Thread Vincent Torri
Hey, from the automake documentation, all the files read by AC_CONFIG_FILES are added in the distribution. But why aren't the generated files not in the tarball (the .pc.in are in but not the .pc for example) ? thank you Vincent Torri

Re: support for a program that compile files (like yacc or lex support)

2011-02-13 Thread Vincent Torri
ping 3 :) On Mon, Jan 24, 2011 at 10:09 AM, Vincent Torri wrote: > > ping2 :) > > Vincent Torri > > On Tue, Jan 4, 2011 at 8:24 AM, Vincent Torri wrote: > >> >> Hey, >> >> Wasn't what i want (see below) clear enough ? >> >> Vincent

creating a report that displays what has been installed

2011-02-03 Thread Vincent Torri
would be to add in a file some output strings (using a hook) each time something is installed, and in the top-level Makefile.am, displaying that report file. Is there a smarter way to do this ? thank you Vincent Torri

Re: support for a program that compile files (like yacc or lex support)

2011-01-24 Thread Vincent Torri
ping2 :) Vincent Torri On Tue, Jan 4, 2011 at 8:24 AM, Vincent Torri wrote: > > Hey, > > Wasn't what i want (see below) clear enough ? > > Vincent Torri > > First, it seems that i have deleted your answers while deleting other >> files. So I answer to my ma

Re: support for a program that compile files (like yacc or lex support)

2011-01-03 Thread Vincent Torri
Hey, Wasn't what i want (see below) clear enough ? Vincent Torri First, it seems that i have deleted your answers while deleting other files. So I answer to my mail without your comments. Sorry for the inconvenience (the archive will not display this mail as an answer to your mail) O

Re: support for a program that compile files (like yacc or lex support)

2010-12-20 Thread Vincent Torri
Hey, First, it seems that i have deleted your answers while deleting other files. So I answer to my mail without your comments. Sorry for the inconvenience (the archive will not display this mail as an answer to your mail) On Mon, 20 Dec 2010, Vincent Torri wrote: * Vincent Torri wrote

support for a program that compile files (like yacc or lex support)

2010-12-18 Thread Vincent Torri
, i'm completely lost when I look at yacc.am (for example). 1) Is it possible to add such support ? 2) If yes, can someone guide me in order to add that support ? thank you Vincent Torri

Re: on Windows, BUILT_SOURCES does not append .exe

2010-11-22 Thread Vincent Torri
On Mon, 22 Nov 2010, Ralf Wildenhues wrote: * Dave Hart wrote on Mon, Nov 22, 2010 at 12:34:47AM CET: On Sun, Nov 21, 2010 at 22:44 UTC, Vincent Torri wrote: On Sun, 21 Nov 2010, Ralf Wildenhues wrote: * Vincent Torri wrote on Sun, Nov 21, 2010 at 11:14:23PM CET: If I don'

Re: on Windows, BUILT_SOURCES does not append .exe

2010-11-21 Thread Vincent Torri
On Sun, 21 Nov 2010, Ralf Wildenhues wrote: * Vincent Torri wrote on Sun, Nov 21, 2010 at 11:14:23PM CET: noinst_PROGRAMS = cmapdump cmapdump_SOURCES = mupdf-0.7/mupdf/cmapdump.c noinst_LTLIBRARIES = libfitz.la libdraw.la libcmaps.la libfonts.la libmupdf.la cmap_tounicode_files = \ mupdf

Re: on Windows, BUILT_SOURCES does not append .exe

2010-11-21 Thread Vincent Torri
On Sun, 21 Nov 2010, Ralf Wildenhues wrote: Hello Vincent, * Vincent Torri wrote on Sun, Nov 21, 2010 at 10:51:53PM CET: noinst_PROGRAMS = cmapdump fontdump BUILT_SOURCES = cmapdump fontdump With MSYS, noinst_PROGRAMS is set to cmapdump$(EXEEXT) fontdump$(EXEEXT) but BUILT_SOURCES is set

on Windows, BUILT_SOURCES does not append .exe

2010-11-21 Thread Vincent Torri
variables ? Vincent Torri

Re: adding conditionally a c++ file implies static linking with g++

2010-11-19 Thread Vincent Torri
Hey If the question at the bottom is related to libtool and not automake, tell me and I'll forward the mail to the libtool ML. * Vincent Torri wrote on Fri, Nov 05, 2010 at 04:56:55PM CET: foo_SOURCES = bar1.c if MY_COND foo_SOURCES += bar2.cpp else foo_SOURCES += bar2.c endif One

Re: adding conditionally a c++ file implies static linking with g++

2010-11-07 Thread Vincent Torri
On Sun, 7 Nov 2010, Ralf Wildenhues wrote: Hi Vincent, * Vincent Torri wrote on Fri, Nov 05, 2010 at 04:56:55PM CET: foo_SOURCES = bar1.c if MY_COND foo_SOURCES += bar2.cpp else foo_SOURCES += bar2.c endif One told me on that ML that it is normal that automake uses g++ for linking, even

adding conditionally a c++ file implies static linking with g++

2010-11-05 Thread Vincent Torri
that ? thank you Vincent Torri

making pretty the "leaving directory" message

2010-08-27 Thread Vincent Torri
Hey, with the silent rule feature, the compilation / linking messages are prettier than before. Is there a plan to also make the messages "Entering directory ***" or "Leaving directory ***" prettier ? Vincent Torri

Re: removing a source file for the dist rule

2009-11-05 Thread Vincent Torri
On Fri, 6 Nov 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Fri, Nov 06, 2009 at 12:57:43AM CET: On Thu, 5 Nov 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Thu, Nov 05, 2009 at 11:38:52PM CET: base_sources = \ [...] if EET_AMALGAMATION libeet_la_SOURCES

Re: removing a source file for the dist rule

2009-11-05 Thread Vincent Torri
On Thu, 5 Nov 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Thu, Nov 05, 2009 at 11:38:52PM CET: still no luck :) I paste the code below. I did a make maintainer-clean, then ./autogen.sh, then make distcheck, to be sure that i restart from something clean. base_sources

Re: removing a source file for the dist rule

2009-11-05 Thread Vincent Torri
... else libeet_la_SOURCES = $(base_sources) endif still no luck :) I paste the code below. I did a make maintainer-clean, then ./autogen.sh, then make distcheck, to be sure that i restart from something clean. Vincent Torri base_sources = \ eet_lib.c \ eet_data.c \ eet_image.c \ ee

Re: removing a source file for the dist rule

2009-11-04 Thread Vincent Torri
On Wed, 4 Nov 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Wed, Nov 04, 2009 at 10:30:08PM CET: On Wed, 4 Nov 2009, Ralf Wildenhues wrote: You can simply add the generated file to nodist_libeet_la_SOURCES instead of to libeet_la_SOURCES. indeed. Actually, i used

Re: removing a source file for the dist rule

2009-11-04 Thread Vincent Torri
On Wed, 4 Nov 2009, Vincent Torri wrote: On Wed, 4 Nov 2009, Ralf Wildenhues wrote: You can simply add the generated file to nodist_libeet_la_SOURCES instead of to libeet_la_SOURCES. indeed. Actually, i used nodistcheck_libeet_la_SOURCES so that make distcheck passes too. Actually

Re: removing a source file for the dist rule

2009-11-04 Thread Vincent Torri
On Wed, 4 Nov 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Wed, Nov 04, 2009 at 08:05:34PM CET: On Wed, 4 Nov 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Wed, Nov 04, 2009 at 07:52:17PM CET: we have added an option to our configuration stuff that concatenates all the

Re: removing a source file for the dist rule

2009-11-04 Thread Vincent Torri
On Wed, 4 Nov 2009, Ralf Wildenhues wrote: Hello Vincent, * Vincent Torri wrote on Wed, Nov 04, 2009 at 07:52:17PM CET: we have added an option to our configuration stuff that concatenates all the source files, creates another from one from them, and compiles it. The problem is that this

removing a source file for the dist rule

2009-11-04 Thread Vincent Torri
ball, or what is the good way to specify the files to add (as DIST_SOURCES seems to not be to good way) thank you Vincent Torri

$(builddir) is empty with automake <= 1.9

2009-10-13 Thread Vincent Torri
On Wed, 14 Oct 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Wed, Oct 14, 2009 at 07:48:35AM CEST: $(builddir)/eina_amalgamation.c: $(sources_used) Makefile -rm -f $(builddir)/eina_amalgamation.c $(builddir) is always equal to '.'; also, non-GNU makes don'

(no subject)

2009-10-13 Thread Vincent Torri
.10 or 1.11, there is no problem. But with automake 1.9, builddir seems empty and the command: rm -f /eina_almagamation.c is executed. Does someone know why ? And what would be the correct thing to do ? thank you Vincent Torri

problem with make maintainer-clean while doing static linking

2009-07-08 Thread Vincent Torri
no, what should I do instead ? 2) If yes, what should I do to correct the problem above (more precisely, I want 'make distcheck' to succeed, but it's the same problem than 'make maintainer-clean') thank you Vincent Torri

Re: installation error with automake 1.11 but not with 1.10

2009-06-12 Thread Vincent Torri
alone, without also giving up the faster install. If we should just remove the trailing slash, it's not a big deal. Thank you Vincent Torri

Re: installation error with automake 1.11 but not with 1.10

2009-06-12 Thread Vincent Torri
On Fri, 12 Jun 2009, Ralf Wildenhues wrote: * Vincent Torri wrote on Fri, Jun 12, 2009 at 08:44:59AM CEST: * Vincent Torri wrote on Thu, Jun 11, 2009 at 11:30:14PM CEST: test -z "/tmp/lib/eina/mp/" || /bin/mkdir -p "/tmp/lib/eina/mp/" /bin/sh ../../../../libtool --m

Re: installation error with automake 1.11 but not with 1.10

2009-06-11 Thread Vincent Torri
Hey, * Vincent Torri wrote on Thu, Jun 11, 2009 at 11:30:14PM CEST: We are experiencing a strange error problem when doing 'make install' with automake 1.11. The error is: test -z "/tmp/lib/eina/mp/" || /bin/mkdir -p "/tmp/lib/eina/mp/" /bin/sh ../../../../lib

installation error with automake 1.11 but not with 1.10

2009-06-11 Thread Vincent Torri
stallation is failing only with automake 1.11 ? thank you Vincent Torri

Making output of make more beautiful

2009-06-10 Thread Vincent Torri
) ? (a bit like cmake or waf do) Thank you Vincent Torri

AC_PROG_OBJC and automake 1.9

2009-03-10 Thread Vincent Torri
with automake 1.10 (afaik). I don't know why the author use m4_ifdef to check the compiler. So I would like to know what is the best way to check for objective c compiler and what are the possible problems with respect to automake versions. thank you Vincent Torri

Re: correct windres use

2008-07-06 Thread Vincent Torri
Hey, Typo of mine, sorry about that. Probably you'll want a rule such as .rc.lo: $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --tag=RC --mode=compile $(RC) $(RCFLAGS) -c $< -o $@ Last question: when I use -c, windres hangs. When I do not use it, it seems to work. Is -c really nee

Re: correct windres use

2008-07-04 Thread Vincent Torri
On Fri, 4 Jul 2008, Ralf Wildenhues wrote: * Vincent Torri wrote on Fri, Jul 04, 2008 at 07:47:36AM CEST: 1) is it normal to have -Wl,evas_wince_gapi.o ? 2) there are 2 -Xlinker. is it useful to add the one in module_la_LDFLAGS ? AFAIK you don't need any of that. Just list the .rc

Re: correct windres use

2008-07-03 Thread Vincent Torri
Wl,evas_wince_gapi.o -o .libs/module.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/module.dll.a 1) is it normal to have -Wl,evas_wince_gapi.o ? 2) there are 2 -Xlinker. is it useful to add the one in module_la_LDFLAGS ? I can't test the result (it's a friend wh

correct windres use

2008-07-03 Thread Vincent Torri
CES = \ evas_wince_gapi.rc \ other_source_files But windres is not called and evas_wince_gapi.rc is ignored. What is the correct use of windres in a Makefile.am ? Note 1: i use libtool to create my dll Note 2: I actually cross compile to get a dll for Windows CE. thank you Vincent Torri

Re: order of execution of the install-exec-hook rule

2008-04-27 Thread Vincent Torri
Hey * Vincent Torri wrote on Tue, Apr 22, 2008 at 07:36:41PM CEST: make INSTALL_PROGRAM="/bin/sh /home/torri/tmp/cvsroot2/e17/libs/evas/install-sh -c -s" \ install_sh_PROGRAM="/bin/sh /home/torri/tmp/cvsroot2/e17/libs/evas/install-sh -c -s" I

Re: order of execution of the install-exec-hook rule

2008-04-22 Thread Vincent Torri
On Tue, 22 Apr 2008, Ralf Wildenhues wrote: Apologies for mangled accents. Thanks for the translations (though my French isn't that bad yet). If you want to save yourself work translating to others, do 'LC_ALL make ...'. * Vincent Torri wrote on Tue, Apr 22, 2008 at 07:36:41

Re: order of execution of the install-exec-hook rule

2008-04-22 Thread Vincent Torri
I would like to know if the install-exec-hook rule is called after install-strip. Yes. The install-exec-hook recipe is executed as part of install-exec-am. install-strip really calls 'make install' with some variable settings changed. If yes, I have a problem :) Why? I have the followi

order of execution of the install-exec-hook rule

2008-04-22 Thread Vincent Torri
Hey, i want to use install-exec-hook to move a file. I install it with install-strip. I would like to know if the install-exec-hook rule is called after install-strip. If yes, I have a problem :) thank you Vincent

how to add the creation of static lib for one lib only

2008-03-01 Thread Vincent Torri
the correct Makefile.am: libewl_la_LIBTOOLFLAGS = --tag=enable-static but i get the following message: libtool: ignoring unknown tag enable-static Do you know what I should put in that Makefile.am to create the static lib ? thank you Vincent Torri

Re: installing only shared lib

2008-02-12 Thread Vincent Torri
On Tue, 12 Feb 2008, Ralf Wildenhues wrote: * Thien-Thi Nguyen wrote on Tue, Feb 12, 2008 at 12:38:48PM CET: () Vincent Torri <[EMAIL PROTECTED]> () Tue, 12 Feb 2008 08:17:12 +0100 (CET) a library that I use installs shared libs that will be loaded with dlopen. That is, the stat

installing only shared lib

2008-02-12 Thread Vincent Torri
is installed ? thank you Vincent Torri

Re: no config.sub/guess copied

2005-11-15 Thread Vincent Torri
On Tue, 15 Nov 2005, Stepan Kasal wrote: > Hello, > > On Tue, Nov 15, 2005 at 08:07:01AM +, Vincent Torri wrote: > > AC_CANONICAL_TARGET > > AC_CONFIG_AUX_DIR([.]) > > AM_INIT_AUTOMAKE > > AC_CONFIG_AUX_DIR has to be called before AC_CANONICAL_TARGET. ok, t

no config.sub/guess copied

2005-11-14 Thread Vincent Torri
. Why are these files not copied ? I mention that I use the autotools in such a way that there is no Makefile.am. I have already my Makefile written. Of course, I would like to avoid adding these files to the distribution of my project. thank you Vincent Torri