qucs_s/configure.ac
yodalee 648081b5a4 add Wno-deprecated-register C++flags
disable noisy warning
2015-01-10 08:06:46 +08:00

886 lines
31 KiB
Plaintext

# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
dnl Read version from file
m4_define([QUCS_VERSION], m4_esyscmd([tr -d '\n' < VERSION]))
AC_INIT([qucs], [QUCS_VERSION], [qucs-bugs@lists.sourceforge.net])
AC_CONFIG_SRCDIR([qucs/qucs.cpp])
AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([no-define])
AM_MAINTAINER_MODE
AC_PREFIX_DEFAULT([/usr/local])
dnl Checks for programs.
AC_PROG_CXX(clang++ g++)
AC_PROG_CC
AC_PROG_RANLIB
AC_CHECK_TOOL(AR, ar, :)
dnl Check for debugging option.
AC_ARG_ENABLE([debug],
AC_HELP_STRING([--enable-debug],
[include debug output @<:@default=no@:>@]),
[case "$enableval" in
yes) enable_qucs_gui_debug="yes" ;;
no) enable_qucs_gui_debug="no" ;;
*) enable_qucs_gui_debug="no" ;;
esac],
[enable_qucs_gui_debug="no"])
if test $USE_MAINTAINER_MODE = yes; then
enable_qucs_gui_debug="yes"
fi
if test "$enable_qucs_gui_debug" = yes; then
AC_DEFINE(DEBUG, 1, [Define if debug output should be supported.])
QT_DEF="-DQT_DEBUG"
else
AC_DEFINE(NDEBUG, 1, [Define if debug code should be suppressed.])
QT_DEF="-DQT_NO_DEBUG"
if test "x$GCC" = xyes; then
CFLAGS="`echo $CFLAGS | sed -e 's/\-g //g'`"
CXXFLAGS="`echo $CXXFLAGS | sed -e 's/\-g //g'`"
# disable stripping (debian bug #437876)
# case $host_os in
# *darwin*) LDFLAGS="$LDFLAGS" ;;
# *) LDFLAGS="$LDFLAGS -s" ;;
# esac
fi
fi
dnl Check for Linux
case $host_os in
*linux*) LINUX=yes ;;
*) LINUX=no ;;
esac
AM_CONDITIONAL(COND_LINUX, test x$LINUX = xyes)
dnl Check for Win32.
case $host_os in
*mingw*) WIN32=yes ;;
*) WIN32=no ;;
esac
AM_CONDITIONAL(COND_WIN32, test x$WIN32 = xyes)
dnl Check for MacOSX.
case $host_os in
*darwin*) MACOSX=yes ;;
*) MACOSX=no ;;
esac
AM_CONDITIONAL(COND_MACOSX, test x$MACOSX = xyes)
dnl Check for new platforms.
osversion="`grep \"$host\" $srcdir/PLATFORMS 2>/dev/null`"
if test "x$osversion" = "x"; then
AC_MSG_RESULT([
The $PACKAGE package has never been compiled or run on this platform.
Please send an email to <qucs-devel@lists.sourceforge.net> including your
compiler and Qt version and whether it worked correctly or not. The
'$host' line will then be added to the PLATFORMS file included
in this package.
])
fi
unset osversion
dnl Release specific. Changed by release_tarball.sh
RELEASE=no
if test $RELEASE = yes; then
dnl Default-enabled build distributed ASCO
AC_ARG_ENABLE([asco],
AS_HELP_STRING([--disable-asco], [Disable build of included ASCO (enabled by default)]))
AS_IF([test "x$enable_asco" != "xno"], [
dnl Do the stuff needed for enabling the feature
AC_CONFIG_SUBDIRS(asco)
RELEASEDIRS="$RELEASEDIRS asco"
])
dnl Default-enabled build distributed ADMS
dnl The released source is configured, does not need ADMS.
dnl Provided as convinience for dynamic loader users.
AC_ARG_ENABLE([adms],
AS_HELP_STRING([--disable-adms], [Disable build of included ADMS (enabled by default)]))
AS_IF([test "x$enable_adms" != "xno"], [
dnl Do the stuff needed for enabling the feature
AC_CONFIG_SUBDIRS(qucs-core/deps/adms)
RELEASEDIRS="$RELEASEDIRS qucs-core/deps/adms"
])
AC_CONFIG_SUBDIRS(qucs-core)
AC_CONFIG_SUBDIRS(qucs-doc)
AC_CONFIG_SUBDIRS(examples)
# AC_CONFIG_SUBDIRS(freehdl)
# AC_CONFIG_SUBDIRS(verilog)
RELEASEDIRS="$RELEASEDIRS qucs-core"
RELEASEDIRS="$RELEASEDIRS qucs-doc"
RELEASEDIRS="$RELEASEDIRS examples"
# RELEASEDIRS="$RELEASEDIRS freehdl"
# RELEASEDIRS="$RELEASEDIRS verilog"
fi
AC_SUBST(RELEASEDIRS)
dnl Check for X11
if test x$LINUX == "xyes"; then
AC_PATH_XTRA
X11_INCLUDES="$X_CFLAGS"
X11_LDFLAGS=""
X11_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
AC_SUBST(X11_INCLUDES)
AC_SUBST(X11_LDFLAGS)
AC_SUBST(X11_LIBS)
fi
dnl MacOSX build and runtime environment options
dnl borrowed from http://cgit.freedesktop.org/libreoffice/core/tree/configure.ac
dnl Default disabled search for SDK
dnl Enabling set the -isysroot, see darwin section below for SDK setup
AC_ARG_ENABLE([sdk],
AS_HELP_STRING([--enable-sdk],
[search for Mac OSX SDK @<:@default=no@:>@. \
Disable this option to set custom compiler flags CXX, CXXFLAGS]),
[case "$enableval" in
yes) enable_sdk="yes" ;;
no) enable_sdk="no" ;;
*) enable_sdk="yes" ;;
esac],
[enable_sdk="no"])
dnl Specify version of SDK
AC_ARG_WITH(macosx-sdk,
AS_HELP_STRING([--with-macosx-sdk],
[Use a specific SDK for building.])
[
Usage: --with-macosx-sdk=<version>
e. g.: --with-macosx-sdk=10.6
there are 3 options to control the MacOSX build:
--with-macosx-sdk (refered as 'sdk' below)
--with-macosx-version-min-required (refered as 'min' below)
--with-macosx-version-max-allowed (refered as 'max' below)
the connection between these value and the default they take is as follow:
( ? means not specified on the command line, s means the SDK version found,
constraint: x <= y <= z)
==========================================
command line || config result
==========================================
min | max | sdk || min | max | sdk |
? | ? | ? || 10.6 | 10.s | 10.s |
? | ? | 10.x || 10.6 | 10.x | 10.x |
? | 10.x | ? || 10.6 | 10.s | 10.s |
? | 10.x | 10.y || 10.6 | 10.x | 10.y |
10.x | ? | ? || 10.x | 10.s | 10.s |
10.x | ? | 10.y || 10.x | 10.y | 10.y |
10.x | 10.y | ? || 10.x | 10.y | 10.y |
10.x | 10.y | 10.z || 10.x | 10.y | 10.z |
see: http://developer.apple.com/library/mac/#technotes/tn2064/_index.html
for a detailled technical explanation of these variables
Note: MACOSX_DEPLOYMENT_TARGET will be set to the value of 'min'.
Note that even if in theory using a --with-macosx-version-max-allowed
(i.e. the MAC_OS_X_VERSION_MAX_ALLOWED macro) less than the SDK version
should work, in practice Apple does not seem to test that, and at least
compiling with -DMAC_OS_X_VERSION_MAX_ALLOWED=1060 against the 10.7 SDK
fails in a couple of places. Just because of oversights in ifdefs in the SDK
headers, but still.
],
,)
AC_ARG_WITH(macosx-version-min-required,
AS_HELP_STRING([--with-macosx-version-min-required],
[set the minimum OS version needed to run the built Qucs-core])
[
Usage: --with-macosx-version-min-required=<version>
e. g.: --with-macosx-version-min-required=10.6
see --with-macosx-sdk for more info
],
,)
AC_ARG_WITH(macosx-version-max-allowed,
AS_HELP_STRING([--with-macosx-version-max-allowed],
[set the maximum allowed OS version the Qucs-core compilation can use APIs from])
[
Usage: --with-macosx-version-max-allowed=<version>
e. g.: --with-macosx-version-max-allowed=10.6
see --with-macosx-sdk for more info
],
,)
dnl Platform specific, find libraries, setup compiler flags
case $host_os in
*linux* | *cygwin* | *mingw* | *bsd* )
dnl Set Clang
if test "$CXX -dM -E - < /dev/null | grep __clang__" ; then
CFLAGS="$CFLAGS -pipe"
CXXFLAGS="$CXXFLAGS -pipe -fno-exceptions -Wno-deprecated-register"
LDDFLAGS="$LDDFLAGS"
use_CLANG="yes"
fi
dnl Set GCC.
if test "x$use_CLANG" != "xyes" -a "x$GCC" = "xyes" ; then
CFLAGS="$CFLAGS -pipe"
CXXFLAGS="$CXXFLAGS -pipe -fno-exceptions -fno-check-new"
if test x$WIN32 = xyes; then
CXXFLAGS="$CXXFLAGS"
fi
fi
if test $USE_MAINTAINER_MODE = yes; then
CFLAGS="$CFLAGS -W -Wall -Wmissing-prototypes"
CXXFLAGS="$CXXFLAGS -W -Wall"
fi
dnl Enable C++11 support
CXXFLAGS="$CXXFLAGS -std=c++0x"
dnl handle provided QTDIR environment variable
dnl in Slackware when both Qt3 at Qt4 are installed the Qt4 path
dnl is in QT4DIR while QTDIR contains the path to Qt3
QTDIR_paths=""
if test "x$QT4DIR" != "x"; then
echo "QT4DIR provided: $QT4DIR"
QTDIR=$QT4DIR
elif test "x$QTDIR" != "x"; then
echo "QTDIR provided: $QTDIR"
fi
QTDIR_paths="$QTDIR/lib $QTDIR/lib64"
dnl Check include path to Qt.
QT_INCLUDES=""
QT_VER=2
AC_MSG_CHECKING([for Qt headers])
paths="$QTDIR/include /usr/local/qt4/include /usr/include/qt4 \
/usr/include /usr/lib/qt/include /usr/X11R6/include/X11/qt4 \
/usr/X11R6/include/qt4 /usr/X11R6/include /sw/include/qt4 \
/usr/local/include/qt4"
for path in $paths; do
if test -f "$path/Qt/qapplication.h"; then
QT_INCLUDES="$path -I$path/Qt -I$path/QtGui -I$path/QtCore -I$path/QtSvg -I$path/QtXml -I$path/QtScript"
QT_INCLUDES="$QT_INCLUDES -I$path/Qt3Support"
QT_VER=4
break
fi
done
if test "x$QT_INCLUDES" != "x"; then
AC_MSG_RESULT([found in $QT_INCLUDES])
QT_INCLUDES="-I$QT_INCLUDES"
else
AC_MSG_ERROR([not found])
fi
AC_SUBST(QT_INCLUDES)
dnl Check for multi-threaded option.
AC_ARG_ENABLE([mt],
AC_HELP_STRING([--disable-mt],
[link to non-threaded Qt (deprecated)]),
enable_mt="$enableval",
[if test $QT_VER = 4; then
enable_mt="yes"
else
enable_mt="no"
fi])
if test "$enable_mt" = yes; then
QT_LDF=""
QT_LIB="-lQtCore -lQtGui -lQtXml -lQt3Support -lQtSvg -lQtScript"
QT_INC="$QT_DEF -DQT3_SUPPORT -DQT_THREAD_SUPPORT -D_REENTRANT"
[case $host_os in
*freebsd*) QT_LIB="$QT_LIB -pthread" ;;
*mingw*) QT_INC="$QT_INC -mthreads"; QT_LDF="$QT_LDF -mthreads" ;;
esac]
QT_MTS="multi-threaded"
else
QT_LDF=""
QT_LIB="-lQtCore -lQtGui -lQtXml -lQt3Support -lQtSvg -lQtScript"
QT_INC="$QT_DEF"
QT_MTS="non-threaded"
fi
case $host_os in
*mingw*)
QT_LIB="-lQtCore4 -lQtGui4 -lQtXml4 -lQt3Support4 -lQtSvg4 -lQtScript4"
QT_INC="$QT_INC -DQT_DLL -DUNICODE"
QT_LDF="$QT_LDF -mwindows"
;;
esac
unset enable_mt
dnl Check library path to Qt.
QT_LDFLAGS=""
QT_LIBS=""
AC_MSG_RESULT([checking for Qt... $QT_VER ($QT_MTS)])
AC_MSG_CHECKING([for Qt library])
paths="$QTDIR_paths /usr/local/qt4/lib /usr/lib/qt4 /usr/lib/qt4/Qtconf /usr/lib \
/usr/X11R6/lib/X11/qt4 /usr/X11R6/lib/X11/qt4 /usr/X11R6/lib/qt4 \
/usr/X11R6/lib /sw/lib /usr/lib64/qt4 /usr/X11R6/lib/qt4 /usr/local/lib/qt4"
AC_LANG(C++)
for path in $paths; do
save_LIBS="$LIBS"
save_LDFLAGS="$LDFLAGS"
save_CXXFLAGS="$CXXFLAGS"
LIBS="$LIBS $X11_LIBS $QT_LIB"
LDFLAGS="$LDFLAGS $X11_LDFLAGS -L$path $QT_LDF"
CXXFLAGS="$CXXFLAGS $X11_INCLUDES $QT_INCLUDES $QT_INC"
AC_LINK_IFELSE(
[AC_LANG_SOURCE([#include <Qt/qapplication.h>
int main (int argc, char ** argv) {
QApplication a (argc, argv); a.exec (); return 0; }])],
[
QT_LDFLAGS="$path";
QT_INCLUDES="$QT_INCLUDES $QT_INC";
break;
]
)
LIBS="$save_LIBS"
LDFLAGS="$save_LDFLAGS"
CXXFLAGS="$save_CXXFLAGS"
done
dnl Capture dir found for Qt
QT_DIR="$path"
LIBS="$save_LIBS"
LDFLAGS="$save_LDFLAGS"
CXXFLAGS="$save_CXXFLAGS"
if test "x$QT_LDFLAGS" != "x"; then
AC_MSG_RESULT([found in $QT_LDFLAGS])
QT_LDFLAGS="-L$QT_LDFLAGS $QT_LDF"
QT_LIBS="$QT_LIB"
else
AC_MSG_ERROR([not found])
fi
;;
*darwin* )
dnl BUG, with 10.6, the use of -isysroot cause the /Library/Frameworks to be searched
dnl based on the SDK path. Causing the framework not to be found:
dnl ld: framework not found QtGui
dnl In newer versions (10.7+) the /Library/Frameworks is searched.
dnl The solution is to manually add symlinks to Qt Frameworks into the 10.6 SDK.
dnl See also:
dnl http://public.kitware.com/Bug/view.php?id=13765
dnl http://bugs.python.org/issue14018
dnl https://bitbucket.org/Coin3D/coin/wiki/The%20isysroot%20Issue
dnl Check for Qt in:
dnl * Digia default path: /Library/Frameworks
dnl * User provided path: QTDIR
dnl * Homebrew defaul: /usr/local/lib
dnl * MacpPorts default /opt/local/lib
with_qt=no
AC_MSG_CHECKING([for Qt OS X framework])
paths="$QTDIR/lib /Library/Frameworks /opt/local/lib /usr/local/lib"
for path in $paths; do
if test -f "$path/QtGui.framework/Headers/QApplication"; then
with_qt=yes
break
fi
done
dnl Capture dir found for Qt
QT_DIR="$path"
if test "x${with_qt}" = xyes ; then
AC_MSG_RESULT([found in $path])
QT_LIBS="-framework QtGui -framework QtCore -framework QtXml -framework QtSvg -framework QtScript"
QT_LIBS="$QT_LIBS -framework Qt3Support"
CPPFLAGS="$CPPFLAGS -I$path/QtCore.framework/Headers"
CPPFLAGS="$CPPFLAGS -I$path/QtGui.framework/Headers"
CPPFLAGS="$CPPFLAGS -I$path/QtXml.framework/Headers"
CPPFLAGS="$CPPFLAGS -I$path/QtSvg.framework/Headers"
CPPFLAGS="$CPPFLAGS -I$path/QtScript.framework/Headers"
CPPFLAGS="$CPPFLAGS -I$path/Qt3Support.framework/Headers"
else
AC_MSG_ERROR([not found])
fi
dnl Define Qt3Support
QT_DEF="-DQT_SHARED -DQT3_SUPPORT"
CPPFLAGS="$CPPFLAGS $QT_DEF"
QT_LDFLAGS="-headerpad_max_install_names"
if test $USE_MAINTAINER_MODE = yes; then
CPPFLAGS="$CPPFLAGS -W -Wall"
fi
dnl Enable C++11 support
CPPFLAGS="$CPPFLAGS -std=c++0x"
dnl ===================================================================
dnl Test if search for SDK was enabled
AS_IF([test "x$enable_sdk" = "xyes"], [
dnl Check OS X SDK and compiler
dnl borrowed from http://cgit.freedesktop.org/libreoffice/core/tree/configure.ac
AC_MSG_CHECKING([what Mac OS X SDK to use])
bitness=-m64
if test -z "$with_macosx_sdk"; then
if test -d /Developer/SDKs/MacOSX10.6.sdk; then
with_macosx_sdk=10.6
elif test -d /Developer-old/SDKs/MacOSX10.6.sdk; then
with_macosx_sdk=10.6
elif test -d /Xcode3/SDKs/MacOSX10.6.sdk; then
with_macosx_sdk=10.6
elif test -d /Developer/SDKs/MacOSX10.7.sdk; then
with_macosx_sdk=10.7
elif test -d "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk"; then
with_macosx_sdk=10.6
elif test -d "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk"; then
with_macosx_sdk=10.7
elif test -d "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk"; then
with_macosx_sdk=10.8
elif test -d "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk"; then
with_macosx_sdk=10.9
elif test -x /usr/bin/xcode-select; then
xcodepath="`xcode-select -print-path`"
if test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk"; then
with_macosx_sdk=10.6
elif test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk"; then
with_macosx_sdk=10.7
elif test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk"; then
with_macosx_sdk=10.8
elif test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk"; then
with_macosx_sdk=10.9
fi
fi
if test -z "$with_macosx_sdk"; then
AC_MSG_ERROR([Could not figure out the location of a Mac OS X SDK and its version])
fi
fi
case $with_macosx_sdk in
10.5)
MACOSX_SDK_VERSION=1050
;;
10.6)
MACOSX_SDK_VERSION=1060
;;
10.7)
MACOSX_SDK_VERSION=1070
;;
10.8)
MACOSX_SDK_VERSION=1080
;;
10.9)
MACOSX_SDK_VERSION=1090
;;
10.10)
MACOSX_SDK_VERSION=101000
;;
*)
AC_MSG_ERROR([with-macosx-sdk $with_macosx_sdk is not a supported value, supported values are 10.5--10])
;;
esac
# Next find it (again, if we deduced its version above by finding
# it... but we need to look for it once more in case
# --with-macosx-sdk was given so that the above search did not
# happen).
if test -z "$MACOSX_SDK_PATH"; then
case $with_macosx_sdk in
10.5)
if test -x /usr/bin/xcode-select; then
xcodepath="`xcode-select -print-path`"
if test -d "$xcodepath/SDKs/MacOSX$with_macosx_sdk.sdk"; then
MACOSX_SDK_PATH="$xcodepath/SDKs/MacOSX$with_macosx_sdk.sdk"
fi
elif test -d /Developer/SDKs/MacOSX10.5.sdk; then
MACOSX_SDK_PATH=/Developer/SDKs/MacOSX10.5.sdk
elif test -d /Developer-old/SDKs/MacOSX10.5.sdk; then
MACOSX_SDK_PATH=/Developer-old/SDKs/MacOSX10.5.sdk
elif test -d /Xcode3/SDKs/MacOSX10.5.sdk; then
MACOSX_SDK_PATH=/Xcode3/SDKs/MacOSX10.5.sdk
fi
;;
10.6)
if test -d /Developer/SDKs/MacOSX10.6.sdk; then
MACOSX_SDK_PATH=/Developer/SDKs/MacOSX10.6.sdk
elif test -d /Developer-old/SDKs/MacOSX10.6.sdk; then
MACOSX_SDK_PATH=/Developer-old/SDKs/MacOSX10.6.sdk
elif test -d /Xcode3/SDKs/MacOSX10.6.sdk; then
MACOSX_SDK_PATH=/Xcode3/SDKs/MacOSX10.6.sdk
elif test -d "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"; then
MACOSX_SDK_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk
elif test -x /usr/bin/xcode-select; then
xcodepath="`xcode-select -print-path`"
if test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"; then
MACOSX_SDK_PATH="$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"
fi
fi
;;
10.7)
if test -d /Developer/SDKs/MacOSX$with_macosx_sdk.sdk; then
MACOSX_SDK_PATH=/Developer/SDKs/MacOSX$with_macosx_sdk.sdk
elif test -d "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"; then
MACOSX_SDK_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk
elif test -x /usr/bin/xcode-select; then
xcodepath="`xcode-select -print-path`"
if test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"; then
MACOSX_SDK_PATH="$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"
fi
fi
;;
10.8|10.9|10.10)
xcodepath="`xcode-select -print-path`"
if test -d "$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"; then
MACOSX_SDK_PATH="$xcodepath/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$with_macosx_sdk.sdk"
fi
;;
esac
if test -z "$MACOSX_SDK_PATH"; then
AC_MSG_ERROR([Could not figure out the location of Mac OS X $with_macosx_sdk SDK])
fi
fi
AC_MSG_RESULT([SDK $with_macosx_sdk at $MACOSX_SDK_PATH])
if test "$with_macosx_version_min_required" = ""; then
case $with_macosx_sdk in
10.5)
with_macosx_version_min_required="10.5";;
*)
with_macosx_version_min_required="10.6";;
esac
fi
if test "$with_macosx_version_max_allowed" = ""; then
with_macosx_version_max_allowed="$with_macosx_sdk"
fi
# export this so that "xcrun" invocations later return matching values
DEVELOPER_DIR="${MACOSX_SDK_PATH%/SDKs*}"
DEVELOPER_DIR="${DEVELOPER_DIR%/Platforms*}"
export DEVELOPER_DIR
FRAMEWORKSHOME="$MACOSX_SDK_PATH/System/Library/Frameworks"
MACOSX_DEPLOYMENT_TARGET="$with_macosx_version_min_required"
case "$with_macosx_version_min_required" in
10.5)
MAC_OS_X_VERSION_MIN_REQUIRED="1050"
;;
10.6)
MAC_OS_X_VERSION_MIN_REQUIRED="1060"
;;
10.7)
MAC_OS_X_VERSION_MIN_REQUIRED="1070"
;;
10.8)
MAC_OS_X_VERSION_MIN_REQUIRED="1080"
;;
10.9)
MAC_OS_X_VERSION_MIN_REQUIRED="1090"
;;
10.10)
MAC_OS_X_VERSION_MIN_REQUIRED="101000"
;;
*)
AC_MSG_ERROR([with-macosx-version-min-required $with_macosx_version_min_required is not a supported value, supported values are 10.5--10])
;;
esac
if test "$BITNESS_OVERRIDE" = ""; then
case "$with_macosx_version_min_required" in
10.5)
case "$with_macosx_sdk" in
10.5)
;;
*)
AC_MSG_WARN([Building with a SDK > 10.5 possibly breaks 10.5 compatibility.])
add_warning "Building with a SDK > 10.5 possibly breaks 10.5 compatibility."
;;
esac
;;
esac
fi
# If no CC and CXX environment vars, try to guess where the compiler is
#LIBTOOL=libtool
INSTALL_NAME_TOOL=install_name_tool
if test -z "$save_CC"; then
AC_MSG_CHECKING([what compiler to use])
case $with_macosx_sdk in
10.5)
CC="${gccprefix}gcc-4.2 $arch -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
CXX="${gccprefix}g++-4.2 $arch -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
INSTALL_NAME_TOOL=`xcrun -find install_name_tool`
;;
10.6)
# did someone copy her 10.6 sdk into xcode 4 (needed on Mountain Lion)?
if test "$(echo $MACOSX_SDK_PATH | cut -c1-23)" = "/Applications/Xcode.app"; then
CC="`xcrun -find gcc` $bitness -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
CXX="`xcrun -find g++` $bitness -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
else
CC="gcc-4.2 $bitness -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
CXX="g++-4.2 $bitness -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
fi
INSTALL_NAME_TOOL=`xcrun -find install_name_tool`
#LIBTOOL=libtool
;;
10.7|10.8|10.9|10.10)
if test "$with_macosx_version_min_required" != 10.6; then
# Use libc++ instead of libstdc++ when possible
stdlib=-stdlib=libc++
fi
#if test "$ENABLE_LTO" = TRUE; then
# lto=-flto
#fi
CC="`xcrun -find clang` $bitness $lto -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
CXX="`xcrun -find clang++` $bitness $lto $stdlib -mmacosx-version-min=$with_macosx_version_min_required -isysroot $MACOSX_SDK_PATH"
INSTALL_NAME_TOOL=`xcrun -find install_name_tool`
AR=`xcrun -find ar`
NM=`xcrun -find nm`
STRIP=`xcrun -find strip`
#LIBTOOL=`xcrun -find libtool`
RANLIB=`xcrun -find ranlib`
;;
esac
AC_MSG_RESULT([$CC and $CXX])
fi
case "$with_macosx_version_max_allowed" in
10.5)
MAC_OS_X_VERSION_MAX_ALLOWED="1050"
;;
10.6)
MAC_OS_X_VERSION_MAX_ALLOWED="1060"
;;
10.7)
MAC_OS_X_VERSION_MAX_ALLOWED="1070"
;;
10.8)
MAC_OS_X_VERSION_MAX_ALLOWED="1080"
;;
10.9)
MAC_OS_X_VERSION_MAX_ALLOWED="1090"
;;
10.10)
MAC_OS_X_VERSION_MAX_ALLOWED="101000"
;;
*)
AC_MSG_ERROR([with-macosx-version-max-allowed $with_macosx_version_max_allowed is not a supported value, supported values are 10.5--10])
;;
esac
AC_MSG_CHECKING([that macosx-version-min-required is coherent with macosx-version-max-allowed])
if test $MAC_OS_X_VERSION_MIN_REQUIRED -gt $MAC_OS_X_VERSION_MAX_ALLOWED; then
AC_MSG_ERROR([the version minimumn required must be inferior or equal to the version maximum allowed])
else
AC_MSG_RESULT([ok])
fi
AC_MSG_CHECKING([that macosx-version-max-allowed is coherent with macos-with-sdk])
if test $MAC_OS_X_VERSION_MAX_ALLOWED -gt $MACOSX_SDK_VERSION; then
AC_MSG_ERROR([the version maximum allowed cannot be greater thatn the sdk level])
else
AC_MSG_RESULT([ok])
fi
AC_MSG_NOTICE([MAC_OS_X_VERSION_MIN_REQUIRED=$MAC_OS_X_VERSION_MIN_REQUIRED])
AC_MSG_NOTICE([MAC_OS_X_VERSION_MAX_ALLOWED=$MAC_OS_X_VERSION_MAX_ALLOWED])
dnl End test for enable_sdk
])
;;
esac
dnl Check for language support.
AC_PATH_PROGS(LRELEASE, lrelease-qt4 lrelease, :, [$QT_DIR/bin:$PATH])
AC_PATH_PROGS(LUPDATE, lupdate-qt4 lupdate, :, [$QT_DIR/bin:$PATH])
dnl Check for MOC/UIC/RCC support.
AC_PATH_PROGS(MOC, moc-qt4 moc, :, [$QT_DIR/bin:$PATH])
AC_PATH_PROGS(UIC, uic-qt4 uic, :, [$QT_DIR/bin:$PATH])
AC_PATH_PROGS(RCC, rcc, :, [$QT_DIR/bin:$PATH])
if test "$MOC" = ":"; then
AC_MSG_WARN([
The $PACKAGE package needs the 'Qt Meta Object Compiler' to compile properly.
Though Qt itself may be properly installed including headers and libraries
the 'moc' program is missing. Possibly you need to install the full
development package of Qt.])
fi
if test "$UIC" = ":"; then
AC_MSG_WARN([
The $PACKAGE package needs the 'Qt User Interface Compiler' to compile properly.
Though Qt itself may be properly installed including headers and libraries
the 'uic' program is missing. Possibly you need to install the full
development package of Qt.])
fi
dnl check for Qt moveable tabwidgets (introduced in Qt 4.5)
QUCS_CHECK_FUNC_QTABWIDGET_SETMOVABLE
dnl append -O0 to CXXFLAGS if in debug mode and using gcc
dnl to assist with debugging by preventing optimisation.
dnl gcc will use the final invocation of -OX and ignore earlier
dnl values
if test "$enable_qucs_gui_debug" = yes; then
if test "x$GCC" = xyes; then
CXXFLAGS="$CXXFLAGS -O0"
AC_MSG_NOTICE([Appending gcc optimisation flag -O0 due to --enable-debug setting.])
fi
fi
AC_SUBST(QT_LDFLAGS)
AC_SUBST(QT_LIBS)
AC_SUBST(QT_MOC)
AC_LANG(C)
dnl Check for additional header files.
AC_CHECK_HEADERS([ieeefp.h])
dnl Check for LibBoard files.
dnl AC_LANG(C++)
dnl AC_CHECK_HEADERS([Board.h])
dnl AC_CHECK_LIB(board, fprintf)
dnl AC_LANG(C)
dnl Check for path transformation.
case $build_os in
mingw* | cygwin*)
PATHXFORM="cygpath -w"
;;
*)
PATHXFORM="echo"
;;
esac
AC_SUBST(PATHXFORM)
dnl Create path info.
dnl BitmapDir still used by qucs-edit
AC_DEFINE_UNQUOTED([BINARYDIR], ["$bindir"],
[Where the binary files go.])
LANG_PATH="$prefix/share/qucs/lang/"
AC_DEFINE_UNQUOTED([LANGUAGEDIR], ["$LANG_PATH"],
[Where the language files go.])
unset LANG_PATH
LIBRARY_PATH="$prefix/share/qucs/library/"
AC_DEFINE_UNQUOTED([LIBRARYDIR], ["$LIBRARY_PATH"],
[Where the component library files go.])
unset LIBRARY_PATH
DOC_PATH="$prefix/share/qucs/docs/"
AC_DEFINE_UNQUOTED([DOCDIR], ["$DOC_PATH"],
[Where the documentation files go.])
unset DOC_PATH
OCTAVE_PATH="$prefix/share/qucs/octave/"
AC_DEFINE_UNQUOTED([OCTAVEDIR], ["$OCTAVE_PATH"],
[Where the octave script files go.])
unset OCTAVE_PATH
dnl Definitions at top of <config.h>.
AH_TOP([
/* __BEGIN_DECLS should be used at the beginning of your declarations,
so that C++ compilers don't mangle their names. Use __END_DECLS at
the end of C declarations. */
#undef __BEGIN_DECLS
#undef __END_DECLS
#ifdef __cplusplus
# define __BEGIN_DECLS extern "C" {
# define __END_DECLS }
#else
# define __BEGIN_DECLS
# define __END_DECLS
#endif
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
])
dnl Add here all your Makefiles. These are created by configure.
AC_CONFIG_FILES([Makefile
contrib/Makefile
qucs-edit/Makefile
qucs-help/Makefile
qucs-help/docs/Makefile
qucs-help/docs/en/Makefile
qucs-help/docs/de/Makefile
qucs-help/docs/es/Makefile
qucs-help/docs/fr/Makefile
qucs-help/docs/ru/Makefile
qucs-help/docs/uk/Makefile
qucs-help/docs/cs/Makefile
qucs-help/docs/pt/Makefile
qucs-filter/Makefile
qucs-activefilter/Makefile
qucs-transcalc/Makefile
qucs-transcalc/examples/Makefile
qucs-lib/Makefile
qucs-lib/library/Makefile
qucs-attenuator/Makefile
qucs-rescodes/Makefile
qucs/Makefile
qucs/octave/Makefile
qucs/components/Makefile
qucs/diagrams/Makefile
qucs/paintings/Makefile
qucs/dialogs/Makefile
translations/Makefile])
# The incomplete filter-v2 only builds withs -stdlib=libstc++
# OSX defaults to libstc++. Skip filter-v2 on Darwin.
# See also Makefile.am
if test "x$MACOSX" = xno ; then
AC_CONFIG_FILES([ qucs-filter-v2/Makefile ])
fi
dnl Check for Git short SHA to tag version
dnl The release package should also keep it on the config.h
GIT="unknown"
if test -d "../.git"; then
m4_define([GIT_REVISION], m4_esyscmd([git log --pretty=format:'%h' -n 1u]))
AC_DEFINE([GIT], ["GIT_REVISION"], [Git short revision hash.])
GIT=GIT_REVISION
echo "\nFound Git clone... $GIT"
fi
AC_OUTPUT
dnl delete the unset enable_qucs_gui_debug variable
unset enable_qucs_gui_debug
dnl Print results.
AC_MSG_RESULT([])
AC_MSG_RESULT([ $PACKAGE version $VERSION ($GIT) configured successfully.])
AC_MSG_RESULT([
Configure Information:
C++ Compiler : $CXX
DEFS : $DEFS
CPPFLAGS : $CPPFLAGS
CXXFLAGS : $CXXFLAGS
Linker : $LD
LDFLAGS : $LDFLAGS
LIBS : $LIBS
Prefix : $prefix
QTDIR : $QT_DIR
QT_LIBS : $QT_LIBS
QT_DEF : $QT_DEF
QT_LDFLAGS : $QT_LDFLAGS
QT_INC : $QT_INC
])
AC_MSG_RESULT([])