mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Explicitly initialise the value of AR for vendor makes that don't do
this (HPUX 11). Currently it's initialised to 'ar' but this may have
to be changed if any systems pop up that have archivers that aren't
named 'ar'. Closes bug #552.
(This used to be commit 6aada3bd3e
)
This commit is contained in:
parent
b914f2ab6c
commit
89eb0f6918
@ -18,6 +18,7 @@ CFLAGS=@CFLAGS@
|
||||
CPPFLAGS=@CPPFLAGS@
|
||||
EXEEXT=@EXEEXT@
|
||||
LDFLAGS=@LDFLAGS@
|
||||
AR=@AR@
|
||||
LDSHFLAGS=@LDSHFLAGS@ @LDFLAGS@
|
||||
WINBIND_NSS_LDSHFLAGS=@WINBIND_NSS_LDSHFLAGS@ @LDFLAGS@
|
||||
AWK=@AWK@
|
||||
|
@ -206,6 +206,8 @@ AC_PROG_INSTALL
|
||||
AC_PROG_AWK
|
||||
AC_PATH_PROG(PERL, perl)
|
||||
|
||||
AC_CHECK_TOOL(AR, ar)
|
||||
|
||||
# compile with optimization and without debugging by default, but
|
||||
# allow people to set their own preference.
|
||||
if test "x$CFLAGS" = x
|
||||
|
Loading…
Reference in New Issue
Block a user