public inbox for rhug-rhats@sourceware.org
 help / color / mirror / Atom feed
From: Jukka Santala <jsantala@tml.hut.fi>
To: rhug-rhats@sources.redhat.com
Subject: Re: libtool woes
Date: Mon, 21 Jan 2002 04:26:00 -0000	[thread overview]
Message-ID: <Pine.SOL.4.10.10201211423480.5840-200000@morphine.tml.hut.fi> (raw)
In-Reply-To: <Pine.SOL.4.10.10201211407470.5840-100000@morphine.tml.hut.fi>

[-- Attachment #1: Type: TEXT/PLAIN, Size: 507 bytes --]

On Mon, 21 Jan 2002, Jukka Santala wrote:
> Ps. some of the Makefile.am's even call "gcj" straight instead of
> $(GCJ)...

Attached (if attachments go through) a patch to fix up the problems
inhered to above, altough I loathe to do this since I can't build the
thing to verify the patch works. It's rather trivial, though. The fix in
gnu.readline is neccessary because otherwise the build will break horribly
on any systems with a sensible jar-tool that actually requires
source-filenames.

 -Jukka Santala

[-- Attachment #2: Type: TEXT/PLAIN, Size: 2600 bytes --]

Index: gnu.readline/Makefile.am
===================================================================
RCS file: /cvs/rhug/rhug/gnu.readline/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Makefile.am	2001/11/09 05:29:55	1.2
+++ Makefile.am	2002/01/21 12:23:19
@@ -71,7 +71,7 @@
 $(JARFILE): $(CLASSFILES)
 	(cd upstream/src; for x in `find ./ -name \*.class`; do gcjh `echo $$x | sed "s/\.\///g" | sed "s/.class//g"`; done;)
 	(cd upstream/src; jar cf ../../$@ `find ./ -name \*.class`)
-	(here=`pwd`; cd $(srcdir)/upstream/src; jar uf $$here/$@)
+##	(here=`pwd`; cd $(srcdir)/upstream/src; jar uf $$here/$@)
 
 MOSTLYCLEANFILES = $(JARFILE)
 
Index: gnu.regexp/Makefile.am
===================================================================
RCS file: /cvs/rhug/rhug/gnu.regexp/Makefile.am,v
retrieving revision 1.8
diff -u -r1.8 Makefile.am
--- Makefile.am	2001/09/14 01:04:12	1.8
+++ Makefile.am	2002/01/21 12:23:19
@@ -150,7 +150,7 @@
 lib_gnu_regexp_la_DEPENDENCIES = props.o
 
 props.o: $(srcdir)/upstream/src/gnu/regexp/MessagesBundle.properties
-	gcj -fPIC -R gnu/regexp/MessagesBundle.properties -o props.o -c $<
+	$(GCJ) -fPIC -R gnu/regexp/MessagesBundle.properties -o props.o -c $<
 
 lib_gnu_regexp_la_LIBADD = props.o
 
Index: xerces/Makefile.am
===================================================================
RCS file: /cvs/rhug/rhug/xerces/Makefile.am,v
retrieving revision 1.10
diff -u -r1.10 Makefile.am
--- Makefile.am	2001/10/23 06:46:49	1.10
+++ Makefile.am	2002/01/21 12:23:19
@@ -842,13 +842,13 @@
 lib_org_apache_xerces_la_DEPENDENCIES = mprops.o mprops_fr.o mprops_ja.o lib-javax-xml-parsers.la lib-org-w3c-dom-html.la lib-org-w3c-dom-events.la
 
 mprops.o: upstream/src/org/apache/xerces/utils/regex/message.properties
-	gcj -fPIC -R org/apache/xerces/utils/regex/message.properties -o $@ -c $<
+	$(GCJ) -fPIC -R org/apache/xerces/utils/regex/message.properties -o $@ -c $<
 
 mprops_fr.o: upstream/src/org/apache/xerces/utils/regex/message_fr.properties
-	gcj -fPIC -R org/apache/xerces/utils/regex/message_fr.properties -o $@ -c $<
+	$(GCJ) -fPIC -R org/apache/xerces/utils/regex/message_fr.properties -o $@ -c $<
 
 mprops_ja.o: upstream/src/org/apache/xerces/utils/regex/message_ja.properties
-	gcj -fPIC -R org/apache/xerces/utils/regex/message_ja.properties -o $@ -c $<
+	$(GCJ) -fPIC -R org/apache/xerces/utils/regex/message_ja.properties -o $@ -c $<
 
 lib_org_apache_xerces_la_LIBADD = mprops.o mprops_fr.o mprops_ja.o -L. -l-javax-xml-parsers -l-org-w3c-dom-html -l-org-w3c-dom-events
 

  reply	other threads:[~2002-01-21 12:26 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-01-21  4:13 Jukka Santala
2002-01-21  4:26 ` Jukka Santala [this message]
2002-01-21  9:14   ` Alexandre Petit-Bianco
2002-01-22  1:39     ` Jukka Santala
2002-01-22  4:10     ` Jukka Santala
2002-01-25  9:05       ` Anthony Green
2002-01-28  3:34         ` Jukka Santala
2002-01-21  9:12 ` Alexandre Petit-Bianco
2002-01-31 10:19   ` Tom Tromey
2002-01-31 10:16 ` Tom Tromey
2002-02-01  5:02   ` Jukka Santala
2002-02-01 10:45     ` Alexandre Petit-Bianco
2002-02-04  6:03       ` Jukka Santala
2002-02-09 11:21         ` Tom Tromey
2002-02-09 11:26       ` Tom Tromey
2002-02-09 15:29         ` Alexandre Petit-Bianco
2002-02-10 10:19           ` Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.SOL.4.10.10201211423480.5840-200000@morphine.tml.hut.fi \
    --to=jsantala@tml.hut.fi \
    --cc=rhug-rhats@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).