Branch: Tag:

1997-01-11

1997-01-11 22:36:06 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Now supports setting the linker run-time path.

Rev: src/Makefile.src:1.17
Rev: src/configure.in:1.35
Rev: src/modules/Makefile.src:1.9

1: - AC_REVISION("$Id: configure.in,v 1.34 1996/12/09 06:10:33 neotron Exp $") + AC_REVISION("$Id: configure.in,v 1.35 1997/01/11 22:35:38 grubba Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
30:   AC_ARG_WITH(threads, [ --without-threads no threads support],[],[with_threads=yes])   AC_ARG_WITH(zlib, [ --without-zlib no gz compression support],[],[with_zlib=yes])   AC_ARG_WITH(ssleay, [ --without-ssleay no support for the secure socket protocol],[],[with_ssleay=yes]) + AC_ARG_WITH(mysql, [ --without-mysql no support for the Mysql database],[],[with_mysql=yes])      if test x$with_debug = xyes ; then    AC_DEFINE(DEBUG)
144:    fi   fi    + AC_MSG_CHECKING(ld accepts setting te run-path with -R) + AC_CACHE_VAL(pike_cv_ld_accepts_r, + [ +  OLD_CFLAGS="$CFLAGS" +  +  CFLAGS="$CFLAGS -R." +  AC_TRY_LINK([],[ exit(0); ],[ +  pike_cv_ld_accepts_r=yes +  ],[ pike_cv_ld_accepts_r=no ]) +  CFLAGS="$OLD_CFLAGS" + ]) + AC_MSG_RESULT($pike_cv_ld_accepts_r) +  + if test x$pike_cv_ld_accepts_r ; then +  SET_RUN_PATH='`cat modules/lib_dirs`' + else +  : + fi +    #   # If no cppflags or ldflags where given we try to guess some..   #
1148:   AC_SUBST(BUILDDIR)   AC_SUBST(DOCDIR)   AC_SUBST(DEBUGDEF) + AC_SUBST(SET_RUN_PATH)      AC_OUTPUT(Makefile,[echo foo >stamp-h])