texinfo-commits
[Top][All Lists]
Advanced

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

[7823] change name of --no-undefined conditional


From: gavinsmith0123
Subject: [7823] change name of --no-undefined conditional
Date: Thu, 8 Jun 2017 13:56:32 -0400 (EDT)

Revision: 7823
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7823
Author:   gavin
Date:     2017-06-08 13:56:32 -0400 (Thu, 08 Jun 2017)
Log Message:
-----------
change name of --no-undefined conditional

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2017-06-07 17:16:40 UTC (rev 7822)
+++ trunk/ChangeLog     2017-06-08 17:56:32 UTC (rev 7823)
@@ -1,3 +1,12 @@
+2017-06-08  Gavin Smith  <address@hidden>
+
+       * tp/Texinfo/Convert/XSParagraph/configure.ac,
+       * tp/Texinfo/Convert/XSParagraph/Makefile.am,
+       * tp/Texinfo/MiscXS/configure.ac,
+       * tp/Texinfo/MiscXS/Makefile.am:
+       Change name of conditional from HOST_IS_WINDOWS to 
+       HOST_NEEDS_NO_UNDEFINED.  Suggestion from Ken Brown.
+
 2017-06-07  Gavin Smith  <address@hidden>
 
        * Texinfo/Convert/XSParagraph/configure.ac,

Modified: trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am    2017-06-07 17:16:40 UTC 
(rev 7822)
+++ trunk/tp/Texinfo/Convert/XSParagraph/Makefile.am    2017-06-08 17:56:32 UTC 
(rev 7823)
@@ -84,7 +84,7 @@
 TestXS_la_CFLAGS = $(AM_CFLAGS)
 TestXS_la_CFLAGS += -DVERSION=\"$(VERSION)\" -DXS_VERSION=\"$(VERSION)\"  
"-I$(PERL_INC)"
 
-if HOST_IS_WINDOWS
+if HOST_NEEDS_NO_UNDEFINED
   PLATFORM_LDFLAGS = -no-undefined -L$(PERL_INC) $(PERL_CONF_libperl)
   # The -no-undefined flag is for MS-Windows.  See info node
   # `(gnulib)Libtool and Windows'.  The -L and -l options after it show

Modified: trunk/tp/Texinfo/Convert/XSParagraph/configure.ac
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/configure.ac   2017-06-07 17:16:40 UTC 
(rev 7822)
+++ trunk/tp/Texinfo/Convert/XSParagraph/configure.ac   2017-06-08 17:56:32 UTC 
(rev 7823)
@@ -84,11 +84,12 @@
 # aren't really used: otherwise, configure complains about undefined
 # variables.
 
-host_is_windows=no
-case "$host" in
-   *-mingw32 | *-mingw64 | *-msdosdjgpp | *-cygwin )  host_is_windows=yes ;;
+host_needs_no_undefined=no
+case "$host" in *-mingw32 | *-mingw64 | *-msdosdjgpp | *-cygwin )
+  host_needs_no_undefined=yes ;;
 esac     
-AM_CONDITIONAL([HOST_IS_WINDOWS], [test "x$host_is_windows" = "xyes"])
+AM_CONDITIONAL([HOST_NEEDS_NO_UNDEFINED],
+               [test "x$host_needs_no_undefined" = "xyes"])
 
 # User variables for a Perl XS extension, which may be different, for
 # example if the Perl interpreter being used was compiled with a

Modified: trunk/tp/Texinfo/MiscXS/Makefile.am
===================================================================
--- trunk/tp/Texinfo/MiscXS/Makefile.am 2017-06-07 17:16:40 UTC (rev 7822)
+++ trunk/tp/Texinfo/MiscXS/Makefile.am 2017-06-08 17:56:32 UTC (rev 7823)
@@ -48,7 +48,7 @@
 MiscXS_la_CFLAGS = $(AM_CFLAGS)
 MiscXS_la_CFLAGS += -DVERSION=\"$(VERSION)\" -DXS_VERSION=\"$(VERSION)\"  
"-I$(PERL_INC)"
 
-if HOST_IS_WINDOWS
+if HOST_NEEDS_NO_UNDEFINED
   PLATFORM_LDFLAGS = -no-undefined -L$(PERL_INC) $(PERL_CONF_libperl)
   # The -no-undefined flag is for MS-Windows.  See info node
   # `(gnulib)Libtool and Windows'.  The -L and -l options after it show

Modified: trunk/tp/Texinfo/MiscXS/configure.ac
===================================================================
--- trunk/tp/Texinfo/MiscXS/configure.ac        2017-06-07 17:16:40 UTC (rev 
7822)
+++ trunk/tp/Texinfo/MiscXS/configure.ac        2017-06-08 17:56:32 UTC (rev 
7823)
@@ -80,11 +80,12 @@
 # aren't really used: otherwise, configure complains about undefined
 # variables.
 
-host_is_windows=no
-case "$host" in
-   *-mingw32 | *-mingw64 | *-msdosdjgpp | *-cygwin )  host_is_windows=yes ;;
+host_needs_no_undefined=no
+case "$host" in *-mingw32 | *-mingw64 | *-msdosdjgpp | *-cygwin )
+  host_needs_no_undefined=yes ;;
 esac     
-AM_CONDITIONAL([HOST_IS_WINDOWS], [test "x$host_is_windows" = "xyes"])
+AM_CONDITIONAL([HOST_NEEDS_NO_UNDEFINED],
+               [test "x$host_needs_no_undefined" = "xyes"])
 
 # User variables for a Perl XS extension, which may be different, for
 # example if the Perl interpreter being used was compiled with a




reply via email to

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