comparison configure @ 104:cf808b4c4290 r20-1b4

Import from CVS: tag r20-1b4
author cvs
date Mon, 13 Aug 2007 09:16:51 +0200
parents 4be1180a9e89
children 360340f9fd5f
comparison
equal deleted inserted replaced
103:30eda07fe280 104:cf808b4c4290
853 #### Make symlinks for etc, lisp, and info directories while the path 853 #### Make symlinks for etc, lisp, and info directories while the path
854 #### is still relative. We don't symlink lock because someone may 854 #### is still relative. We don't symlink lock because someone may
855 #### have stuck the source on a read-only partition. Instead we'll 855 #### have stuck the source on a read-only partition. Instead we'll
856 #### create it as an actual directory later on if it doesn't already 856 #### create it as an actual directory later on if it doesn't already
857 #### exist. 857 #### exist.
858 for dir in etc lisp man info 858 for dir in lisp etc man info site-lisp
859 do 859 do
860 if test ! -d $dir ; then 860 if test ! -d $dir ; then
861 echo Making symbolic link to ${srcdir}/$dir 861 echo Making symbolic link to ${srcdir}/$dir
862 ${LN_S} ${srcdir}/$dir . 862 ${LN_S} ${srcdir}/$dir .
863 fi 863 fi
864 done 864 done
865
865 866
866 #### Make srcdir absolute, if it isn't already. It's important to 867 #### Make srcdir absolute, if it isn't already. It's important to
867 #### avoid running the path through pwd unnecessary, since pwd can 868 #### avoid running the path through pwd unnecessary, since pwd can
868 #### give you automounter prefixes, which can go away. 869 #### give you automounter prefixes, which can go away.
869 case "${srcdir}" in 870 case "${srcdir}" in
6371 6372
6372 6373
6373 test -n "${puresize}" && 6374 test -n "${puresize}" &&
6374 { 6375 {
6375 test -n "$verbose" && \ 6376 test -n "$verbose" && \
6376 echo " defining" PURESIZE to be "${puresize}" 6377 echo " defining" RAW_PURESIZE to be "${puresize}"
6377 echo "#define" PURESIZE "${puresize}" >> confdefs.h 6378 echo "#define" RAW_PURESIZE "${puresize}" >> confdefs.h
6378 DEFS="$DEFS -DPURESIZE=${puresize}" 6379 DEFS="$DEFS -DRAW_PURESIZE=${puresize}"
6379 ac_sed_defs="${ac_sed_defs}\${ac_dA}PURESIZE\${ac_dB}PURESIZE\${ac_dC}${puresize}\${ac_dD} 6380 ac_sed_defs="${ac_sed_defs}\${ac_dA}RAW_PURESIZE\${ac_dB}RAW_PURESIZE\${ac_dC}${puresize}\${ac_dD}
6380 \${ac_uA}PURESIZE\${ac_uB}PURESIZE\${ac_uC}${puresize}\${ac_uD} 6381 \${ac_uA}RAW_PURESIZE\${ac_uB}RAW_PURESIZE\${ac_uC}${puresize}\${ac_uD}
6381 \${ac_eA}PURESIZE\${ac_eB}PURESIZE\${ac_eC}${puresize}\${ac_eD} 6382 \${ac_eA}RAW_PURESIZE\${ac_eB}RAW_PURESIZE\${ac_eC}${puresize}\${ac_eD}
6382 " 6383 "
6383 } 6384 }
6384 6385
6385 test "${HAVE_X_WINDOWS}" = yes && 6386 test "${HAVE_X_WINDOWS}" = yes &&
6386 { 6387 {