X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=misc%2Fncurses-config.in;h=b339fc006fcd832a7aa609598d931ae91bb5d1db;hp=1da156c7d61a4a642002f58346ae70b3d8913b3c;hb=96097feb6ca4e2c4c944f3ed789c89d964611655;hpb=027ae42953e3186daed8f3882da73de48291b606 diff --git a/misc/ncurses-config.in b/misc/ncurses-config.in index 1da156c7..b339fc00 100644 --- a/misc/ncurses-config.in +++ b/misc/ncurses-config.in @@ -1,7 +1,7 @@ #!@SHELL@ -# $Id: ncurses-config.in,v 1.11 2006/10/28 20:22:52 tom Exp $ +# $Id: ncurses-config.in,v 1.15 2009/01/03 21:10:18 tom Exp $ ############################################################################## -# Copyright (c) 2006 Free Software Foundation, Inc. # +# Copyright (c) 2006-2007,2009 Free Software Foundation, Inc. # # # # Permission is hereby granted, free of charge, to any person obtaining a # # copy of this software and associated documentation files (the "Software"), # @@ -34,11 +34,17 @@ prefix="@prefix@" exec_prefix="@exec_prefix@" bindir="@bindir@" +includedir="@includedir@" libdir="@libdir@" datadir="@datadir@" mandir="@mandir@" -THIS="ncurses@DFT_ARG_SUFFIX@" +THIS="${LIB_NAME}@DFT_ARG_SUFFIX@" + +LANG=C; export LANG +LANGUAGE=C; export LANGUAGE +LC_ALL=C; export LC_ALL +LC_CTYPE=C; export LC_CTYPE test $# = 0 && exec @SHELL@ $0 --error @@ -70,11 +76,11 @@ while test $# -gt 0; do # compile/link --cflags) INCS= - if test "${prefix}/include" != /usr/include ; then - INCS="-I${prefix}/include" + if test "${includedir}" != /usr/include ; then + INCS="-I${includedir}" fi if test "@WITH_OVERWRITE@" != no ; then - INCS="$INCS -I${prefix}/include/${THIS}" + INCS="$INCS -I${includedir}/${THIS}" fi sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO $INCS @@ -82,7 +88,7 @@ ENDECHO ;; --libs) sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO - -L${exec_prefix}/lib @EXTRA_LDFLAGS@ -l${THIS} @LIBS@ + -L$libdir @EXTRA_LDFLAGS@ -l${THIS} @LIBS@ ENDECHO ;; # identification @@ -102,6 +108,9 @@ ENDECHO --datadir) echo "${datadir}" ;; + --includedir) + echo "${includedir}" + ;; --libdir) echo "${libdir}" ;; @@ -137,6 +146,7 @@ Options: --bindir echos the directory containing ${THIS} programs --datadir echos the directory containing ${THIS} data + --includedir echos the directory containing ${THIS} header files --libdir echos the directory containing ${THIS} libraries --mandir echos the directory containing ${THIS} manpages --terminfo echos the \$TERMINFO terminfo database path