Mercurial > hg > xemacs-beta
comparison configure @ 28:1917ad0d78d7 r19-15b97
Import from CVS: tag r19-15b97
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:51:55 +0200 |
parents | 441bb1e64a06 |
children | ec9a17fef872 |
comparison
equal
deleted
inserted
replaced
27:0a3286277d9b | 28:1917ad0d78d7 |
---|---|
900 ;; | 900 ;; |
901 esac | 901 esac |
902 eval "${opt}=\"${val}\"" | 902 eval "${opt}=\"${val}\"" |
903 ;; | 903 ;; |
904 | 904 |
905 ## Has the user specified a value for PURESIZE? | 905 ## Has the user specified a value for RAW_PURESIZE? |
906 "puresize" ) | 906 "puresize" ) |
907 ## If the value was omitted, get it from the next argument. | 907 ## If the value was omitted, get it from the next argument. |
908 if [ "${valomitted}" = "yes" ]; then | 908 if [ "${valomitted}" = "yes" ]; then |
909 ## Get the next argument from the argument list, if there is one. | 909 ## Get the next argument from the argument list, if there is one. |
910 if [ $# = 0 ]; then | 910 if [ $# = 0 ]; then |
1436 #### Make symlinks for etc, lisp, and info directories while the path | 1436 #### Make symlinks for etc, lisp, and info directories while the path |
1437 #### is still relative. We don't symlink lock because someone may | 1437 #### is still relative. We don't symlink lock because someone may |
1438 #### have stuck the source on a read-only partition. Instead we'll | 1438 #### have stuck the source on a read-only partition. Instead we'll |
1439 #### create it as an actual directory later on if it doesn't already | 1439 #### create it as an actual directory later on if it doesn't already |
1440 #### exist. | 1440 #### exist. |
1441 for dir in etc man info site-lisp | 1441 for dir in lisp etc man info site-lisp |
1442 do | 1442 do |
1443 if [ ! -d $dir ]; then | 1443 if [ ! -d $dir ]; then |
1444 echo Making symbolic link to ${srcdir}/$dir | 1444 echo Making symbolic link to ${srcdir}/$dir |
1445 ${LN_S} ${srcdir}/$dir . | 1445 ${LN_S} ${srcdir}/$dir . |
1446 fi | 1446 fi |
1447 done | 1447 done |
1448 | |
1449 # lisp/ is special | |
1450 if [ ! -d lisp ]; then | |
1451 mkdir lisp | |
1452 echo Making symbolic links to lisp libraries | |
1453 ${LN_S} ${srcdir}/lisp/* ./lisp | |
1454 rm -f ./lisp/*.el ./lisp/site-packages | |
1455 cp ${srcdir}/lisp/*.el lisp | |
1456 if [ -f ${srcdir}/lisp/site-packages ]; then | |
1457 cp ${srcdir}/lisp/site-packages lisp | |
1458 fi | |
1459 fi | |
1460 | |
1461 cp ${srcdir}/lisp/version.el lisp | |
1462 | 1448 |
1463 #### Make srcdir absolute, if it isn't already. It's important to | 1449 #### Make srcdir absolute, if it isn't already. It's important to |
1464 #### avoid running the path through pwd unnecessary, since pwd can | 1450 #### avoid running the path through pwd unnecessary, since pwd can |
1465 #### give you automounter prefixes, which can go away. | 1451 #### give you automounter prefixes, which can go away. |
1466 case "${srcdir}" in | 1452 case "${srcdir}" in |
7225 | 7211 |
7226 if [ x"${puresize}" != x ] ; then | 7212 if [ x"${puresize}" != x ] ; then |
7227 | 7213 |
7228 { | 7214 { |
7229 test -n "$verbose" && \ | 7215 test -n "$verbose" && \ |
7230 echo " defining" PURESIZE to be "${puresize}" | 7216 echo " defining" RAW_PURESIZE to be "${puresize}" |
7231 echo "#define" PURESIZE "${puresize}" >> confdefs.h | 7217 echo "#define" RAW_PURESIZE "${puresize}" >> confdefs.h |
7232 DEFS="$DEFS -DPURESIZE=${puresize}" | 7218 DEFS="$DEFS -DRAW_PURESIZE=${puresize}" |
7233 ac_sed_defs="${ac_sed_defs}\${ac_dA}PURESIZE\${ac_dB}PURESIZE\${ac_dC}${puresize}\${ac_dD} | 7219 ac_sed_defs="${ac_sed_defs}\${ac_dA}RAW_PURESIZE\${ac_dB}RAW_PURESIZE\${ac_dC}${puresize}\${ac_dD} |
7234 \${ac_uA}PURESIZE\${ac_uB}PURESIZE\${ac_uC}${puresize}\${ac_uD} | 7220 \${ac_uA}RAW_PURESIZE\${ac_uB}RAW_PURESIZE\${ac_uC}${puresize}\${ac_uD} |
7235 \${ac_eA}PURESIZE\${ac_eB}PURESIZE\${ac_eC}${puresize}\${ac_eD} | 7221 \${ac_eA}RAW_PURESIZE\${ac_eB}RAW_PURESIZE\${ac_eC}${puresize}\${ac_eD} |
7236 " | 7222 " |
7237 } | 7223 } |
7238 | 7224 |
7239 fi | 7225 fi |
7240 if [ "${HAVE_X_WINDOWS}" = "yes" ] ; then | 7226 if [ "${HAVE_X_WINDOWS}" = "yes" ] ; then |