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

Skip to content

Commit 682d8d4

Browse files
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
2 parents e103d68 + eab42bf commit 682d8d4

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
@@ -765,6 +765,8 @@ Tests
765765
Build
766766
-----
767767

768+
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
769+
768770
- Issue #16235: Implement python-config as a shell script.
769771

770772
- Issue #16769: Remove outdated Visual Studio projects.

configure

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,7 @@ with_computed_gotos
812812
ac_precious_vars='build_alias
813813
host_alias
814814
target_alias
815+
MACHDEP
815816
CC
816817
CFLAGS
817818
LDFLAGS
@@ -1486,6 +1487,7 @@ Optional Packages:
14861487
default on supported compilers)
14871488
14881489
Some influential environment variables:
1490+
MACHDEP name for machine-dependent library files
14891491
CC C compiler command
14901492
CFLAGS C compiler flags
14911493
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)