Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
75a4dd0d
Commit
75a4dd0d
authored
Sep 30, 1999
by
David Lawrence
Browse files
set AR and ARFLAGS
parent
5f007faa
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
configure
View file @
75a4dd0d
This diff is collapsed.
Click to expand it.
configure.in
View file @
75a4dd0d
...
...
@@ -13,7 +13,7 @@ dnl PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
dnl SOFTWARE.
AC_REVISION($Revision: 1.5
6
$)
AC_REVISION($Revision: 1.5
7
$)
AC_PREREQ(2.13)
...
...
@@ -33,6 +33,11 @@ AC_SUBST(STD_CINCLUDES)
AC_SUBST(STD_CDEFINES)
AC_SUBST(STD_CWARNINGS)
AC_PATH_PROG(AR, ar)
ARFLAGS="cruv"
AC_SUBST(AR)
AC_SUBST(ARFLAGS)
dnl
dnl On these hosts, we really want to use cc, not gcc, even if it is
dnl found. The gcc that these systems have will not correctly handle
...
...
make/rules.in
View file @
75a4dd0d
...
...
@@ -87,7 +87,7 @@ STD_CDEFINES = @STD_CDEFINES@
STD_CWARNINGS = @STD_CWARNINGS@
.SUFFIXES:
.SUFFIXES: .c .
o
.lo
.SUFFIXES: .c .
@O@
.lo
ALWAYS_INCLUDES = -I${top_builddir}
ALWAYS_DEFINES = -D_REENTRANT
...
...
@@ -101,7 +101,7 @@ ALL_CFLAGS = ${CFLAGS} \
${ALL_CPPFLAGS} \
${ALWAYS_WARNINGS} ${STD_CWARNINGS} ${CWARNINGS}
.c.
o
:
.c.
@O@
:
${CC} ${ALL_CFLAGS} -c $<
SHELL = @SHELL@
...
...
@@ -113,7 +113,7 @@ MKDEP = ${SHELL} ${top_builddir}/make/mkdep
${LIBTOOL} ${CC} ${ALL_CFLAGS} -c $<
clean distclean::
rm -f *.
o
*.lo *.la core *.core
rm -f *.
@O@
*.lo *.la core *.core
rm -rf .libs
distclean::
...
...
@@ -145,7 +145,8 @@ FORCE:
### Libraries
###
AR = ar
AR = @AR@
ARFLAGS = @ARFLAGS@
RANLIB = @RANLIB@
###
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment