Skip to content

Commit

Permalink
* runtime/net_1_1/Makefile.am (mono_runtime): Use USE_JIT, not
Browse files Browse the repository at this point in the history
JIT_SUPPORTED.
(install-data-local, uninstall-data-local): Run runtime with
libtool.
* runtime/net_2_0/Makefile.am: Likewise.
Report from Urs C Muff <umuff@quark.com>.

svn path=/trunk/mono/; revision=26685
  • Loading branch information
harinath committed May 4, 2004
1 parent d3ad603 commit 465c6f4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2004-05-04 Raja R Harinath <rharinath@novell.com>

* runtime/net_1_1/Makefile.am (mono_runtime): Use USE_JIT, not
JIT_SUPPORTED.
(install-data-local, uninstall-data-local): Run runtime with
libtool.
* runtime/net_2_0/Makefile.am: Likewise.
Report from Urs C Muff <umuff@quark.com>.

2004-05-03 Jackson Harper <jackson@ximian.com>

* man/gacutil.1: Basic man page for gacutil. This doesn't include
Expand Down
9 changes: 4 additions & 5 deletions runtime/net_1_1/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
mcs_topdir=$(top_srcdir)/../mcs
gacutil=$(srcdir)/../gacutil.exe

if JIT_SUPPORTED
if USE_JIT
mono_runtime = $(top_builddir)/mono/mini/mono
else
mono_runtime = $(top_builddir)/mono/interpreter/mint
Expand Down Expand Up @@ -68,7 +68,6 @@ corlibdir = $(libdir)
corlib_DATA = mscorlib.dll

EXTRA_DIST = $(gac_assemblies) $(corlib_DATA)

MAINTAINERCLEANFILES = $(EXTRA_DIST)

#
Expand All @@ -86,15 +85,15 @@ install-data-local:
for i in ''$(gac_assemblies); do \
echo "MONO_PATH=$(srcdir) $(mono_runtime) $(gacutil) -i $(srcdir)/$$i /f /package 1.0 /root $(DESTDIR)$(libdir)" ; \
MONO_PATH=$(srcdir) \
$(mono_runtime) --config ../../data/config $(gacutil) -i $(srcdir)/$$i /f /package 1.0 /root $(DESTDIR)$(libdir) || exit 1 ; \
$(LIBTOOL) --mode=execute $(mono_runtime) --config ../../data/config $(gacutil) -i $(srcdir)/$$i /f /package 1.0 /root $(DESTDIR)$(libdir) || exit 1 ; \
done; fi

uninstall-local:
@if test -n '$(gac_assemblies_list)'; then \
for i in ''$(gac_assemblies_list); do \
echo "MONO_PATH=$(srcdir) $(mono_runtime) $(gacutil) /u $$i" ; \
echo "MONO_PATH=$(srcdir) $(mono_runtime) $(gacutil) /u $$i /root $(DESTDIR)$(libdir)" ; \
MONO_PATH=$(srcdir) \
$(mono_runtime) $(gacutil) /u $$i /root $(DESTDIR)$(libdir) || true; \
$(LIBTOOL) --mode=execute $(mono_runtime) $(gacutil) /u $$i /root $(DESTDIR)$(libdir) || true ; \
done; fi

copy_dlls:
Expand Down
8 changes: 4 additions & 4 deletions runtime/net_2_0/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
mcs_topdir=$(top_srcdir)/../mcs
gacutil=$(srcdir)/../gacutil.exe

if JIT_SUPPORTED
if USE_JIT
mono_runtime = $(top_builddir)/mono/mini/mono
else
mono_runtime = $(top_builddir)/mono/interpreter/mint
Expand Down Expand Up @@ -89,15 +89,15 @@ install-data-local:
for i in ''$(gac_assemblies); do \
echo "MONO_PATH=$(srcdir)/../net_1_1 $(mono_runtime) $(gacutil) -i $(srcdir)/$$i /f /package 2.0 /root $(DESTDIR)$(libdir)" ; \
MONO_PATH=$(srcdir)/../net_1_1 \
$(mono_runtime) --config ../../data/config $(gacutil) -i $(srcdir)/$$i /f /package 2.0 /root $(DESTDIR)$(libdir) || exit 1 ; \
$(LIBTOOL) --mode=execute $(mono_runtime) --config ../../data/config $(gacutil) -i $(srcdir)/$$i /f /package 2.0 /root $(DESTDIR)$(libdir) || exit 1 ; \
done; fi

uninstall-local:
@if test -n '$(gac_assemblies_list)'; then \
for i in ''$(gac_assemblies_list); do \
echo "MONO_PATH=$(srcdir)/../net_1_1 $(mono_runtime) $(gacutil) /u $$i" ; \
echo "MONO_PATH=$(srcdir)/../net_1_1 $(mono_runtime) $(gacutil) /u $$i /root $(DESTDIR)$(libdir)" ; \
MONO_PATH=$(srcdir)/../net_1_1 \
$(mono_runtime) $(gacutil) /u $$i || true ; \
$(LIBTOOL) --mode=execute $(mono_runtime) $(gacutil) /u $$i /root $(DESTDIR)$(libdir) || true ; \
done; fi

copy_dlls:
Expand Down

0 comments on commit 465c6f4

Please sign in to comment.