Changeset b772130


Ignore:
Timestamp:
10/21/2008 08:32:15 PM (16 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
1e77f0c
Parents:
46fbbc2
Message:

Added ac_cv_func_working_mktime=yes to the configure commands in gawk and bash

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8690 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r46fbbc2 rb772130  
    4242      <itemizedlist>
    4343        <listitem>
     44          <para>[bdubbs] - Added ac_cv_func_working_mktime=yes to the configure
     45                                        commands in gawk and bash to bypass the search for mktime.  This
     46          works around a change in gcc.</para>
     47        </listitem>
     48        <listitem>
    4449          <para>[bdubbs] - Added a note to the ifcfg script description in
    4550          iproute2 that it requires external programs.</para>
  • chapter05/bash.xml

    r46fbbc2 rb772130  
    5151    <para>Prepare Bash for compilation:</para>
    5252
    53 <screen><userinput remap="configure">./configure --prefix=/tools --without-bash-malloc</userinput></screen>
     53<screen><userinput remap="configure">./configure --prefix=/tools --without-bash-malloc \
     54   ac_cv_func_working_mktime=yes</userinput></screen>
    5455
    5556    <variablelist>
    56       <title>The meaning of the configure option:</title>
     57      <title>The meaning of the configure options:</title>
    5758
    5859      <varlistentry>
     
    6566          more stable.</para>
    6667        </listitem>
     68      </varlistentry>
     69      <varlistentry>
     70                                <term><parameter>ac_cv_func_working_mktime=yes</parameter></term>
     71                                <listitem>
     72                                  <para>This parameter bypasses the search for mktime in configure
     73                                        and uses the version in glibc. The is necessary due to a change in
     74                                        gcc that has not been incorporated into this package yet.</para>
     75                                </listitem>
    6776      </varlistentry>
    6877
  • chapter05/gawk.xml

    r46fbbc2 rb772130  
    4646    <para>Prepare Gawk for compilation:</para>
    4747
    48 <screen><userinput remap="configure">./configure --prefix=/tools</userinput></screen>
     48<screen><userinput remap="configure">./configure --prefix=/tools ac_cv_func_working_mktime=yes</userinput></screen>
    4949
     50    <variablelist>
     51      <title>The meaning of the configure option:</title>
     52
     53      <varlistentry>
     54                                <term><parameter>ac_cv_func_working_mktime=yes</parameter></term>
     55                                <listitem>
     56                                  <para>This parameter bypasses the search for mktime in configure
     57                                        and uses the version in glibc. The is necessary due to a change in
     58                                        gcc that has not been incorporated into this package yet.</para>
     59                                </listitem>
     60      </varlistentry>
     61
     62    </variablelist>
    5063    <para>Compile the package:</para>
    5164
  • chapter06/bash.xml

    r46fbbc2 rb772130  
    5656
    5757<screen><userinput remap="configure">./configure --prefix=/usr --bindir=/bin \
    58     --without-bash-malloc --with-installed-readline</userinput></screen>
     58    --without-bash-malloc --with-installed-readline ac_cv_func_working_mktime=yes</userinput></screen>
    5959
    6060    <variablelist>
  • chapter06/gawk.xml

    r46fbbc2 rb772130  
    4343    <para>Prepare Gawk for compilation:</para>
    4444
    45 <screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/lib</userinput></screen>
     45<screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/lib \
     46   ac_cv_func_working_mktime=yes</userinput></screen>
    4647
    4748    <para>Compile the package:</para>
Note: See TracChangeset for help on using the changeset viewer.