error with shared lib on irix 6.5

2002-10-10 Thread Kremp, Johannes
hello, i'm on irix 6.5 and using automake (GNU automake) 1.6.1 autoconf (GNU Autoconf) 2.54 ltmain.sh (GNU libtool) 1.4.2 (1.922.2.53 2001/09/11 03:18:52) and the native cc and ld. i wrote a little example to build a static (no error) and a shared library (error). therefore i have to use '$(AM_CF

error with shared lib on irix 6.5

2002-10-09 Thread Kremp, Johannes
Title: error with shared lib on irix 6.5 hello, i'm on irix 6.5 and using automake (GNU automake) 1.6.1 autoconf (GNU Autoconf) 2.54 ltmain.sh (GNU libtool) 1.4.2 (1.922.2.53 2001/09/11 03:18:52) and the native cc and ld. i wrote a little example to build a static (no error) and a shared lib

RE: i want to use linker ld with libtool on hpux

2002-09-27 Thread Kremp, Johannes
> -Original Message- > From: Kremp, Johannes > Sent: Thursday, September 26, 2002 4:39 PM > To: 'Schleicher Ralph (LLI)' > Cc: [EMAIL PROTECTED] > Subject: AW: i want to use linker ld with libtool on hpux > > > > thanks for your help, > > i patched my

AW: i want to use linker ld with libtool on hpux

2002-09-26 Thread Kremp, Johannes
ic shared libraries with libtool? johannes > -Ursprüngliche Nachricht- > Von: Schleicher Ralph (LLI) > [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 24. September 2002 17:29 > An: Kremp, Johannes > Cc: [EMAIL PROTECTED] > Betreff: Re: i want to use linker ld with libt

i want to use linker ld with libtool on hpux

2002-09-24 Thread Kremp, Johannes
Title: i want to use linker ld with libtool on hpux hello, i'm on hpux 11.00 and use automake 1.5 with autoconf 2.50 and libtool 1.4b. my binaries are linked against shared libraries. but when move this libraries in another directory and write this new dirctory in the environment variabl

configure substitutions in generated Makefile

2002-06-07 Thread Kremp, Johannes
i'm on hp-ux 11.00 and have autoconf 2.50 and automake 1.5. i have following Makefile.am: Makefile.am: bin_PROGRAMS = test test_SOURCES = test.c test_LDADD = $(LIBTEST) lib_LIBRARIES = libtest1.a libtest2.a libtest1_a_SOURCES = test1.c libtest2_a_SOURCES = test2.c depending on the ope

RE: aclocal.m4:768: required file `./ltmain.sh' not found

2002-06-06 Thread Kremp, Johannes
thanks for your help, it works. johannes > -Original Message- > From: 'Roger Leigh' [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 04, 2002 6:05 PM > To: Kremp, Johannes > Cc: Automake-Mailing-list (E-Mail) > Subject: Re: aclocal.m4:768: required file `./ltm

RE: aclocal.m4:768: required file `./ltmain.sh' not found

2002-06-04 Thread Kremp, Johannes
> -Original Message- > From: Roger Leigh [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 04, 2002 1:06 PM > To: Kremp, Johannes > Cc: Automake-Mailing-list (E-Mail) > Subject: Re: aclocal.m4:768: required file `./ltmain.sh' not found > > > On Tue,

aclocal.m4:768: required file `./ltmain.sh' not found

2002-06-04 Thread Kremp, Johannes
i'm on aix 4.3 and using autoconf 2.53, automake 1.6.1 and libtool 1.4.2. i run aclocal, autoconf and then automake. automake brings folowing message: :/home/ekjo/rvstop> automake --add-missing aclocal.m4:768: required file `./ltmain.sh' not found the autotools are installed in the same path. wh

Cannot Successfully map soname 'librvssp.so..1'

2002-05-30 Thread Kremp, Johannes
hello i built a libray 'librvssp.la' with //rvsirx1/usr/people/ekjo/rvstopISA/gui/rvsxcon>automake --version automake (GNU automake) 1.5 Written by Tom Tromey <[EMAIL PROTECTED]>. and //rvsirx1/usr/people/ekjo/rvstopISA/gui/rvsxcon>libtool --version ltmain.sh (GNU libtool) 1.4b (1.970 2001/0

dynamic and static libs with same src

2002-04-02 Thread Kremp, Johannes
i am using automake 1.6 autoconf 2.53 libtool 1.4b on hpux 10.20. i would like build a static and a dynamic library from the same sources. but when automake runs i got follow messages: automake: src/Makefile.am: object `rpxcmd.lo' created both with libtool and without automake: src/Makefil

RE: automatic dependency tracking

2001-06-21 Thread Kremp, Johannes (Extern)
Johannes> hi, is there a patch which make it possible to make Johannes> dependency-tracking with other compiler than 'gcc'? This is one of the major new features in the cvs automake. sorry for this question, but where can i get cvs automake? johannes

RE: unterminated conditionals

2001-06-21 Thread Kremp, Johannes (Extern)
What version of automake are you using? i'm using automake 1.4. Can you give more details? i wrote in my 'configure.in': SWITCH=hello AM_CONDITIONAL(HELLO, test "$SWITCH" = hello) and in my 'Makefile.am': if HELLO include hellofiles bin_PROGRAMS = he

automatic dependency tracking

2001-06-20 Thread Kremp, Johannes (Extern)
hi, is there a patch which make it possible to make dependency-tracking with other compiler than 'gcc'? johannes

unterminated conditionals

2001-06-20 Thread Kremp, Johannes (Extern)
i wrote in my 'configure.in': SWITCH=hello AM_CONDITIONAL(HELLO, test "$SWITCH" = hello) and in my 'Makefile.am':if HELLO ... endif 'automake' told me: automake: src/Mak