Changeset 775 for trunk

Show
Ignore:
Timestamp:
12/12/11 14:09:23 (5 months ago)
Author:
mgalloy
Message:

Removing RESOLVE_ALL from build script. IDLdoc is not intended to be run from a runtime or VM environment, so IDL library routines are not required to be built into the .sav file. Providing IDL 6.4 library routines overrides possibly newer ones available from the user.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/idldoc_build.pro

    r661 r775  
    1010@idldoc_compile_all 
    1111 
    12 ; compile any system routines that are used in the required code 
    13 resolve_all, skip_routines=['mg_termistty'] 
     12; NOT resolving all IDL lib routines anymore, so that the .sav file generated 
     13; with IDL 6.4 can be safely used with later versions of IDL that may have 
     14; different versions of the IDL library routines. IDLdoc is not intended to 
     15; run in a runtime or VM environment, so they are not needed anyway. The .sav 
     16; file is produced simply as a way to package all the required routines in a  
     17; single file. 
    1418 
    1519; create the sav file 
  • trunk/Makefile

    r769 r775  
    1 VERSION=3.4.1 
     1VERSION=3.4.2 
    22REVISION=-r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 
    33IDL=idl64 
    4 DOC_IDL=idl 
     4DOC_IDL=idl81 
    55 
    66.PHONY: all clean doc book regression tests version srcdist dist updates 
  • trunk/src/idldoc_version.pro

    r769 r775  
    1515  compile_opt strictarr, hidden 
    1616   
    17   version = '3.4.1' 
    18   revision = '-r767' 
     17  version = '3.4.2' 
     18  revision = '-r770' 
    1919   
    2020  return, version + (keyword_set(full) ? (' ' + revision) : '')