bug-ncurses
[Top][All Lists]
Advanced

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

ncurses-5.2


From: Dan Grayson
Subject: ncurses-5.2
Date: Mon, 30 Jun 2003 20:25:12 -0500 (CDT)

In aclocal.m4 occurs this:

    AC_DEFUN([CF_INCLUDE_DIRS],
    [
    CPPFLAGS="$CPPFLAGS -I. -I../include"
    ...

I had CPPFLAGS set, upon entry to ./configure, to -I$HOME/local/include, and
because of the code above, $HOME/local/include was searched *before* ncurses'
own directory ../include, not what was intended.  I suggest something like
the following fix:

    CPPFLAGS="-I. -I../include $CPPFLAGS"





reply via email to

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