Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eab42bf

Browse files
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
1 parent fb93190 commit eab42bf

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,8 @@ Tests
547547
Build
548548
-----
549549

550+
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
551+
550552
- Issue #17031: Fix running regen in cross builds.
551553

552554
- Issue #3754: fix typo in pthread AC_CACHE_VAL.

configure

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -810,6 +810,7 @@ with_computed_gotos
810810
ac_precious_vars='build_alias
811811
host_alias
812812
target_alias
813+
MACHDEP
813814
CC
814815
CFLAGS
815816
LDFLAGS
@@ -1484,6 +1485,7 @@ Optional Packages:
14841485
default on supported compilers)
14851486
14861487
Some influential environment variables:
1488+
MACHDEP name for machine-dependent library files
14871489
CC C compiler command
14881490
CFLAGS C compiler flags
14891491
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ AC_SUBST(FRAMEWORKINSTALLAPPSPREFIX)
348348
## [Use (OpenStep|Rhapsody) dynamic linker]))
349349
##
350350
# Set name for machine-dependent library files
351-
AC_SUBST(MACHDEP)
351+
AC_ARG_VAR([MACHDEP], [name for machine-dependent library files])
352352
AC_MSG_CHECKING(MACHDEP)
353353
if test -z "$MACHDEP"
354354
then

0 commit comments

Comments
 (0)