<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>5bde33db - Use SRCTOP-relative paths and .CURDIR with :H instead of &quot;..&quot; specified paths</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#5bde33db</link>
        <description>Use SRCTOP-relative paths and .CURDIR with :H instead of &quot;..&quot; specified pathsThis implifies pathing in make/displayed outputMFC after:    3 weeksSponsored by: Dell EMC Isilon

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Fri, 20 Jan 2017 04:27:40 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6b129086 - Convert libraries to use LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#6b129086</link>
        <description>Convert libraries to use LIBADDWhile here reduce a bit overlinking

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 11:07:26 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3bdf7758 - NO_MAN= has been deprecated in favor of MAN= for some time, go ahead</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#3bdf7758</link>
        <description>NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn&apos;t a simple mechanical change, and will beaddressed in a future commit.

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Sun, 13 Apr 2014 05:21:56 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>53089271 - Convert old make variable modifiers :U and :L to bmake :tu and :tl.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#53089271</link>
        <description>Convert old make variable modifiers :U and :L to bmake :tu and :tl.Reviewed by:	sjg

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Sun, 02 Jun 2013 11:44:23 +0000</pubDate>
        <dc:creator>Tijl Coosemans &lt;tijl@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>935f512c - Only install manpages and html documentation in the ncurses/*w (wchar)</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#935f512c</link>
        <description>Only install manpages and html documentation in the ncurses/*w (wchar)builds so that it is only installed once.  This is consistent with theexisting decision to only install headers in the that case.

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Thu, 24 Jan 2013 16:38:47 +0000</pubDate>
        <dc:creator>Brooks Davis &lt;brooks@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4409495b - - When I introduce wide character enabled ncurses into base, all headers</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#4409495b</link>
        <description>- When I introduce wide character enabled ncurses into base, all headers  are installed twice (once in non-widec version, onec in widec version).  Headers with widec enabled are compatible with non-widec version  for libraries. However, if you do a repeat build/install, the curses.h  is always overwritten. The reason is that headers and statics libraries  are installed with -S option to preserve their mtime if no actual changes,  which saves time when doing incremental builds. The curses.h is installed  by non-widec ncurses first, then by widec ncurses. So next time, it happens  again. You see something like this:  # pwd  /usr/src/lib/ncurses  # make -s installincludes INSTALL=&quot;install -v&quot;  ===&gt; ncurses (installincludes)  install: curses.h -&gt; /usr/include/curses.h  ===&gt; ncursesw (installincludes)  install: curses.h -&gt; /usr/include/curses.h  # make -s installincludes INSTALL=&quot;install -v&quot;  ===&gt; ncurses (installincludes)  install: curses.h -&gt; /usr/include/curses.h  ===&gt; ncursesw (installincludes)  install: curses.h -&gt; /usr/include/curses.h  The solution is to disable installing headers in non-widec version. Now  you see this:  # pwd  /usr/src/lib/ncurses  # make -s installincludes INSTALL=&quot;install -v&quot;  ===&gt; ncurses (installincludes)  ===&gt; ncursesw (installincludes)  # make -s installincludes INSTALL=&quot;install -v&quot;  ===&gt; ncurses (installincludes)  ===&gt; ncursesw (installincludes)  For form/panel/menu libraries, the headers are the same for both version.  To be consistent with ncurses, I also disable the installation in non-widec  version.Reported by:	desReviewed by:	ruThanks to:	ruApproved by:	delphij (mentor)MFC after:	2 weeks

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Fri, 25 May 2007 02:27:46 +0000</pubDate>
        <dc:creator>Rong-En Fan &lt;rafan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>31b4134f - Enable ncurses wide character support</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#31b4134f</link>
        <description>Enable ncurses wide character supportApproved by:	delphij (mentor)Tested by:	kris on pointyhat (early version), current@

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Fri, 09 Mar 2007 12:11:58 +0000</pubDate>
        <dc:creator>Rong-En Fan &lt;rafan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>557158de - - style.Makefile(9) fix</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#557158de</link>
        <description>- style.Makefile(9) fix  - first line is $FreeBSD$  - Reorder special variables: DPADD, LPADD, CFLAGS  - Use = instead of += for variables that are initially empty  - Use space instead of tab after :  - Use one tab after =- Use .SUFFIXES for section 3 manual page which simplifies Makefile a lot- Use SHAREDIR instead of /usr/share- Remove SRCDIR in INCS since we set .PATH properly- Use plural in variable name when it stands for more that one source fileReviewed by:	ruApproved by:	delphij (mentor)

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Fri, 09 Mar 2007 09:54:07 +0000</pubDate>
        <dc:creator>Rong-En Fan &lt;rafan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f737c0d5 - Introduce new ncurses build glues which are part of ncurses 5.6 update.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#f737c0d5</link>
        <description>Introduce new ncurses build glues which are part of ncurses 5.6 update.Approved by:	delphijInspired by:	DragonFly&apos;s and lib/bind

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Sat, 20 Jan 2007 07:46:45 +0000</pubDate>
        <dc:creator>Rong-En Fan &lt;rafan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e4a93f1e - Add missing shared library interdependencies.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#e4a93f1e</link>
        <description>Add missing shared library interdependencies.

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Thu, 10 Nov 2005 18:07:07 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3a624f5e - Use</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#3a624f5e</link>
        <description>Use	cat ${.ALLSRC} &gt; ${.TARGET}rather than	ln -sf ${.ALLSRC} ${.TARGET}not to depends on absolute-path of symbolic links.Commented by:  marcel, obrien, bde

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Fri, 06 Jun 2003 13:46:55 +0000</pubDate>
        <dc:creator>Jun Kuriyama &lt;kuriyama@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>42d4025c - Make this a little easier to build standalone.  (same change as libpanel)</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#42d4025c</link>
        <description>Make this a little easier to build standalone.  (same change as libpanel)

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Tue, 21 May 2002 07:08:30 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4a558355 - MAN[1-9] -&gt; MAN.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#4a558355</link>
        <description>MAN[1-9] -&gt; MAN.

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Tue, 27 Mar 2001 17:27:19 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>14eadf47 - Install manpages, including appropriate MLINKS.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#14eadf47</link>
        <description>Install manpages, including appropriate MLINKS.

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Tue, 05 Dec 2000 12:38:23 +0000</pubDate>
        <dc:creator>Thomas Gellekum &lt;tg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fa741a91 - Update for ncurses 5.1-20001009 import</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#fa741a91</link>
        <description>Update for ncurses 5.1-20001009 import

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Wed, 11 Oct 2000 08:19:56 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>80026b8a - Add missing source files. Sort SRCS.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#80026b8a</link>
        <description>Add missing source files. Sort SRCS.PR:		18631

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Wed, 24 May 2000 09:01:23 +0000</pubDate>
        <dc:creator>Thomas Gellekum &lt;tg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d05257b0 - Replace beforeinstall target with new variables used by .mk system.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#d05257b0</link>
        <description>Replace beforeinstall target with new variables used by .mk system.Reviewed by:	marcel, and make world

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Fri, 14 Jan 2000 07:57:47 +0000</pubDate>
        <dc:creator>Rodney W. Grimes &lt;rgrimes@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a3680097 - Add bmake glue for libform (the SVSV-style ETI curses form driver from</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/lib/ncurses/form/Makefile#a3680097</link>
        <description>Add bmake glue for libform (the SVSV-style ETI curses form driver fromncurses)

            List of files:
            /freebsd-12.1/lib/ncurses/form/Makefile</description>
        <pubDate>Sun, 05 Sep 1999 05:37:49 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
