(file) Return to configure CVS log (file) (dir) Up to [Development] / JSOC

Diff for /JSOC/configure between version 1.16 and 1.84

version 1.16, 2008/02/11 18:28:44 version 1.84, 2015/03/30 17:31:31
Line 1 
Line 1 
 #! /bin/csh -f #! /bin/csh -f
  
 set CLEAN = "no"  # The system configuration for configure script
 set CHKLIBS = "no"  set PERLBIN = ""
 set CCMD = "c"  set PYBIN = ""
 set LCMD = "l"  
   if ($PERLBIN == "") then
 foreach ARG ($argv)      if (-x /home/jsoc/bin/linux_x86_64/activeperl) then
     set FLAG = `echo $ARG | awk '{print substr($0, 2)}'`          set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl"
     if ($FLAG == $CCMD) then      else
           set PERLBIN = "perl"
       endif
   endif
   
   if ($PYBIN == "") then
       if (-x /home/jsoc/bin/linux_x86_64/activepython) then
           set PYBIN = "/home/jsoc/bin/linux_x86_64/activepython"
       else
           set PYBIN = "python"
       endif
   endif
   
   # set up $JSOC_MACHINE
   set JSOC_MACHINE = `build/jsoc_machine.csh`
   echo "Machine type is $JSOC_MACHINE"
   echo ""
   
   # Clean by default.
       set CLEAN = "yes"       set CLEAN = "yes"
     else if ($FLAG == $LCMD) then  set PROJCONFIG = ""
       set CHKLIBS = "yes"  set CLEANCMD = "d"
   set CFGSERVER = "no"
   set CFGSERVERARG = "s"
   set CUSTOMDEFSFILE = ""
   
   foreach THEARG ($argv)
       set LITERALSTR = '{ my($argin) = "'${THEARG}'"; my($flagout); $flagout = ($argin =~ /^-(.+)/)[0]; print $flagout; }'
       set FLAG = `$PERLBIN -e "$LITERALSTR"`
   
       if ($FLAG == $CLEANCMD) then
           set CLEAN = "no"
       else if ($FLAG == $CFGSERVERARG) then
           set CFGSERVER = "yes"
       else if (-e $THEARG) then
           set PROJCONFIG = $THEARG
     endif     endif
 end end
  
 if ($CHKLIBS == "no") then  # Usage:
     echo -n "Remove links for local project configuration..."  #   configure [ -d ] [ -s ] [ <project config file> ]
   
   # Backward compatibility - remove the links to the old make files in projconf
     if (-d proj) then     if (-d proj) then
         cd proj         cd proj
         if (-e configure) then         if (-e configure) then
Line 32  if ($CHKLIBS == "no") then
Line 66  if ($CHKLIBS == "no") then
         endif         endif
         cd ..         cd ..
     endif     endif
     echo "done"  
  
     echo -n "Remove links to man pages..."      # Always clean up links to man pages and re-create them.
       echo -n "Removing links to man pages..."
     if (-e man) then     if (-e man) then
         rm -rf man         rm -rf man
     endif     endif
     echo "done"     echo "done"
  
     echo -n "Removing links to headers..."      if ($CLEAN == "yes") then
           echo -n "Removing links in base/include to headers..."
           # Links in base/include
     if (-d base/include) then     if (-d base/include) then
         cd base/include         cd base/include
         find . -name "*.h" -exec rm {} \;         find . -name "*.h" -exec rm {} \;
Line 48  if ($CHKLIBS == "no") then
Line 84  if ($CHKLIBS == "no") then
     endif     endif
     echo "done"     echo "done"
  
           # Special link from base/drms/apps/serverdefs.h to localization/drmsparams.h
           echo -n "Removing link to serverdefs.h..."
           if (-e base/drms/apps) then
               cd base/drms/apps
               rm serverdefs.h
               cd ../../..
           endif
           echo "done"
   
           # Links in include
           echo -n "Removing links in include to headers..."
           if (-d include) then
               cd include
               find . -name "*.h" -exec rm {} \;
               find . -name "drmsparams*" -exec rm {} \;
               cd ..
           endif
           echo "done"
   
     echo -n "Removing links to scripts..."     echo -n "Removing links to scripts..."
           # Links in scripts
     if (-d scripts) then     if (-d scripts) then
         cd scripts         cd scripts
         find . -name "*" -exec rm {} \;              if ($? == 0) then
                   find . -type l -exec rm {} \;
               endif
         cd ..         cd ..
     endif     endif
     echo "done"     echo "done"
       # End clean flag
       endif
  
       # Always clean-up links to jsds and re-create them.
     echo -n "Removing links to jsds..."     echo -n "Removing links to jsds..."
     if (-d jsds) then     if (-d jsds) then
         cd jsds         cd jsds
         find . -name "*" -exec rm {} \;          if ($? == 0) then
         cd ..              find . -type l -exec rm {} \;
     endif     endif
     echo "done"          cd ..
   
     echo -n "Removing links to third-party libraries..."  
     if (-d lib_third_party) then  
         rm -rf lib_third_party  
     endif     endif
     echo "done"     echo "done"
   
     echo     echo
  
     if ($CLEAN == "yes") then     if ($CLEAN == "yes") then
Line 80  if ($CHKLIBS == "no") then
Line 136  if ($CHKLIBS == "no") then
         if (-x base/local/libs/soi/scripts/rmlinks.csh) then         if (-x base/local/libs/soi/scripts/rmlinks.csh) then
             base/local/libs/soi/scripts/rmlinks.csh             base/local/libs/soi/scripts/rmlinks.csh
         endif         endif
     else  
         echo -n "Setting links for local project configuration..."  
         if (-e suflag.txt) then  
             cd proj  
             ln -sf ../projconf/su/configure configure  
             ln -sf ../projconf/su/make_basic.mk make_basic.mk  
             ln -sf ../projconf/su/Rules.mk Rules.mk  
             ln -sf ../projconf/su/target.mk target.mk  
             cd ..  
         else  
             cd proj  
             ln -sf ../projconf/ex/configure configure  
             ln -sf ../projconf/ex/make_basic.mk make_basic.mk  
             ln -sf ../projconf/ex/Rules.mk Rules.mk  
             ln -sf ../projconf/ex/target.mk target.mk  
             cd ..  
         endif         endif
         echo "done"  
       # Make include directories here, since they are used by multiple script blocks below
       if (!(-d base/include)) then
           mkdir -p base/include
       endif
   
       if (!(-d include)) then
           mkdir -p include
       endif
  
         echo "Setting links to man pages..."         echo "Setting links to man pages..."
         if (-d /home/jsoc/man) then         if (-d /home/jsoc/man) then
Line 106  if ($CHKLIBS == "no") then
Line 154  if ($CHKLIBS == "no") then
             endif             endif
         endif         endif
         echo "done"         echo "done"
       echo
  
         echo "Setting links to headers..."      echo "Setting links to jsds..."
         if (!(-d base/include)) then      if (!(-d jsds)) then
             mkdir -p base/include          mkdir jsds
         endif         endif
         cd base/include      cd jsds
         find .. -path '../include' -prune -o -name \*.h  \( \( -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o -exec echo "  " {} " ERROR - couldn't create link" \; \)      find ../base \( -name \*.jsd -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o \( -name \*.jsd -exec echo "  " {} " ERROR - couldn't create link" \; \)
         cd ../..      cd ..
         echo "done"         echo "done"
         echo         echo
  
         echo "Setting links to scripts..."      # generate links for DSDS/SOI dynamic libraries - only do this if
         if (!(-d scripts)) then      # user's environment has access to /home/soi/CM
             mkdir scripts      if (-d /home/soi/CM/include && -d /home/soi/CM/src) then
           if (-x base/local/libs/dsds/scripts/genlinks.csh) then
               base/local/libs/dsds/scripts/genlinks.csh
         endif         endif
         cd scripts  
   
         # Sums scripts  
         find ../base/sums/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o -exec echo "  " {} " ERROR - couldn't create link" \;  
   
         # Util scripts  
         find ../base/util/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o -exec echo "  " {} " ERROR - couldn't create link" \;  
   
         # DRMS / IDL-interface scripts  
         find ../base/drms/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o -exec echo "  " {} " ERROR - couldn't create link" \;  
  
         # Project-specific scripts - these won't show up if you don't have the project source.          if (-x base/local/libs/soi/scripts/genlinks.csh) then
         if (-x ../proj/configure) then              base/local/libs/soi/scripts/genlinks.csh
             ../proj/configure          endif
         endif         endif
  
         cd ..  
         echo "done"         echo "done"
         echo         echo
  
         echo "Setting links to jsds..."      #######################
         if (!(-d jsds)) then      ## Site Localization ##
             mkdir jsds      #######################
   
       # Path to the configuration file - at some point, make this an argument to the configure script
       set LOCALIZATIONDIR = ""
       set RELLOCALIZATIONDIR = ""
       set conflocal = "config.local"
   
       if (-e $conflocal) then
           set RELLOCALIZATIONDIR = `perl -n -e 'if ($_ =~ /^LOCALIZATIONDIR\s+(.+)/) { print $1; }' $conflocal`
         endif         endif
         cd jsds  
         find ../base \( -name \*.jsd -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o \( -name \*.jsd -exec echo "  " {} " ERROR - couldn't create link" \; \)  
         cd ..  
         echo "done"  
         echo  
  
         # Set links to third-party libraries      if ($LOCALIZATIONDIR == "") then
         echo "Setting links to third-party libraries"          set RELLOCALIZATIONDIR = localization
         if (!(-d lib_third_party)) then  
             mkdir lib_third_party  
         endif  
         cd lib_third_party  
   
         if (-e ../suflag.txt) then  
             ln -sf /home/jsoc/include include  
             ln -sf /home/jsoc/lib lib  
         else  
             # Non-Stanford users.  
         endif         endif
  
         set TPWARN = 0      # Make the path absoluate
       set LOCALIZATIONDIR = ${PWD}/${RELLOCALIZATIONDIR}
  
         # Libraries required by all      # Reset localization.
         if (!(-e lib/linux_x86_64/libcfitsio.a)) then      if ($CLEAN == "yes") then
             echo "D'OH! - Can't find required library: lib/linux_x86_64/libcfitsio.a"          # This script will need to read the config.local file to get the
             set TPWARN = 1          # localization directory. Otherwise, just use JSOC/localization as the default.
           if (!(-d ${LOCALIZATIONDIR})) then
               mkdir ${LOCALIZATIONDIR}
               if ($? != 0) then
                   echo "Error creating localization directory."
               endif
         endif         endif
  
         if (!(-e lib/linux_ia32/libcfitsio.a)) then          if (-e ${LOCALIZATIONDIR}/drmsparams.h) then
             echo "D'OH! - Can't find required library: lib/linux_ia32/libcfitsio.a"              rm ${LOCALIZATIONDIR}/drmsparams.h
             set TPWARN = 1  
         endif         endif
  
         if (-e ../suflag.txt) then          if (-e ${LOCALIZATIONDIR}/drmsparams.mk) then
             # Stanford users' required libs.              rm ${LOCALIZATIONDIR}/drmsparams.mk
             if (!(-e lib/linux_x86_64/libfftw3f.a)) then  
                 echo "D'OH! - Can't find required library: $JSOCROOT/lib/linux_x86_64/libfftw3f.a"  
                 set TPWARN = 1  
             endif             endif
  
             if (!(-e lib/linux_ia32/libfftw3f.a)) then          if (-e ${LOCALIZATIONDIR}/drmsparams.pm) then
                 echo "D'OH! - Can't find required library: $JSOCROOT/lib/linux_ia32/libfftw3f.a"              rm ${LOCALIZATIONDIR}/drmsparams.pm
                 set TPWARN = 1  
             endif             endif
   
           if (-e ${LOCALIZATIONDIR}/drmsparams.py) then
               rm ${LOCALIZATIONDIR}/drmsparams.py
           endif
   
           if (!(-e configsdp.txt)) then
               # This is NetDRMS.
               if (!(-e config.local)) then
                   echo "Error: config.local not found. If you have a saved version of this"
                   echo "       file from a previous installation, you should copy that into"
                   echo "       this directory and rerun configure. Otherwise, copy the file"
                   echo "       config.local.template to config.local and edit the config.local"
                   echo "       file to contain site-appropriate values."
                   echo
                   echo "*** IMPORTANT *** The edited config.local will contain site-specific"
                   echo "    values that should not be modified during subsequent updates to"
                   echo "    NetDRMS. Keep a safe copy of it somewhere outside of the DRMS"
                   echo "    directory tree, for example in /usr/local. After each NetDRMS"
                   echo "    update, ensure this file is in place."
                   exit 1;
               endif
           endif
   
           # We now call localize.py for both Stanford and NetDRMS builds.
           if ($CFGSERVER == "yes") then
               $PYBIN ./localize.py -d ${LOCALIZATIONDIR} -b drmsparams -s
         else         else
             # Non-Stanford users' required libs.              $PYBIN ./localize.py -d ${LOCALIZATIONDIR} -b drmsparams
         endif         endif
       endif # End reset localization
  
         if ($TPWARN) then      echo "Setting links to scripts..."
             echo "Did you update $JSOCROOT/configure to create links to installed third-party libraries?"      if (!(-d scripts)) then
           mkdir scripts
         endif         endif
  
       if ($CLEAN == "yes") then
           cd scripts
   
           # Sums scripts
           find ../base/sums/scripts -mindepth 1 -path \*CVS -prune -o -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'
   
           # Util scripts
           find ../base/util/scripts -mindepth 1 -path \*CVS -prune -o -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'
   
           # Export scripts
           find ../base/export/scripts -mindepth 1 -path \*CVS -prune -o -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'
   
           # DRMS / IDL-interface scripts
           find ../base/drms/scripts -mindepth 1 -path \*CVS -prune -o -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'
   
           # Project-specific scripts - these won't show up if you don't have the project source.
           if (-x ${LOCALIZATIONDIR}/configure) then
               ${LOCALIZATIONDIR}/configure
           endif
         cd ..         cd ..
       endif
   
         echo "done"         echo "done"
         echo         echo
  
         # generate links for DSDS/SOI dynamic libraries - only do this if      echo "Setting links to headers..."
         # user's environment has access to /home/soi/CM  
         if (-d /home/soi/CM/include && -d /home/soi/CM/src) then  
             if (-x base/local/libs/dsds/scripts/genlinks.csh) then  
                 base/local/libs/dsds/scripts/genlinks.csh  
             endif  
  
             if (-x base/local/libs/soi/scripts/genlinks.csh) then      # When localize.py was added, we removed the repository version of serverdefs.h, and we stopped generating JSOC/base/include/localization.h.
                 base/local/libs/soi/scripts/genlinks.csh      # To support legacy code, we need to make a link from serverdefs.h to ${LOCALIZATIONDIR}/drmsparams.h (the replacement for serverdefs.h
       # at Stanford) and from JSOC/base/include/localization.h to ${LOCALIZATIONDIR}/drmsparams.h (the replacement for localization.h
       # for NetDRMs builds). However, some files are looking for JSOC/base/drms/apps/serverdefs.h (instead of JSOC/base/include, the correct path).
       # If we make a link from JSOC/base/drms/apps/serverdefs.h to ${LOCALIZATIONDIR}/drmsparams.h, then the script below will make links from
       # JSOC/base/include/serverdefs.h and JSOC/include/serverdefs.h to JSOC/base/drms/apps/serverdefs.h, which then links to ${LOCALIZATIONDIR}/drmsparams.h.
       if (!(-l base/drms/apps/serverdefs.h)) then
           cd base/drms/apps
           ln -s ../../../${RELLOCALIZATIONDIR}/drmsparams.h serverdefs.h
           cd ../../..
             endif             endif
   
       if (!(-l base/include/localization.h)) then
           cd base/include
           ln -s ../../${RELLOCALIZATIONDIR}/drmsparams.h localization.h
           cd ../..
         endif         endif
   
       if ($CLEAN == "yes") then
           cd base/include
           find .. -path '../include' -prune -o -name \*.h -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'
           cd ../..
   
           cd include
           if (-d ../base/include) then
               find ../base/include -name \*.h -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'
     endif     endif
           cd ..
 endif endif
  
 # Enter required library names and versions here.      cd include
 if ($CHKLIBS == "yes") then      # ${LOCALIZATIONDIR} is an absolute path
       if (!(-l drmsparams.h)) then
           ln -s ../${RELLOCALIZATIONDIR}/drmsparams.h
       endif
       if (!(-l drmsparams.pm)) then
           ln -s ../${RELLOCALIZATIONDIR}/drmsparams.pm
       endif
       if (!(-l drmsparams.py)) then
           ln -s ../${RELLOCALIZATIONDIR}/drmsparams.py
       endif
  
       cd ..
       echo "done"
     echo     echo
     echo "JSOC expects all third-party library header files to be located at $JSOCROOT/lib_third_party/include/ and all third-party libraries to be located at $JSOCROOT/lib_third_party/$JSOC_MACHINE/.  If you wish to build a target that uses one of the following third-paty libraries, please install the required library version and create a link from from $JSOCROOT/lib_third_party/include/ and $JSOCROOT/lib_third_party/$JSOC_MACHINE/ to the installed library headers and binary files, respectively."  
     echo  
     echo "Example:"  
     echo "  cd $JSOCROOT/lib_third_party/"  
     echo "  ln -s /usr/local/include include"  
     echo "  cd $JSOCROOT/lib_third_party/$JSOC_MACHINE/"  
     echo "  ln -s /usr/local/lib/libfftw3f.a libfftw3f.a "  
     echo  
     echo "Library libfftw3f.a (v. 3.1.2) required for targets: universe, examples, helloworld, xinterp, demo_td08062007"  
     echo "Library libcfitsio.a (v. 3.03) required for targets: universe, examples, f_ingest_gong_mrv, f_dup_gong_mrv"  
   
 #    echo "Library libcfitsio.a (v. 3.03) required for targets: examples, helloworld"  
 #    echo "Library libmkl.so (v. 9.0) required for targets: examples, helloworld"  
 #    if ($JSOC_MACHINE == "linux_x86_64") then  
 #       echo "Library libmkl_lapack64.so (v. 9.0) required for targets: examples, helloworld"  
 #    else echo "Library libmkl_lapack32.so (v. 9.0) required for targets: examples, helloworld"  
 #    endif  
   
   
 endif  


Legend:
Removed from v.1.16  
changed lines
  Added in v.1.84

Karen Tian
Powered by
ViewCVS 0.9.4