unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: Alexandre Duret-Lutz <duret_g@lrde.epita.fr>
Cc: guile-devel@gnu.org
Subject: Re: Auto(conf|make) style questions
Date: Wed, 19 Mar 2003 20:26:26 +0100	[thread overview]
Message-ID: <2003-03-19-20-26-26+32223+duret_g@lrde.epita.fr> (raw)
In-Reply-To: <20030319172104.GA6109@www> (tomas@fabula.de's message of "Wed, 19 Mar 2003 18:21:04 +0100")

>>> "tomas" == tomas  <tomas@fabula.de> writes:

[...]

 >> libguile_neon_neon_la_LIBADD = $(LIBOBJS)

I think you meant $(LTLIBOBJS)

[...]

 tomas> - AC_LIBOBJ passes the extra objects through
 tomas> $(LIBOBJS). That means that I can only do it globally,
 tomas> not for a specific binary.  Is there another way?

Sure... don't use LIBOBJS :)

For instance replace

 if test "$guile_neon_cv_has_string2str" = "no"; then
   echo "Including scm_c_string2str.c in object files"
   AC_LIBOBJ(scm_c_string2str)
 fi

by something like

 if test "$guile_neon_cv_has_string2str" = "no"; then
   echo "Including scm_c_string2str.c in object files"
   NEON_COMPAT="$NEON_COMPAT scm_c_string2str.lo"
 fi
 AC_SUBST([NEON_COMPAT])

and use

 libguile_neon_neon_la_LIBADD = $(NEON_COMPAT)
 EXTRA_libguile_neon_neon_la_SOURCES = scm_c_string2str.c
-- 
Alexandre Duret-Lutz





  parent reply	other threads:[~2003-03-19 19:26 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-03-19 17:21 Auto(conf|make) style questions tomas
2003-03-19 17:39 ` Rob Browning
2003-03-20  7:56   ` tomas
2003-03-19 17:46 ` Mikael Djurfeldt
2003-03-19 19:26 ` Alexandre Duret-Lutz [this message]
2003-03-20  8:04   ` tomas
2003-03-21 20:17     ` Alexandre Duret-Lutz
2003-03-22  8:32       ` tomas
     [not found] ` <878yvbi6ih.fsf@alice.rotty.yi.org>
2003-03-20 10:48   ` tomas
2003-04-26  8:17     ` Neil Jerram

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

  List information: https://www.gnu.org/software/guile/

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

  git send-email \
    --in-reply-to=2003-03-19-20-26-26+32223+duret_g@lrde.epita.fr \
    --to=duret_g@lrde.epita.fr \
    --cc=guile-devel@gnu.org \
    /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).