mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 20:08:17 +00:00
Ensure that CFLAGS and/or LDFLAGS provided to configure script are preserved.
Cross-compilation environments want to provide 'defaults' for compiler and linker options, and frequently do this by specifying CFLAGS and LDFLAGS in the environment or as command-line arguments to the configure script. This patch modifies the configure script and Makefile to preserve these settings and ensure they are used in the build process. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@214696 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -25,6 +25,12 @@ AC_REVISION($Revision$)
|
||||
|
||||
AC_USE_SYSTEM_EXTENSIONS # note- does not work on FreeBSD
|
||||
|
||||
# preserve any CFLAGS or LDFLAGS that may be set
|
||||
CONFIG_CFLAGS="${CFLAGS}"
|
||||
CONFIG_LDFLAGS="${LDFLAGS}"
|
||||
AC_SUBST(CONFIG_CFLAGS)
|
||||
AC_SUBST(CONFIG_LDFLAGS)
|
||||
|
||||
case "${host_os}" in
|
||||
freebsd*)
|
||||
ac_default_prefix=/usr/local
|
||||
|
||||
Reference in New Issue
Block a user