Code

rules: (Again) pass -I/usr/include/ncursesw to CFLAGS.
authorSebastian Harl <sh@tokkee.org>
Tue, 8 Mar 2011 13:27:41 +0000 (14:27 +0100)
committerSebastian Harl <sh@tokkee.org>
Tue, 8 Mar 2011 13:27:41 +0000 (14:27 +0100)
This is no longer handled by the configure script which now uses the
third-party 'AX_WITH_CURSES' macro.

debian/changelog
debian/rules

index d86e820105c2a5ed0810ff35ab5cff232940004f..eecdc980aa3aed0062b77dbe6f40c36b0e0984c8 100644 (file)
@@ -7,8 +7,12 @@ tig (0.17-1) unstable; urgency=low
     - Enabled revision graph rendering by default; thanks to Paul Wise for
       reporting this (Closes: #611876).
   * Uploading to unstable -- Squeeze has been released \o/
+  * debian/rules:
+    - (Again) pass -I/usr/include/ncursesw to CFLAGS; this is no longer
+      handled by the configure script which now uses the third-party
+      'AX_WITH_CURSES' macro.
 
- -- Sebastian Harl <tokkee@debian.org>  Tue, 08 Mar 2011 14:06:55 +0100
+ -- Sebastian Harl <tokkee@debian.org>  Tue, 08 Mar 2011 14:26:55 +0100
 
 tig (0.16.2-1) experimental; urgency=low
 
index 9666fa17a574fa9d7d61f43abc33a848cc0e5f53..90ca50d6a79222f09427f0a58414c911d91bab76 100755 (executable)
@@ -11,7 +11,7 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-CFLAGS = -Wall -g
+CFLAGS = -Wall -g -I/usr/include/ncursesw
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
        CFLAGS += -O0