From: Ezra Peisach Date: Sun, 22 Oct 2006 11:59:02 +0000 (+0000) Subject: osf1 -oldstyle_liblookup typo X-Git-Tag: krb5-1.6-alpha1~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4ae4ad3b541ed9bf7843d7ba4312751cc84d5634;p=krb5.git osf1 -oldstyle_liblookup typo Not really relevant anymore - as we do not support static linking now. But in ticket 927 (r16776) - a test was added to determine if gnu ld was in use and change the linker flags accordingly. The variable in aclocal.m4 was krb5_cv_prog_gnu_ld and this was testing for krb5_cv_gnu_ld. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18732 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/config/shlib.conf b/src/config/shlib.conf index 5e92e0e49..eeb073816 100644 --- a/src/config/shlib.conf +++ b/src/config/shlib.conf @@ -68,7 +68,7 @@ alpha*-dec-osf*) RPATH_FLAG='-Wl,-rpath -Wl,' CC_LINK_SHARED='$(CC) $(PROG_LIBPATH) $(RPATH_FLAG)$(PROG_RPATH) $(CFLAGS) $(PTHREAD_CFLAGS) $(LDFLAGS)' if test "$krb5_cv_prog_gcc" = yes \ - && test "$krb5_cv_gnu_ld" = yes; then + && test "$krb5_cv_prog_gnu_ld" = yes; then # Really should check for gnu ld vs system ld, too. CC_LINK_STATIC='$(CC) $(PROG_LIBPATH) $(CFLAGS) $(PTHREAD_CFLAGS) $(LDFLAGS)' else