| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | #!/bin/sh
 | 
					
						
							|  |  |  | # Check ncurses compatibility | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # What library to link | 
					
						
							|  |  |  | ldflags() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-17 15:06:31 -04:00
										 |  |  | 	for ext in so a dylib ; do | 
					
						
							|  |  |  | 		for lib in ncursesw ncurses curses ; do | 
					
						
							|  |  |  | 			$cc -print-file-name=lib${lib}.${ext} | grep -q / | 
					
						
							|  |  |  | 			if [ $? -eq 0 ]; then | 
					
						
							|  |  |  | 				echo "-l${lib}" | 
					
						
							|  |  |  | 				exit | 
					
						
							|  |  |  | 			fi | 
					
						
							|  |  |  | 		done | 
					
						
							|  |  |  | 	done | 
					
						
							| 
									
										
										
										
											2006-01-15 15:28:35 +01:00
										 |  |  | 	exit 1 | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Where is ncurses.h? | 
					
						
							|  |  |  | ccflags() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if [ -f /usr/include/ncurses/ncurses.h ]; then | 
					
						
							|  |  |  | 		echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"' | 
					
						
							|  |  |  | 	elif [ -f /usr/include/ncurses/curses.h ]; then | 
					
						
							|  |  |  | 		echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"' | 
					
						
							| 
									
										
										
											
												kconfig: fix menuconfig on debian lenny
In 60f33b8 (kconfig: get rid of stray a.o, support ncursesw, 2006-01-15),
support to link menuconfig with ncursesw library was added.  To compute
the linker command option -l, we check "libncursesw.{so,a,dylib}" to allow
ncursesw to be used as a replacement ncurses.  However, when checking what
header file to include, we do not check /usr/include/ncursesw directory.
Add /usr/include/ncursesw to the list of directories that are checked.
With this patch, on my Debian Lenny box with libncursesw5-dev package but
not libncurses5-dev package, I can say "make menuconfig".
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
											
										 
											2010-09-18 19:25:32 -07:00
										 |  |  | 	elif [ -f /usr/include/ncursesw/curses.h ]; then | 
					
						
							|  |  |  | 		echo '-I/usr/include/ncursesw -DCURSES_LOC="<ncursesw/curses.h>"' | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | 	elif [ -f /usr/include/ncurses.h ]; then | 
					
						
							|  |  |  | 		echo '-DCURSES_LOC="<ncurses.h>"' | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		echo '-DCURSES_LOC="<curses.h>"' | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-21 12:03:09 +01:00
										 |  |  | # Temp file, try to clean up after us | 
					
						
							|  |  |  | tmp=.lxdialog.tmp | 
					
						
							|  |  |  | trap "rm -f $tmp" 0 1 2 3 15 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | # Check if we can link to ncurses | 
					
						
							|  |  |  | check() { | 
					
						
							| 
									
										
										
										
											2008-05-01 19:29:47 +02:00
										 |  |  |         $cc -xc - -o $tmp 2>/dev/null <<'EOF' | 
					
						
							|  |  |  | #include CURSES_LOC | 
					
						
							|  |  |  | main() {} | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | 	if [ $? != 0 ]; then | 
					
						
							| 
									
										
										
										
											2007-12-09 20:11:15 +01:00
										 |  |  | 	    echo " *** Unable to find the ncurses libraries or the"       1>&2 | 
					
						
							|  |  |  | 	    echo " *** required header files."                            1>&2 | 
					
						
							|  |  |  | 	    echo " *** 'make menuconfig' requires the ncurses libraries." 1>&2 | 
					
						
							|  |  |  | 	    echo " *** "                                                  1>&2 | 
					
						
							|  |  |  | 	    echo " *** Install ncurses (ncurses-devel) and try again."    1>&2 | 
					
						
							|  |  |  | 	    echo " *** "                                                  1>&2 | 
					
						
							|  |  |  | 	    exit 1 | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | 	fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | usage() { | 
					
						
							| 
									
										
										
										
											2008-12-03 22:11:14 +01:00
										 |  |  | 	printf "Usage: $0 [-check compiler options|-ccflags|-ldflags compiler options]\n" | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 21:37:45 -04:00
										 |  |  | if [ $# -eq 0 ]; then | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | 	usage | 
					
						
							|  |  |  | 	exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-21 12:03:09 +01:00
										 |  |  | cc="" | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | case "$1" in | 
					
						
							|  |  |  | 	"-check") | 
					
						
							|  |  |  | 		shift | 
					
						
							| 
									
										
										
										
											2006-01-15 15:28:35 +01:00
										 |  |  | 		cc="$@" | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | 		check | 
					
						
							|  |  |  | 		;; | 
					
						
							|  |  |  | 	"-ccflags") | 
					
						
							|  |  |  | 		ccflags | 
					
						
							|  |  |  | 		;; | 
					
						
							|  |  |  | 	"-ldflags") | 
					
						
							| 
									
										
										
										
											2006-01-15 15:28:35 +01:00
										 |  |  | 		shift | 
					
						
							|  |  |  | 		cc="$@" | 
					
						
							| 
									
										
										
										
											2006-01-08 18:39:44 +01:00
										 |  |  | 		ldflags | 
					
						
							|  |  |  | 		;; | 
					
						
							|  |  |  | 	"*") | 
					
						
							|  |  |  | 		usage | 
					
						
							|  |  |  | 		exit 1 | 
					
						
							|  |  |  | 		;; | 
					
						
							|  |  |  | esac |