mingw-cross-env-list
[Top][All Lists]
Advanced

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

[Mingw-cross-env-list] ncurses build fail & work-around


From: Harison Ford
Subject: [Mingw-cross-env-list] ncurses build fail & work-around
Date: Sun, 20 May 2012 21:52:25 -0700 (PDT)

after pull from git, ncurse failed to build, cuz ncurses/tinfo/MKcaptab.sh contains following lines:

./make_hash 1 info $OPT1 <$DATA
./make_hash 3 cap  $OPT1 <$DATA

since only make_hash.exe is created under my ubuntu(64), no "make_hash" exists

so I put a ncurses-1-exefixed.patch under src dir, and ncurses builds ok

here is the content:
diff -urN ncurses-5.9.orig/ncurses ncurses-5.9/ncurses

--- ncurses-5.9.orig/ncurses/tinfo/MKcaptab.sh 2012-05-21 11:30:56.000000000 +0800
+++ ncurses-5.9/ncurses/tinfo/MKcaptab.sh 2010-12-26 07:43:58.000000000 +0800
@@ -52,8 +52,8 @@
 
 EOF
 
-./make_hash 1 info $OPT1 <$DATA
-./make_hash 3 cap  $OPT1 <$DATA
+./make_hash.exe 1 info $OPT1 <$DATA
+./make_hash.exe 3 cap  $OPT1 <$DATA
 
 $AWK -f $OPT2 bigstrings=$OPT1 tablename=capalias <$DATA


reply via email to

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