aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-17 17:48:58 +0000
committerRichard M. Stallman1995-08-17 17:48:58 +0000
commit30457b4f931bb9ee923f6c71ea7b59d109c2e96a (patch)
tree6897ff0087bacce2975161a9bb396c46eeebad76
parent88aabab394936dd4692e0f47aff0cc54f9ded145 (diff)
downloademacs-30457b4f931bb9ee923f6c71ea7b59d109c2e96a.tar.gz
emacs-30457b4f931bb9ee923f6c71ea7b59d109c2e96a.zip
(RANLIB): Substitute this into makefiles.
Set it specially on solaris; set it by default on other systems. Fix previous Alpha change.
-rw-r--r--configure.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 87d9badb71f..ea656331423 100644
--- a/configure.in
+++ b/configure.in
@@ -164,7 +164,7 @@ case "${canonical}" in
164 machine=alliant-2800 opsys=bsd4-3 164 machine=alliant-2800 opsys=bsd4-3
165 ;; 165 ;;
166 166
167 ;; Alpha (DEC) machines. 167 ## Alpha (DEC) machines.
168 alpha-dec-osf* ) 168 alpha-dec-osf* )
169 machine=alpha opsys=osf1 169 machine=alpha opsys=osf1
170 ;; 170 ;;
@@ -678,10 +678,12 @@ case "${canonical}" in
678 *-sunos5.4* | *-solaris2.4* ) 678 *-sunos5.4* | *-solaris2.4* )
679 opsys=sol2-4 679 opsys=sol2-4
680 NON_GNU_CPP=/usr/ccs/lib/cpp 680 NON_GNU_CPP=/usr/ccs/lib/cpp
681 RANLIB="ar -ts"
681 ;; 682 ;;
682 *-sunos5.5* | *-solaris2.5* ) 683 *-sunos5.5* | *-solaris2.5* )
683 opsys=sol2-5 684 opsys=sol2-5
684 NON_GNU_CPP=/usr/ccs/lib/cpp 685 NON_GNU_CPP=/usr/ccs/lib/cpp
686 RANLIB="ar -ts"
685 ;; 687 ;;
686 *-sunos5* | *-solaris* ) 688 *-sunos5* | *-solaris* )
687 opsys=sol2 689 opsys=sol2
@@ -826,6 +828,10 @@ if test x"${opsys}" = x; then
826 esac 828 esac
827fi 829fi
828 830
831if test "x$RANLIB" = x; then
832 RANLIB=ranlib
833fi
834
829changequote([, ])dnl 835changequote([, ])dnl
830 836
831if test $unported = yes; then 837if test $unported = yes; then
@@ -1338,6 +1344,7 @@ AC_SUBST(CFLAGS)
1338AC_SUBST(X_TOOLKIT_TYPE) 1344AC_SUBST(X_TOOLKIT_TYPE)
1339AC_SUBST(machfile) 1345AC_SUBST(machfile)
1340AC_SUBST(opsysfile) 1346AC_SUBST(opsysfile)
1347AC_SUBST(RANLIB)
1341 1348
1342AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}") 1349AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}")
1343AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}") 1350AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}")