Changeset 1213 for trunk/config/scripts
- Timestamp:
- Dec 10, 2009, 5:31:31 PM (16 years ago)
- Location:
- trunk/config/scripts
- Files:
-
- 4 edited
-
env.csh.SH (modified) (3 diffs)
-
env.sh.SH (modified) (3 diffs)
-
install.sh.SH (modified) (3 diffs)
-
move.sh.SH (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/config/scripts/env.csh.SH
r1195 r1213 57 57 unsetenv G4UI_NONE 58 58 unsetenv G4UI_BUILD_WIN32_SESSION 59 unsetenv G4UI_BUILD_XAW_SESSION60 59 unsetenv G4UI_BUILD_XM_SESSION 61 60 unsetenv G4UI_USE_TCSH 62 61 unsetenv G4UI_USE_WIN32 63 unsetenv G4UI_USE_XAW64 62 unsetenv G4UI_USE_XM 65 63 unsetenv G4UI_USE_QT … … 228 226 229 227 #+ 230 if ( X$g4ui_build_xaw_session == Xy ) then231 setenv G4UI_BUILD_XAW_SESSION 1232 echo "On this machine the G4UI_BUILD_XAW_SESSION=\$G4UI_BUILD_XAW_SESSION"233 endif234 235 #+236 if ( X$g4ui_use_xaw == Xy ) then237 setenv G4UI_USE_XAW 1238 echo "On this machine the G4UI_USE_XAW=\$G4UI_USE_XAW"239 endif240 241 #+242 228 if ( X$g4ui_build_xm_session == Xy ) then 243 229 setenv G4UI_BUILD_XM_SESSION 1 … … 431 417 echo "On this machine the XMLIBS=\$XMLIBS" 432 418 endif 433 434 #+435 if ( X$g4ui_build_xaw_session != X ) then436 setenv XAWFLAGS "$g4ui_xawflags"437 echo "On this machine the XAWFLAGS=\$XAWFLAGS"438 endif439 440 #+441 if ( X$g4ui_build_xaw_session != X ) then442 setenv XAWLIBS "$g4ui_xawlibs"443 echo "On this machine the XAWLIBS=\$XAWLIBS"444 endif445 446 419 447 420 # -
trunk/config/scripts/env.sh.SH
r1195 r1213 57 57 unset G4UI_NONE 58 58 unset G4UI_BUILD_WIN32_SESSION 59 unset G4UI_BUILD_XAW_SESSION60 59 unset G4UI_BUILD_XM_SESSION 61 60 unset G4UI_USE_TCSH 62 61 unset G4UI_USE_WIN32 63 unset G4UI_USE_XAW64 62 unset G4UI_USE_XM 65 63 unset G4UI_USE_QT … … 290 288 291 289 #+ 292 if [ X$g4ui_build_xaw_session = Xy ] ; then293 G4UI_BUILD_XAW_SESSION=1294 export G4UI_BUILD_XAW_SESSION295 if [ X\$g4non_display = X ] ; then296 echo "On this machine the G4UI_BUILD_XAW_SESSION=\$G4UI_BUILD_XAW_SESSION"297 fi298 fi299 300 #+301 if [ X$g4ui_use_xaw = Xy ] ; then302 G4UI_USE_XAW=1303 export G4UI_USE_XAW304 if [ X\$g4non_display = X ] ; then305 echo "On this machine the G4UI_USE_XAW=\$G4UI_USE_XAW"306 fi307 fi308 309 #+310 290 if [ X$g4ui_build_xm_session = Xy ] ; then 311 291 G4UI_BUILD_XM_SESSION=1 … … 597 577 fi 598 578 fi 599 600 #+601 if [ X$g4ui_build_xaw_session != X ] ; then602 XAWFLAGS="$g4ui_xawflags"603 export XAWFLAGS604 if [ X\$g4non_display = X ] ; then605 echo "On this machine the XAWFLAGS=\$XAWFLAGS"606 fi607 fi608 609 #+610 if [ X$g4ui_build_xaw_session != X ] ; then611 XAWLIBS="$g4ui_xawlibs"612 export XAWLIBS613 if [ X\$g4non_display = X ] ; then614 echo "On this machine the XAWLIBS=\$XAWLIBS"615 fi616 fi617 618 579 619 580 # -
trunk/config/scripts/install.sh.SH
r1195 r1213 56 56 unset G4UI_NONE 57 57 unset G4UI_BUILD_WIN32_SESSION 58 unset G4UI_BUILD_XAW_SESSION59 58 unset G4UI_BUILD_XM_SESSION 60 59 unset G4UI_BUILD_QT_SESSION 61 60 unset G4UI_USE_TCSH 62 61 unset G4UI_USE_WIN32 63 unset G4UI_USE_XAW64 62 unset G4UI_USE_XM 65 63 unset G4UI_USE_QT … … 244 242 245 243 #+ 246 if [ X$g4ui_build_xaw_session = Xy ] ; then247 G4UI_BUILD_XAW_SESSION=1248 export G4UI_BUILD_XAW_SESSION249 echo "On this machine the G4UI_BUILD_XAW_SESSION=\$G4UI_BUILD_XAW_SESSION"250 fi251 252 #+253 if [ X$g4ui_use_xaw = Xy ] ; then254 G4UI_USE_XAW=1255 export G4UI_USE_XAW256 echo "On this machine the G4UI_USE_XAW=\$G4UI_USE_XAW"257 fi258 259 #+260 244 if [ X$g4ui_build_xm_session = Xy ] ; then 261 245 G4UI_BUILD_XM_SESSION=1 … … 501 485 fi 502 486 fi 503 504 #+505 if [ X$g4ui_build_xaw_session != X ] ; then506 XAWFLAGS="$g4ui_xawflags"507 export XAWFLAGS508 if [ X\$g4non_display = X ] ; then509 echo "On this machine the XAWFLAGS=\$XAWFLAGS"510 fi511 fi512 513 #+514 if [ X$g4ui_build_xaw_session != X ] ; then515 XAWLIBS="$g4ui_xawlibs"516 export XAWLIBS517 if [ X\$g4non_display = X ] ; then518 echo "On this machine the XAWLIBS=\$XAWLIBS"519 fi520 fi521 522 523 487 524 488 # Qt Flags and Libs, messy, but needed for backward compatibility -
trunk/config/scripts/move.sh.SH
r689 r1213 165 165 # 166 166 #+ 167 if [ X$g4ui_build_xaw_session = Xy ] ; then168 G4UI_BUILD_XAW_SESSION=1169 export G4UI_BUILD_XAW_SESSION170 echo "On this machine the G4UI_BUILD_XAW_SESSION=\$G4UI_BUILD_XAW_SESSION"171 fi172 173 #+174 if [ X$g4ui_use_xaw = Xy ] ; then175 G4UI_USE_XAW=1176 export G4UI_USE_XAW177 echo "On this machine the G4UI_USE_XAW=\$G4UI_USE_XAW"178 fi179 180 #+181 167 if [ X$g4ui_build_xm_session = Xy ] ; then 182 168 G4UI_BUILD_XM_SESSION=1
Note:
See TracChangeset
for help on using the changeset viewer.
