Re: problem --enable-shared and --enable-static together

2009-12-06 Thread Andreas Otto
Am Samstag 05 Dezember 2009 13:33:06 schrieb Ralf Wildenhues: Hello Andreas, besides answers already given: * Andreas Otto wrote on Fri, Dec 04, 2009 at 09:41:16AM CET: as you see both *lo and *.o are created. the *.o are useless and just extend the compiling time Q: what can I do

Re: problem --enable-shared and --enable-static together

2009-12-06 Thread Andreas Otto
Am Samstag 05 Dezember 2009 13:33:06 schrieb Ralf Wildenhues: Hello Andreas, besides answers already given: * Andreas Otto wrote on Fri, Dec 04, 2009 at 09:41:16AM CET: as you see both *lo and *.o are created. the *.o are useless and just extend the compiling time Q: what can I do

problem --enable-shared and --enable-static together

2009-12-04 Thread Andreas Otto
/*.lo endif brain_LDADD = -lz -lbz2 -lrt -lm -lc $(LIBMSQUE) $(BRAIN_HOME)/lib/libtokyocabinet.a I need a HELPER called HAS_STATIC defined in configure.in with AM_CONDITIONAL([HAS_STATIC], [test $enable_static = yes]) Q: Is this OK or is something better is possible ? mfg Andreas Otto

Re: OS independent build results

2009-11-01 Thread Andreas Otto
Hi, this is my solution: this add a new target .vpath_hook to the build environment and this target copy the files/directories listed in VPATH_FILES from the src into the build environment. the copy is necessary because tools like JAR expect the files in the build directory.

OS independent build results

2009-10-25 Thread Andreas Otto
is not available mfg Andreas Otto

builddir question

2009-10-23 Thread Andreas Otto
Hi, is a builddir other than . possible ? mfg aotto1968

Re: integration of perl with automake

2009-10-21 Thread Andreas Otto
Am Dienstag 20 Oktober 2009 21:07:35 schrieb Ralf Wildenhues: * Andreas Otto wrote on Tue, Oct 20, 2009 at 08:53:14AM CEST: Am Dienstag 20 Oktober 2009 08:27:01 schrieb Ralf Wildenhues: distclean-local: test -f Net-Msgque/.distclean rm -fr Net-Msgque Won't that also

Re: integration of perl with automake

2009-10-20 Thread Andreas Otto
Am Dienstag 20 Oktober 2009 08:27:01 schrieb Ralf Wildenhues: Hello Andreas, thanks for sharing your solution. A couple of comments: * Andreas Otto wrote on Mon, Oct 19, 2009 at 12:20:26PM CEST: if USE_PERL PERLMAKEFILE = Net-Msgque/Makefile PERLDEPEND= Net-Msgque/Makefile.PL

Re: integration of perl with automake

2009-10-19 Thread Andreas Otto
/Msgque.pm \ Net-Msgque/Makefile.PL \ Net-Msgque/README \ Net-Msgque/t/Net-Msgque.t \ Net-Msgque/Changes \ Net-Msgque/MANIFEST \ Net-Msgque/typemap mfg Andreas Otto

integration of perl with automake

2009-10-15 Thread Andreas Otto
Hi, to build a perl extension it's best to use the perl build-system based on perl Makefile.PL the command create a Makefile in the same directory of Makefile.PL self and in the toplefel-position perlmsgque/Makefile. I can use this makefile in an automake build environment

I need a hint to integrate a php-extension build into an existing automake

2009-10-01 Thread Andreas Otto
Hi, I want to add a php extension into an allready existing project creating various extensions to other languages as well I use automake/autoconf for build top-level project. My new php extension has the name phpmsgque build in the subdirectory of the same name. The sudirectory is

binary distribution build with automake

2009-05-08 Thread Andreas Otto
identification string 3. able to use --prefix as system-directory !without! installation requirement mfg Andreas Otto

Re: Example on JNI compilation

2009-04-20 Thread Andreas Otto
and the acinclude.m4 file mfg Andreas Otto

problem to create a noinst_LTLIBRARIES shared libraray

2009-04-03 Thread Andreas Otto
Hi, I currently writing a java JNI extension used only for local check and this library should *not* be installed. The problem is that I need a shared library for dlopen using java file: TestMain.java === public abstract class TestMain