Mercurial > hg > xemacs-beta
comparison configure.in @ 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 |
---|---|
916 ;; | 916 ;; |
917 esac | 917 esac |
918 eval "${opt}=\"${val}\"" | 918 eval "${opt}=\"${val}\"" |
919 ;; | 919 ;; |
920 | 920 |
921 ## Has the user specified a value for PURESIZE? | 921 ## Has the user specified a value for RAW_PURESIZE? |
922 "puresize" ) | 922 "puresize" ) |
923 ## If the value was omitted, get it from the next argument. | 923 ## If the value was omitted, get it from the next argument. |
924 if [ "${valomitted}" = "yes" ]; then | 924 if [ "${valomitted}" = "yes" ]; then |
925 ## Get the next argument from the argument list, if there is one. | 925 ## Get the next argument from the argument list, if there is one. |
926 if [ $# = 0 ]; then | 926 if [ $# = 0 ]; then |
1442 #### Make symlinks for etc, lisp, and info directories while the path | 1442 #### Make symlinks for etc, lisp, and info directories while the path |
1443 #### is still relative. We don't symlink lock because someone may | 1443 #### is still relative. We don't symlink lock because someone may |
1444 #### have stuck the source on a read-only partition. Instead we'll | 1444 #### have stuck the source on a read-only partition. Instead we'll |
1445 #### create it as an actual directory later on if it doesn't already | 1445 #### create it as an actual directory later on if it doesn't already |
1446 #### exist. | 1446 #### exist. |
1447 for dir in etc man info site-lisp | 1447 for dir in lisp etc man info site-lisp |
1448 do | 1448 do |
1449 if [ ! -d $dir ]; then | 1449 if [ ! -d $dir ]; then |
1450 echo Making symbolic link to ${srcdir}/$dir | 1450 echo Making symbolic link to ${srcdir}/$dir |
1451 ${LN_S} ${srcdir}/$dir . | 1451 ${LN_S} ${srcdir}/$dir . |
1452 fi | 1452 fi |
1453 done | 1453 done |
1454 | |
1455 # lisp/ is special | |
1456 if [ ! -d lisp ]; then | |
1457 mkdir lisp | |
1458 echo Making symbolic links to lisp libraries | |
1459 ${LN_S} ${srcdir}/lisp/* ./lisp | |
1460 rm -f ./lisp/*.el ./lisp/site-packages | |
1461 cp ${srcdir}/lisp/*.el lisp | |
1462 if [ -f ${srcdir}/lisp/site-packages ]; then | |
1463 cp ${srcdir}/lisp/site-packages lisp | |
1464 fi | |
1465 fi | |
1466 | |
1467 cp ${srcdir}/lisp/version.el lisp | |
1468 | 1454 |
1469 #### Make srcdir absolute, if it isn't already. It's important to | 1455 #### Make srcdir absolute, if it isn't already. It's important to |
1470 #### avoid running the path through pwd unnecessary, since pwd can | 1456 #### avoid running the path through pwd unnecessary, since pwd can |
1471 #### give you automounter prefixes, which can go away. | 1457 #### give you automounter prefixes, which can go away. |
1472 case "${srcdir}" in | 1458 case "${srcdir}" in |
4099 # at the point where the autodetection occurs or would occur, | 4085 # at the point where the autodetection occurs or would occur, |
4100 # so that the user gets immediate feedback on the results of the | 4086 # so that the user gets immediate feedback on the results of the |
4101 # autodetection. | 4087 # autodetection. |
4102 | 4088 |
4103 if [ x"${puresize}" != x ] ; then | 4089 if [ x"${puresize}" != x ] ; then |
4104 ] AC_DEFINE_UNQUOTED(PURESIZE, ${puresize}) [ | 4090 ] AC_DEFINE_UNQUOTED(RAW_PURESIZE, ${puresize}) [ |
4105 fi | 4091 fi |
4106 if [ "${HAVE_X_WINDOWS}" = "yes" ] ; then | 4092 if [ "${HAVE_X_WINDOWS}" = "yes" ] ; then |
4107 ] AC_DEFINE(HAVE_X_WINDOWS) [ | 4093 ] AC_DEFINE(HAVE_X_WINDOWS) [ |
4108 fi | 4094 fi |
4109 if [ "${HAVE_XFREE386}" = "yes" ] ; then | 4095 if [ "${HAVE_XFREE386}" = "yes" ] ; then |