Configure bugs with perl. Removed runtime build by default

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5481 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-12-04 19:14:44 +00:00
commit 156a84c2a8
3 changed files with 16 additions and 2 deletions

View file

@ -17,7 +17,7 @@ TARGET = swig@release_suffix@@EXEEXT@
SOURCE = Source
RUNTIME = Runtime
swig: source runtime swig.spec
swig: source swig.spec
source:
@cd $(SOURCE); $(MAKE)
@ -317,7 +317,7 @@ MKINSTDIRS = @abs_srcdir@/Tools/config/install-sh -m 0755 -d
M4_SOURCE_DIR = @abs_srcdir@/Tools/config
M4_INSTALL_DIR = @datadir@/aclocal
install: install-main install-lib install-runtime install-m4
install: install-main install-lib install-m4
@echo "Installation complete"
install-main:

View file

@ -168,6 +168,19 @@ packages to compile or run. The configure script is actually looking for
these packages so that you can try out the SWIG examples contained
in the 'Examples' directory without having to hack Makefiles.
SWIG includes an optional set of runtime libraries that are sometimes used
when working with multiple modules. By default, these aren't built due to
the wide variety of target languages, compilers, compiler flags, and other
configuration information that impacts the way that they have to be built.
However, if you want to build the runtime libraries in their "default"
configuration, type this:
% make runtime
% make install-runtime
More information about the runtime libraries can be found in
Doc/Manual/Modules.html.
Notes:
(1) If you checked the code out via CVS, you will have to run ./autogen.sh

View file

@ -696,6 +696,7 @@ case $host in
*)PERL5DYNAMICLINKING="";;
esac
AC_SUBST(PERL)
AC_SUBST(PERL5EXT)
AC_SUBST(PERL5DYNAMICLINKING)
AC_SUBST(PERL5LIB)