]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - misc/ncurses-config.in
ncurses 5.7 - patch 20090103
[ncurses.git] / misc / ncurses-config.in
index 1da156c7d61a4a642002f58346ae70b3d8913b3c..b339fc006fcd832a7aa609598d931ae91bb5d1db 100644 (file)
@@ -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