summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1994-06-23 05:14:18 +0000
committerTom Yu <tlyu@mit.edu>1994-06-23 05:14:18 +0000
commit84dbf5cf877cc4a54875fb8c8ff8263d7421a35f (patch)
tree395078618188e8c2f8511e82b54af4dd1c3479cf /src
parenta76804c7afc286e05188d2321e95256ea2505be0 (diff)
downloadkrb5-84dbf5cf877cc4a54875fb8c8ff8263d7421a35f.tar.gz
krb5-84dbf5cf877cc4a54875fb8c8ff8263d7421a35f.tar.xz
krb5-84dbf5cf877cc4a54875fb8c8ff8263d7421a35f.zip
* aclocal.m4 (CONFIG_RULES): make --with-cc= dtrt and default to
CC=cc git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3903 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/aclocal.m45
2 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 295d6ef1c..f84f8f03b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jun 23 01:13:20 1994 Tom Yu (tlyu at dragons-lair)
+
+ * aclocal.m4 (CONFIG_RULES): make --with-cc= dtrt and default to
+ CC=cc
+
Wed Jun 22 16:34:46 1994 Mark Eichin (eichin at tweedledumber.cygnus.com)
* aclocal.m4 (CONFIG_RULES): add AC_SUBST([CC]) so that CC gets
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index b31b585ef..1c7d456bb 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -151,6 +151,11 @@ dnl
dnl drop in standard configure rebuild rules -- CONFIG_RULES
dnl
define(CONFIG_RULES,[
+AC_WITH([cc],
+echo CC=$withval
+CC=$withval,
+echo CC defaults to cc
+CC=cc)dnl
AC_SUBST([CC])dnl
divert(9)dnl
[