[Pkg-octave-commit] r2728 - in octave/trunk/debian: . in patches

Rafael Laboissiere rafael at alioth.debian.org
Wed Mar 18 10:11:22 UTC 2009


tags 520076 pending
thanks

Author: rafael
Date: 2009-03-18 10:11:22 +0000 (Wed, 18 Mar 2009)
New Revision: 2728

Added:
   octave/trunk/debian/patches/termios-h-check-3.1.dpatch
Modified:
   octave/trunk/debian/changelog
   octave/trunk/debian/in/00list
Log:
Add patch for fixing typo in configure.in (termios.h check)

Modified: octave/trunk/debian/changelog
===================================================================
--- octave/trunk/debian/changelog	2009-03-18 00:06:41 UTC (rev 2727)
+++ octave/trunk/debian/changelog	2009-03-18 10:11:22 UTC (rev 2728)
@@ -10,6 +10,10 @@
   * debian/in/control: Drop dependency of octaveX.Y-common on octaveX.Y,
     in order to avoid circular dependencies.  Thanks to Bill Allombert for
     the heads up and the suggestion (closes: #520125).
+  * debian/patches/termios-h-check-3.1.dpatch: Small tweak for
+    configure.in/configure to properly detect <termios.h>, making the
+    package build on GNU/kFreeBSD. Thanks to Petr Salinger for the patch
+    (closes: #520076).
 
   [ Thomas Weber ]
   * debian/in/control: Move -dbg package from Section: devel to Section:

Modified: octave/trunk/debian/in/00list
===================================================================
--- octave/trunk/debian/in/00list	2009-03-18 00:06:41 UTC (rev 2727)
+++ octave/trunk/debian/in/00list	2009-03-18 10:11:22 UTC (rev 2728)
@@ -13,4 +13,5 @@
 normal-markersize.dpatch
 remove-y.tab.h-in-maintainer-clean.dpatch
 pretty-png-svg-print.dpatch
+termios-h-check-3.1.dpatch
 :]

Added: octave/trunk/debian/patches/termios-h-check-3.1.dpatch
===================================================================
--- octave/trunk/debian/patches/termios-h-check-3.1.dpatch	                        (rev 0)
+++ octave/trunk/debian/patches/termios-h-check-3.1.dpatch	2009-03-18 10:11:22 UTC (rev 2728)
@@ -0,0 +1,20 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## -*- diff -*-
+## termios-h-check-3.1.dpatch by Rafael Laboissiere <rafael at debian.org>
+##
+## DP: Small tweak for configure.in/configure to properly detect
+## DP: <termios.h>, making the package build on GNU/kFreeBSD. Thanks to
+## DP: Petr Salinger for the patch.  Closes Bug#520076 for octave3.1.
+
+ at DPATCH@
+--- octave3.1-3.1.54.orig/configure.in
++++ octave3.1-3.1.54/configure.in
+@@ -1523,7 +1523,7 @@
+ AC_LANG_POP(C++)
+ 
+ have_termios_h=no
+-AC_CHECK_HEADERS($TERMIOS_H, have_termios_h=yes)
++AC_CHECK_HEADERS(termios.h, have_termios_h=yes)
+ AC_CHECK_HEADERS(termio.h, have_termio_h=yes, have_termio_h=no)
+ AC_CHECK_HEADERS(sgtty.h, have_sgtty_h=yes, have_sgtty_h=no)
+ AC_CHECK_HEADERS(glob.h, have_glob_h=yes, have_glob_h=no)




More information about the Pkg-octave-commit mailing list