~ubuntu-branches/ubuntu/natty/dnprogs/natty

« back to all changes in this revision

Viewing changes to libvaxdata/win32/readme

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Caulfield
  • Date: 2005-10-30 15:09:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051030150921-h9yn20kzxtwmjh2a
Tags: 2.32
* fal removes [] from names as they could cause confusion.
* Fixed crash in libdap if a connection gets closed more than once.
* Fix libdnet's dnet_recv to cope with 0 being returned from recvmsg.
* Some minor manpage & packaging bugs fixed.
* Include dnlogin, a replacement for sethost.
* Include libvaxdata - a library of routines for converting between VAX.
  data formats and Unix ones. Contributed by Larry Baker of the 
  US Geological Survey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Two DOS Batch scripts have been provided for Windows:
 
2
 
 
3
   cwmake.bat    Metrowerks CodeWarrior C (MWCC)
 
4
   vcmake.bat    Microsoft Visual C (CL)
 
5
 
 
6
To create libvaxdata.o from here:
 
7
 
 
8
   For Metrowerks CodeWarrior:
 
9
 
 
10
      > "C:\Program Files\Metrowerks\CodeWarrior\Other Metrowerks Tools\
 
11
      Command Line Tools\CWEnv.bat" [on a single line]
 
12
      > cwmake.bat [ all | libvaxdata | clean ]
 
13
 
 
14
   For Microsoft Visual C++:
 
15
 
 
16
      > "C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVars32.bat"
 
17
      > vcmake.bat [ all | libvaxdata | clean ]
 
18
 
 
19
Substitute the correct path to set up the compiler command-line environment for
 
20
your compiler.  The default make target is all.  The library and all object
 
21
files will be written here.
 
22
 
 
23
To link a C program with the library:
 
24
 
 
25
   For Metrowerks CodeWarrior:
 
26
 
 
27
      > MWLD program.obj path\libvaxdata.lib
 
28
 
 
29
   For Microsoft Visual C++:
 
30
 
 
31
      > LINK program.obj path\libvaxdata.lib
 
32
 
 
33
substituting the path to the library for here (assuming it has not been moved
 
34
or copied somewhere else).