Author: andrews
Date: 2006-05-24 07:24:41 -0400 (Wed, 24 May 2006)
New Revision: 61045

Modified:
   trunk/mono/ChangeLog
   trunk/mono/configure.in
   trunk/mono/runtime/Makefile.am
Log:
create a symlink at mono/runtime/etc/mono/2.0/web.config similar to 
machine.config



Modified: trunk/mono/ChangeLog
===================================================================
--- trunk/mono/ChangeLog        2006-05-24 09:47:58 UTC (rev 61044)
+++ trunk/mono/ChangeLog        2006-05-24 11:24:41 UTC (rev 61045)
@@ -1,3 +1,8 @@
+2006-05-24  Andrew Skiba <[EMAIL PROTECTED]>
+
+       * configure.in, runtime/Makefile.am: create a symlink at
+       mono/runtime/etc/mono/2.0/web.config similar to machine.config
+       
 2006-05-24  Raja R Harinath  <[EMAIL PROTECTED]>
 
        * scripts/Makefile.am (scripts_1_0, scripts_2_0): Move

Modified: trunk/mono/configure.in
===================================================================
--- trunk/mono/configure.in     2006-05-24 09:47:58 UTC (rev 61044)
+++ trunk/mono/configure.in     2006-05-24 11:24:41 UTC (rev 61045)
@@ -1892,6 +1892,20 @@
     cd $depth
 ],[LN_S='$LN_S'])
 
+AC_CONFIG_COMMANDS([runtime/etc/mono/2.0/web.config],
+[   depth=../../../..
+    case $srcdir in
+    [[\\/$]]* | ?:[[\\/]]* ) reldir=$srcdir ;;
+    .) reldir=$depth ;;
+    *) reldir=$depth/$srcdir ;;
+    esac
+    $ac_aux_dir/install-sh -d runtime/etc/mono/2.0
+    cd runtime/etc/mono/2.0
+    rm -f web.config
+    $LN_S $reldir/data/net_2_0/web.config web.config
+    cd $depth
+],[LN_S='$LN_S'])
+
 AC_OUTPUT([
 Makefile
 mint.pc

Modified: trunk/mono/runtime/Makefile.am
===================================================================
--- trunk/mono/runtime/Makefile.am      2006-05-24 09:47:58 UTC (rev 61044)
+++ trunk/mono/runtime/Makefile.am      2006-05-24 11:24:41 UTC (rev 61045)
@@ -6,10 +6,11 @@
 noinst_SCRIPTS = mono-wrapper monodis-wrapper semdel-wrapper
 
 etctmp = etc
-symlinks = etc/mono/1.0/machine.config etc/mono/2.0/machine.config
+symlinks = etc/mono/1.0/machine.config etc/mono/2.0/machine.config 
etc/mono/2.0/web.config 
 
 etc/mono/1.0/machine.config: $(top_srcdir)/data/net_1_1/machine.config
 etc/mono/2.0/machine.config: $(top_srcdir)/data/net_2_0/machine.config
+etc/mono/2.0/web.config: $(top_srcdir)/data/net_2_0/web.config
 
 $(symlinks):
        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to