6f2a334e42
CHangelog: * Changes in opensource COBOL 1.4.0J ** New features *** Supports for Microsoft Windows ( Visual Studio and CL compiler ) Added win32 directory in opensource COBOL package, and prepared Solution Files for Visual Studio. *** Enhanced CUI features (1) Add a new function "CBL_OC_KEISEN". This displays a KEISEN ( vertical or horizontal ruled lines ) on the screen. (2) Supports SJIS multi-byte character input and output on the screen. ** Changes *** Added VBISAM to the opensource COBOL package *** Fixed not to abandon REPLACE after following COPY REPLACING has done *** Though old style STOP statement maybe skipped, it should be still at least recognized as non-nil statement on empty check *** Stop editing initial value of national-edited item *** Changed NATIONAL comparison to be independent on COLLATING SEQUENCE setting *** Fixed memory leaks in decoding national words *** Fixed behavior of COPY REPLACING LEADING/TRAILING according to the standard *** Fixed undecoded national item names appear in runtime messages *** Fixed undecoded national item names appear in compilation messages *** Prefixing/Suffixing should have no effect on FILLER item *** Fixed compilation error on some SOURCE FORMAT FREE usage *** Fixed bug in field subscript boundary check in cond expression *** Preserve system time when date is modified by COB_DATE *** Avoid reporting wrong section/paragraph name in error message *** Fixed bug in reference modification boundary check in MOVE statement *** Fixed initialization bug of ZonedDecimal variable defined as SIGN SEPARATE *** Fixed initialization bug of ZonedDecimal variable when using -fsign-ebcdic option ** Other Updates *** added and enhanced some tests *** updated message catalog for 'ja' *** bug fix some problem
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2015/04/11 00:44:34 ryoon Exp $
|
|
|
|
DISTNAME= opensource-cobol-1.4.0J-utf8
|
|
PKGNAME= ${DISTNAME:S/-utf8//}
|
|
CATEGORIES= lang
|
|
MASTER_SITES= -http://www.osscons.jp/osscobol/files/?action=cabinet_action_main_download&block_id=414&room_id=21&cabinet_id=11&file_id=289&upload_id=564
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://www.osscons.jp/osscobol/
|
|
COMMENT= UTF-8 version of opensource COBOL, OpenCOBOL with Japanese extensions
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
CONFLICTS= opencobol-[0-9]* open-cobol-ce-[0-9]*
|
|
|
|
BDB_ACCEPTED= db4
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-utf8
|
|
|
|
TEST_TARGET= check
|
|
|
|
#BUILDLINK_TRANSFORM+= l:db:db4
|
|
|
|
# XXX This SUBST will work for NetBSD. Be more intelligent.
|
|
SUBST_CLASSES+= bdb
|
|
SUBST_MESSAGE.bdb= Fixing runrime error.
|
|
SUBST_STAGE.bdb= pre-configure
|
|
SUBST_FILES.bdb= configure
|
|
SUBST_SED.bdb= -e 's,db-4.4,db4,g'
|
|
SUBST_SED.bdb+= -e 's,ncurses,curses,g'
|
|
|
|
INFO_FILES= yes
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/gmp/buildlink3.mk"
|
|
.include "../../devel/libltdl/buildlink3.mk"
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../mk/bdb.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|