texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[6544] discard CC autoconf cache value in subdir


From: Gavin D. Smith
Subject: [6544] discard CC autoconf cache value in subdir
Date: Tue, 18 Aug 2015 17:41:11 +0000

Revision: 6544
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6544
Author:   gavin
Date:     2015-08-18 17:41:09 +0000 (Tue, 18 Aug 2015)
Log Message:
-----------
discard CC autoconf cache value in subdir

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am
    trunk/tp/Texinfo/Convert/XSParagraph/README
    trunk/tp/Texinfo/Convert/XSParagraph/configure.ac

Removed Paths:
-------------
    trunk/tp/Texinfo/Convert/XSParagraph/fetch_conf.pl

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2015-08-18 06:50:34 UTC (rev 6543)
+++ trunk/ChangeLog     2015-08-18 17:41:09 UTC (rev 6544)
@@ -1,3 +1,13 @@
+2015-08-18  Gavin Smith  <address@hidden>
+
+       * tp/Texinfo/Convert/XSParagraph/configure.ac: Wipe Autoconf 
+       cache value for AC_PROG_CC.
+       * tp/Texinfo/Convert/XSParagraph/README: Remove done issue.
+       * tp/Texinfo/Convert/XSParagraph/Makefile.am: Remove mention of 
+       fetch_conf.pl, and commented-out rules and variables.  
+       Distribute XSParagraph.xs.
+       * tp/Texinfo/Convert/XSParagraph/fetch_conf.pl: Delete.
+
 2015-08-18  Patrice Dumas  <address@hidden>
 
        * tp/Texinfo/Convert/XSParagraph/XSParagraph.pm, 

Modified: trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am    2015-08-18 06:50:34 UTC 
(rev 6543)
+++ trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am    2015-08-18 17:41:09 UTC 
(rev 6544)
@@ -41,24 +41,13 @@
 
 dist_modules_DATA = XSParagraph.pm
 
-EXTRA_DIST += fetch_conf.pl
-
 PERL_INC = $(PERL_CONF_archlibexp)/CORE
 
 XSUBPPARGS = -typemap $(PERL_CONF_privlibexp)/ExtUtils/typemap
 
-#XSUBPPARGS = -typemap /usr/share/perl5/ExtUtils/typemap
-
 .xs.c:
        $(XSUBPP) $(XSUBPPARGS) $*.xs > $*.xsc && mv $*.xsc $*.c
 
-# We won't need this rule
-#.xs$(OBJ_EXT):
-#      $(XSUBPPRUN) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc \
-#              && mv $*.xsc $*.c
-#      $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) \
-#      $(DEFINE) $*.c
-
 # -------------------------------------------------------
 
 xs_LTLIBRARIES = XSParagraph.la
@@ -66,6 +55,7 @@
                         text.c text.h ppport.h
 
 BUILT_SOURCES = XSParagraph.c
+EXTRA_DIST += XSParagraph.xs
 
 # Override these variables set by configure at the top level, because 
 # the compiler used in this subdirectory might be different.  

Modified: trunk/tp/Texinfo/Convert/XSParagraph/README
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/README 2015-08-18 06:50:34 UTC (rev 
6543)
+++ trunk/tp/Texinfo/Convert/XSParagraph/README 2015-08-18 17:41:09 UTC (rev 
6544)
@@ -47,16 +47,6 @@
 functions operate on the UTF-8 data correctly.  Could this break 
 anything for the running Perl instance?
 
-* Effect of newlines at sentence ends within @w{ ... }.  Normally within 
address@hidden, spaces are not doubled after a full stop, e.g
-"@w{Sentence one. Sentence two.}"  However the current code in 
-Paragraph.pm creates a double space in cases like
-
address@hidden one.
-Sentence two.}.
-
-Is this correct?
-
 * Check that we correctly imitate variables being "undefined" in Perl.
 
 * Check where space doubling at an end of a sentence is done - it is 

Modified: trunk/tp/Texinfo/Convert/XSParagraph/configure.ac
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/configure.ac   2015-08-18 06:50:34 UTC 
(rev 6543)
+++ trunk/tp/Texinfo/Convert/XSParagraph/configure.ac   2015-08-18 17:41:09 UTC 
(rev 6544)
@@ -53,9 +53,13 @@
   AC_PATH_PROG([PERL], [perl])
   
   # It's essential that we use the same compiler that was used to build
-  # Perl.  Otherwise Perl's "config.h" will be incorrect.
+  # Perl.  Otherwise Perl's "config.h" will be incorrect.  This overrides
+  # the check in AC_PROG_CC below.
   lookup_perl_conf([cc])
   CC=$conf_value
+
+  # Wipe the cache value in case -C was given at the top level
+  ac_cv_prog_CC=
 fi
 
 AC_PROG_CC

Deleted: trunk/tp/Texinfo/Convert/XSParagraph/fetch_conf.pl
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/fetch_conf.pl  2015-08-18 06:50:34 UTC 
(rev 6543)
+++ trunk/tp/Texinfo/Convert/XSParagraph/fetch_conf.pl  2015-08-18 17:41:09 UTC 
(rev 6544)
@@ -1,9 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-
-use Config;
-
-my $name = shift;
-print $Config{$name};
-
-




reply via email to

[Prev in Thread] Current Thread [Next in Thread]