Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I dont have a definite answer for you, but the first thing I'd suggst is to put your <code>AC_OUTPUT</code> at the end of your <code>configure.ac</code>, after the <code>LT_INIT</code>. It's not <em>completely</em> this simple, but it's not far wrong to think of the contents of <code>configure.ac</code> as expanding in turn to fragments of shell script that are executed in turn. If you emit the configured <code>Makefile</code> before you've found <code>libtool</code>, then that could explain <code>LIBTOOL</code> being empty.</p> <p>A fairly conventional layout of your <code>configure.ac</code> would be the following:</p> <pre><code>dnl Process this file with autoconf to produce a configure script. AC_INIT(libcsv.c) AM_INIT_AUTOMAKE(libcsv, 3.0.1) AC_CONFIG_MACRO_DIR([m4]) dnl find programs AC_PROG_CC AC_PROG_CXX LT_INIT AC_PROG_RANLIB dnl check functionality AC_CHECK_FUNCS([strerror]) AC_FUNC_MALLOC AC_TYPE_SIZE_T AC_OUTPUT(Makefile) </code></pre> <p>I don't think you needed <code>LT_OUTPUT</code>, and the <a href="http://www.gnu.org/software/libtool/manual/html_node/LT_005fINIT.html" rel="nofollow noreferrer">docs</a> note that <code>AC_PROG_LIBTOOL</code> is a deprecated synonym for <code>LT_INIT</code> (so having both is probably asking for trouble).</p> <p>(Apropos of nothing very much, note that OS X has a command called <code>libtool</code>, which is nothing to do with GNU Libtool. I'm pretty sure that's not your problem here, but it's a gotcha that's confused people before)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload