-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
References jonas#920
- Loading branch information
Showing
4 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Example configuration for Linux. | ||
# | ||
# Use ncursesw. | ||
|
||
TIG_LDLIBS = -lncursesw | ||
TIG_CPPFLAGS = -DHAVE_NCURSESW_CURSES_H | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
# vim: ft=make: |
Should this set
TIG_NCURSES
for the library instead? SettingTIG_LDLIBS
here results in linking with-lcurses -lncursesw
, whose output looks broken on my system (a pretty vanilla Debian unstable setup). The breakage is the usual ncursesw problem, with utf8 characters like line-graphics shown with escape codes. SettingTIG_NCURSES
replaces the-lcurses
value that comes from the main Makefile, and everything looks good.