[m-rev.] for review: fix Alpha shared library problems

Simon Taylor stayl at cs.mu.OZ.AU
Mon May 13 16:38:39 AEST 2002


On 13-May-2002, Simon Taylor <stayl at cs.mu.OZ.AU> wrote:
> 
> Estimated hours taken: 2.5
> Branches: main
> 
> Fix link problems on murlibobo caused by my recent changes
> to the way libmer_std.so and libmer_browser.so are built.
> The linker doesn't like shared libraries being renamed
> after they are built.

Index: library/mer_std.m
===================================================================
RCS file: mer_std.m
diff -N mer_std.m
--- /dev/null	Mon May 13 16:02:00 2002
+++ mer_std.m	Sun May 12 22:38:41 2002
@@ -0,0 +1,16 @@
+%-----------------------------------------------------------------------------%
+% Copyright (C) 2002 University of Melbourne.
+% This file may only be copied under the terms of the GNU General
+% Public License - see the file COPYING in the Mercury distribution.
+%-----------------------------------------------------------------------------%
+% File: mer_std.m
+% Main author: stayl
+%
+% This file is only present so that the library is
+% generated with the correct name.
+%-----------------------------------------------------------------------------%
+:- module mer_std.
+
+:- implementation.
+
+:- import_module library.
Index: browser/mer_browser.m
===================================================================
RCS file: mer_browser.m
diff -N mer_browser.m
--- /dev/null	Mon May 13 16:02:00 2002
+++ mer_browser.m	Sun May 12 22:10:06 2002
@@ -0,0 +1,16 @@
+%-----------------------------------------------------------------------------%
+% Copyright (C) 2002 University of Melbourne.
+% This file may only be copied under the terms of the GNU General
+% Public License - see the file COPYING in the Mercury distribution.
+%-----------------------------------------------------------------------------%
+% File: mer_browser.m
+% Main author: stayl
+%
+% This file is only present so that the browser library is
+% generated with the correct name.
+%-----------------------------------------------------------------------------%
+:- module mer_browser.
+
+:- implementation.
+
+:- import_module mdb.
--------------------------------------------------------------------------
mercury-reviews mailing list
post:  mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe:   Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------



More information about the reviews mailing list