autoconf-patches
[Top][All Lists]
Advanced

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

Missing newline in autoheader


From: Pavel Roskin
Subject: Missing newline in autoheader
Date: Tue, 25 Feb 2003 18:23:13 -0500 (EST)

Hello!

Just saw this while eliminating acconfig.h in ethereal:

autoheader: missing template: HAVE_LIBPCAP
Use AC_DEFINE([HAVE_LIBPCAP], [], [Description])autoheader: missing
template: HAVE_LIBZ
autoheader: missing template: HAVE_PCAP_VERSION

Apparently a missing newline.  The patch is trivial, so I've committed it:

=============================
--- ChangeLog
+++ ChangeLog
@@ -1 +1,6 @@
+2003-02-25  Pavel Roskin  <address@hidden>
+
+       * bin/autoheader.in: Add missing newline when printing
+       suggestion how change AC_DEFINE call.
+
 2003-02-24  Paul Eggert  <address@hidden>
--- bin/autoheader.in
+++ bin/autoheader.in
@@ -265,7 +265,7 @@
       print STDERR "$me: missing template: $_\n";
       if ($suggest_ac_define)
        {
-         print STDERR "Use AC_DEFINE([$_], [], [Description])";
+         print STDERR "Use AC_DEFINE([$_], [], [Description])\n";
          $suggest_ac_define = 0;
        }

=============================

-- 
Regards,
Pavel Roskin




reply via email to

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