Update of /cvsroot/linux-decnet/dnprogs/libvaxdata/macosx
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv3392/libvaxdata/macosx
Modified Files:
makefile.gcc makefile.xlc
Log Message:
New version of libvaxdata:
The new version corrects the conversions for doubles (D, G) and double doubles (H); floats (F) were fine. For reference, the USGS web page for libvaxdata is http://pubs.usgs.gov/of/2005/1424/.
Index: makefile.gcc
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/libvaxdata/macosx/makefile.gcc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.gcc 25 Oct 2005 07:32:13 -0000 1.1
--- makefile.gcc 19 Aug 2010 08:39:00 -0000 1.2
***************
*** 3,7 ****
# data for Macintosh OS X using GNU C (gcc).
#
! # Shell command syntax: make -f makefile.gcc [ all | libvaxdata | clean ]
#
# -O3 (highest level of optimization) -ansi (strict ANSI)
--- 3,9 ----
# data for Macintosh OS X using GNU C (gcc).
#
! # Shell command syntax:
! #
! # make -f makefile.gcc [ all | libvaxdata | test | clean ]
#
# -O3 (highest level of optimization) -ansi (strict ANSI)
***************
*** 9,11 ****
CFLAGS = -O3 -ansi
! include makefile.darwin
--- 11,13 ----
CFLAGS = -O3 -ansi
! include makefile.macosx
Index: makefile.xlc
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/libvaxdata/macosx/makefile.xlc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.xlc 25 Oct 2005 07:32:13 -0000 1.1
--- makefile.xlc 19 Aug 2010 08:39:00 -0000 1.2
***************
*** 3,7 ****
# data for Macintosh OS X using IBM XL C (xlc).
#
! # Shell command syntax: make -f makefile.xlc [ all | libvaxdata | clean ]
#
# -O3 (intensive optimization) -qlanglvl=stdc89 (strict ANSI)
--- 3,9 ----
# data for Macintosh OS X using IBM XL C (xlc).
#
! # Shell command syntax:
! #
! # make -f makefile.xlc [ all | libvaxdata | test | clean ]
#
# -O3 (intensive optimization) -qlanglvl=stdc89 (strict ANSI)
***************
*** 10,12 ****
CFLAGS = -O3 -qlanglvl=stdc89 -D_ANSI_SOURCE -D_POSIX_SOURCE
! include makefile.darwin
--- 12,14 ----
CFLAGS = -O3 -qlanglvl=stdc89 -D_ANSI_SOURCE -D_POSIX_SOURCE
! include makefile.macosx
|