Wed Jan 22 01:49:21 2014 UTC ()
Add newline to separate decls, but really to provoke a commit.

Commit message that should have been in previous commit follows:

Version 2.2.0 is backwards compatible and adds the following new
features:

    Added Sarprop training
    Added fann_create_train for creating an empty training data struct
    Added fann_copy for copying an ANN
    Added cascade_min_out_epochs and cascade_min_cand_epochs to
    improve cascade training
    Added extra checks when training, to ensure that data and network
    input and output sizes matches
    Added Visual Studio 2010 solution
    Added support for 64bit architecture
    Cleanup in sources
    Moved source from CVS to GIT


(gdt)
diff -r1.5 -r1.6 pkgsrc/devel/fann/Makefile

cvs diff -r1.5 -r1.6 pkgsrc/devel/fann/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/fann/Makefile 2014/01/22 01:17:27 1.5
+++ pkgsrc/devel/fann/Makefile 2014/01/22 01:49:21 1.6
@@ -1,18 +1,19 @@ @@ -1,18 +1,19 @@
1# $NetBSD: Makefile,v 1.5 2014/01/22 01:17:27 gdt Exp $ 1# $NetBSD: Makefile,v 1.6 2014/01/22 01:49:21 gdt Exp $
2 2
3.include "Makefile.common" 3.include "Makefile.common"
4 4
5COMMENT= Fast Artificial Neural Network 5COMMENT= Fast Artificial Neural Network
6 6
7LICENSE= gnu-lgpl-v2.1 7LICENSE= gnu-lgpl-v2.1
8 8
9USE_TOOLS+= cmake 9USE_TOOLS+= cmake
10USE_CMAKE= yes 10USE_CMAKE= yes
 11
11USE_LANGUAGES+= c99 12USE_LANGUAGES+= c99
12# Perhaps not, but camke complains 13# Perhaps not, but camke complains
13USE_LANGUAGES+= c++ 14USE_LANGUAGES+= c++
14 15
15USE_TOOLS+= pkg-config 16USE_TOOLS+= pkg-config
16PKGCONFIG_OVERRIDE+= fann.pc.in 17PKGCONFIG_OVERRIDE+= fann.pc.in
17 18
18.include "../../mk/bsd.pkg.mk" 19.include "../../mk/bsd.pkg.mk"