1999-06-01 16:14:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2003-07-30 09:44:43 +00:00
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Configured settings:
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Version and build type information:
|
|
|
|
|
|
|
|
WX_MAJOR_VERSION_NUMBER="@WX_MAJOR_VERSION_NUMBER@"
|
|
|
|
WX_MINOR_VERSION_NUMBER="@WX_MINOR_VERSION_NUMBER@"
|
|
|
|
WX_RELEASE_NUMBER="@WX_RELEASE_NUMBER@"
|
|
|
|
release="@WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@"
|
|
|
|
is_monolithic="@MONOLITHIC@"
|
|
|
|
cross_compiling="@cross_compiling@"
|
|
|
|
target="@host_alias@"
|
|
|
|
static_flag="@STATIC_FLAG@"
|
2004-05-08 08:57:44 +00:00
|
|
|
inplace_flag="no"
|
2003-07-30 09:44:43 +00:00
|
|
|
|
|
|
|
# Misc configuration variables:
|
|
|
|
|
2003-08-03 14:51:55 +00:00
|
|
|
update_prefixes()
|
|
|
|
{
|
|
|
|
includedir="@includedir@"
|
|
|
|
libdir="@libdir@"
|
|
|
|
}
|
2003-07-30 09:44:43 +00:00
|
|
|
prefix="@prefix@"
|
|
|
|
exec_prefix="@exec_prefix@"
|
2003-08-03 14:51:55 +00:00
|
|
|
update_prefixes
|
|
|
|
|
2000-01-06 18:34:49 +00:00
|
|
|
CC="@CC@"
|
2002-12-04 14:11:26 +00:00
|
|
|
GCC="@GCC@"
|
2000-01-06 18:34:49 +00:00
|
|
|
CXX="@CXX@"
|
|
|
|
LD="@SHARED_LD@"
|
2003-07-30 09:44:43 +00:00
|
|
|
srcdir="@top_srcdir@"
|
|
|
|
builddir="@top_builddir_wxconfig@"
|
|
|
|
basename_nogui="@WX_LIBRARY_BASENAME_NOGUI@"
|
|
|
|
basename_gui="@WX_LIBRARY_BASENAME_GUI@"
|
|
|
|
|
|
|
|
TOOLCHAIN_NAME="@TOOLCHAIN_NAME@"
|
|
|
|
LDFLAGS="@LDFLAGS@"
|
|
|
|
WXCONFIG_RPATH="@WXCONFIG_RPATH@"
|
|
|
|
DMALLOC_LIBS="@DMALLOC_LIBS@"
|
|
|
|
WXCONFIG_LIBS="@WXCONFIG_LIBS@"
|
|
|
|
WXCONFIG_LIBS_STATIC="@WXCONFIG_LIBS_STATIC@"
|
|
|
|
WXDEBUG_DEFINE="@WXDEBUG_DEFINE@"
|
|
|
|
TOOLCHAIN_DEFS="@TOOLCHAIN_DEFS@"
|
|
|
|
TOOLCHAIN_DLL_DEFS="@TOOLCHAIN_DLL_DEFS@"
|
|
|
|
WXCONFIG_INCLUDE="@WXCONFIG_INCLUDE@"
|
|
|
|
WX_LARGEFILE_FLAGS="@WX_LARGEFILE_FLAGS@"
|
2004-06-29 20:36:13 +00:00
|
|
|
GCC_PRAGMA_FLAGS="@GCC_PRAGMA_FLAGS@"
|
2003-07-30 09:44:43 +00:00
|
|
|
CODE_GEN_FLAGS="@CODE_GEN_FLAGS@"
|
|
|
|
CODE_GEN_FLAGS_CXX="@CODE_GEN_FLAGS_CXX@"
|
|
|
|
LDFLAGS_EXE="@LDFLAGS_EXE@"
|
|
|
|
MACRESWXCONFIG="@MACRESWXCONFIG@"
|
|
|
|
EXTRALIBS_GUI="@EXTRALIBS_GUI@"
|
|
|
|
LIBS="@LIBS@"
|
2003-08-16 16:12:31 +00:00
|
|
|
WXCONFIG_LDFLAGS_GUI="@WXCONFIG_LDFLAGS_GUI@"
|
2003-07-29 22:42:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Linker flags for sublibraries:
|
2003-07-30 09:44:43 +00:00
|
|
|
|
2003-08-03 15:09:17 +00:00
|
|
|
CORE_BASE_LIBS="@CORE_BASE_LIBS@"
|
|
|
|
CORE_GUI_LIBS="@CORE_GUI_LIBS@"
|
2003-07-29 22:42:16 +00:00
|
|
|
|
2003-07-30 09:10:55 +00:00
|
|
|
ldlibs_base="@WXCONFIG_EXTRALIBS@"
|
2003-07-29 22:42:16 +00:00
|
|
|
ldlibs_core="@EXTRALIBS_GUI@"
|
|
|
|
ldlibs_xml="@EXTRALIBS_XML@"
|
2003-10-07 20:15:27 +00:00
|
|
|
ldlibs_html="@EXTRALIBS_HTML@"
|
2003-08-02 19:14:54 +00:00
|
|
|
ldlibs_odbc="@EXTRALIBS_ODBC@"
|
2004-02-01 18:29:49 +00:00
|
|
|
ldlibs_adv="@EXTRALIBS_SDL@"
|
2003-07-29 22:42:16 +00:00
|
|
|
|
|
|
|
ldflags_gl="@LDFLAGS_GL@"
|
|
|
|
ldlibs_gl="@OPENGL_LIBS@"
|
|
|
|
|
|
|
|
|
2003-07-30 09:44:43 +00:00
|
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
# Script code:
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
|
|
|
|
exec_prefix_set=no
|
|
|
|
|
2003-07-29 22:42:16 +00:00
|
|
|
# is $1 among the rest of arguments?
|
|
|
|
isinlist()
|
|
|
|
{
|
|
|
|
value=$1
|
|
|
|
shift
|
|
|
|
isin=no
|
|
|
|
for iii in $* ; do
|
|
|
|
if test $iii = $value ; then isin=yes ; fi
|
|
|
|
done
|
|
|
|
test $isin = yes
|
|
|
|
}
|
|
|
|
|
|
|
|
# output linker commands needed to link against libraries passed as arguments
|
|
|
|
# (does not handle monolithic/multilib):
|
|
|
|
output_libs()
|
|
|
|
{
|
2003-07-30 09:10:55 +00:00
|
|
|
if test "$cross_compiling" = "yes" ; then
|
|
|
|
target_tag="-${target}"
|
|
|
|
fi
|
|
|
|
|
2003-07-29 22:42:16 +00:00
|
|
|
all_libs=""
|
|
|
|
all_ldflags=""
|
|
|
|
wxlibs=""
|
2003-07-30 09:10:55 +00:00
|
|
|
|
2003-07-29 22:42:16 +00:00
|
|
|
for lib in $* ; do
|
|
|
|
eval xlibs=\$ldlibs_$lib
|
|
|
|
eval xflags=\$ldflags_$lib
|
|
|
|
if isinlist $lib $CORE_BASE_LIBS ; then
|
|
|
|
basename=$basename_nogui
|
|
|
|
else
|
|
|
|
basename=$basename_gui
|
|
|
|
fi
|
2003-07-29 23:06:59 +00:00
|
|
|
if test $lib = "base" ; then
|
|
|
|
libname="$basename"
|
|
|
|
else
|
|
|
|
libname="${basename}_${lib}"
|
|
|
|
fi
|
2003-07-29 22:42:16 +00:00
|
|
|
|
|
|
|
all_ldflags="$all_ldflags $xflags"
|
|
|
|
if test $static_flag = yes ; then
|
2003-07-30 09:44:43 +00:00
|
|
|
wxlibs="$wxlibs ${libdir}/lib${libname}-${release}${target_tag}.a"
|
2003-07-29 22:42:16 +00:00
|
|
|
all_libs="$all_libs $xlibs"
|
|
|
|
else
|
2003-07-30 09:10:55 +00:00
|
|
|
wxlibs="$wxlibs -l${libname}-${release}${target_tag}"
|
2003-07-29 22:42:16 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
echo $all_ldflags $wxlibs $all_libs
|
|
|
|
}
|
1999-06-01 16:14:29 +00:00
|
|
|
|
2003-08-16 16:12:31 +00:00
|
|
|
# output $(WXCONFIG_LDFLAGS_GUI) if any of libs passed as arguments is GUI
|
|
|
|
# library, nothing otherwise:
|
|
|
|
get_ldflags_gui()
|
|
|
|
{
|
|
|
|
flags_to_ret=""
|
|
|
|
for lib in $* ; do
|
|
|
|
if isinlist $lib $CORE_GUI_LIBS ; then
|
|
|
|
flags_to_ret="$WXCONFIG_LDFLAGS_GUI"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo $flags_to_ret
|
|
|
|
}
|
|
|
|
|
2001-03-03 20:26:27 +00:00
|
|
|
usage()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
2004-07-17 18:52:18 +00:00
|
|
|
Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--inplace]
|
2004-07-18 11:19:34 +00:00
|
|
|
[--toolkit=TOOLKIT] [--unicode[=yes|no]] [--debug[=yes|no]]
|
2004-07-21 10:17:51 +00:00
|
|
|
[--universal[=yes|no]] [--host=HOST]
|
|
|
|
[--version[=VERSION]] [--release]
|
2004-07-18 11:19:34 +00:00
|
|
|
[--list] [--basename] [--static] [--libs] [--gl-libs]
|
2002-04-19 18:39:06 +00:00
|
|
|
[--cppflags] [--cflags] [--cxxflags] [--ldflags] [--rezflags]
|
2004-07-17 18:52:18 +00:00
|
|
|
[--cc] [--cxx] [--ld] [LIBRARIES]
|
2001-03-03 20:26:27 +00:00
|
|
|
|
|
|
|
wx-config returns configuration information about the installed
|
2004-03-05 17:40:38 +00:00
|
|
|
version of wxWidgets. It may be used to query its version and
|
2001-03-03 20:26:27 +00:00
|
|
|
installation directories and also retrieve the C and C++ compilers
|
|
|
|
and linker which were used for its building and the corresponding
|
|
|
|
flags.
|
2002-12-04 14:11:26 +00:00
|
|
|
|
2003-01-15 22:44:38 +00:00
|
|
|
Ordinarily it should be installed to the appropriate system location
|
|
|
|
along with the headers and library files, but it is also possible to
|
2004-03-05 17:40:38 +00:00
|
|
|
use it to enable builds with an uninstalled wxWidgets version for
|
2003-01-15 22:44:38 +00:00
|
|
|
package building and bleeding edge developers. To do so, use it like
|
|
|
|
this:
|
|
|
|
|
2004-07-17 18:52:18 +00:00
|
|
|
\${wx_builddir}/wx-config --inplace
|
2003-01-15 22:44:38 +00:00
|
|
|
|
2004-07-17 18:52:18 +00:00
|
|
|
Note that any other options supplied must come *after* --inplace
|
|
|
|
for it to take effect.
|
2003-01-15 22:44:38 +00:00
|
|
|
|
2004-03-16 13:18:54 +00:00
|
|
|
--static must come before --cppflags, --cflags, --cxxflags,
|
2004-07-12 23:29:57 +00:00
|
|
|
--libs and --gl-libs and --libs must come before the other ones.
|
2003-07-29 22:42:16 +00:00
|
|
|
|
2004-07-25 10:07:24 +00:00
|
|
|
wx-config can take optional argument that contains comma- or space-separated
|
|
|
|
list of wxWidgets libraries to compile and link against. This list can
|
|
|
|
include both core and contrib libraries. Special value "std" stands for all
|
|
|
|
libraries linked in by default. Examples: "wx-config --libs core,base"
|
|
|
|
or "wx-config --cxxflags core,base".
|
2003-07-29 22:42:16 +00:00
|
|
|
|
2004-07-17 17:48:37 +00:00
|
|
|
--gl-libs option is deprecated, use "--libs gl" instead.
|
2003-07-30 09:10:55 +00:00
|
|
|
|
2004-07-18 11:19:34 +00:00
|
|
|
If there are several different builds of wxWidgets installed in same prefix,
|
2004-07-21 10:17:51 +00:00
|
|
|
you can use --host, --toolkit, --unicode, --debug, --universal and --version
|
|
|
|
options to select one of them. Use --list option to show all available builds
|
|
|
|
that match given criteria.
|
2004-07-18 11:19:34 +00:00
|
|
|
|
2001-03-03 20:26:27 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
cppflags()
|
|
|
|
{
|
2004-07-22 08:28:28 +00:00
|
|
|
includes="-I${libdir}/wx/include/${TOOLCHAIN_NAME}"
|
2001-11-09 05:24:36 +00:00
|
|
|
|
2004-05-08 08:57:44 +00:00
|
|
|
# in inplace case we need to also add path to contrib headers -- do it
|
2004-05-08 08:58:44 +00:00
|
|
|
# unconditionally as they might be used and we have no way of knowing if
|
2004-05-08 08:57:44 +00:00
|
|
|
# they really are
|
|
|
|
if test $inplace_flag = yes ; then
|
2004-07-22 08:28:28 +00:00
|
|
|
includes="$includes -I${prefix}/include -I${prefix}/contrib/include"
|
|
|
|
else
|
|
|
|
includes="$includes -I${includedir}/wx-${WX_MAJOR_VERSION_NUMBER}.${WX_MINOR_VERSION_NUMBER}"
|
2004-05-08 08:57:44 +00:00
|
|
|
fi
|
|
|
|
|
2004-07-12 23:29:57 +00:00
|
|
|
flags="$includes ${WXDEBUG_DEFINE} ${TOOLCHAIN_DEFS}"
|
|
|
|
if test $static_flag != yes ; then
|
|
|
|
flags="$flags ${TOOLCHAIN_DLL_DEFS}"
|
2001-11-09 05:24:36 +00:00
|
|
|
fi
|
2004-07-12 23:29:57 +00:00
|
|
|
|
2004-07-17 17:48:37 +00:00
|
|
|
if test $nogui_flag = "yes" ; then
|
|
|
|
flags="$flags -DwxUSE_GUI=0"
|
2004-07-12 23:29:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$flags${WXCONFIG_INCLUDE} ${WX_LARGEFILE_FLAGS} ${GCC_PRAGMA_FLAGS}"
|
2001-03-03 20:26:27 +00:00
|
|
|
}
|
1999-06-01 16:14:29 +00:00
|
|
|
|
|
|
|
if test $# -eq 0; then
|
2001-09-28 07:00:13 +00:00
|
|
|
usage 1 1>&2
|
1999-06-01 16:14:29 +00:00
|
|
|
fi
|
|
|
|
|
2004-07-17 17:48:37 +00:00
|
|
|
|
|
|
|
# handle libraries list:
|
|
|
|
|
|
|
|
libs_list=""
|
|
|
|
|
|
|
|
for arg in $*; do
|
|
|
|
case "$arg" in
|
|
|
|
-*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
libs_list="$libs_list `echo "$arg" | tr ',' ' '`"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if test "x$libs_list" = "x" ; then
|
|
|
|
if test "$is_monolithic" = "0" ; then
|
|
|
|
# link against all libs if none given explicitly:
|
|
|
|
libs_list="$CORE_GUI_LIBS $CORE_BASE_LIBS"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# always add wxBase, any wxApp needs it:
|
|
|
|
libs_list="$libs_list base"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# determine if at least one gui lib was used:
|
|
|
|
nogui_flag="yes"
|
|
|
|
for i in $libs_list; do
|
|
|
|
case $i in
|
|
|
|
base|net)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
nogui_flag="no"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# handle options:
|
|
|
|
|
1999-06-01 16:14:29 +00:00
|
|
|
while test $# -gt 0; do
|
|
|
|
case "$1" in
|
|
|
|
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|
|
|
*) optarg= ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case $1 in
|
2003-01-18 03:09:08 +00:00
|
|
|
--inplace)
|
2004-05-08 08:57:44 +00:00
|
|
|
inplace_flag=yes
|
2003-01-18 03:09:08 +00:00
|
|
|
;;
|
1999-06-01 16:14:29 +00:00
|
|
|
--prefix=*)
|
|
|
|
prefix=$optarg
|
|
|
|
if test $exec_prefix_set = no ; then
|
|
|
|
exec_prefix=$optarg
|
|
|
|
fi
|
2003-08-03 14:51:55 +00:00
|
|
|
update_prefixes
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
|
|
|
--prefix)
|
|
|
|
echo $prefix
|
|
|
|
;;
|
|
|
|
--exec-prefix=*)
|
|
|
|
exec_prefix=$optarg
|
|
|
|
exec_prefix_set=yes
|
2003-08-03 14:51:55 +00:00
|
|
|
update_prefixes
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
|
|
|
--exec-prefix)
|
|
|
|
echo $exec_prefix
|
|
|
|
;;
|
|
|
|
--version)
|
2003-07-30 09:44:43 +00:00
|
|
|
echo ${WX_MAJOR_VERSION_NUMBER}.${WX_MINOR_VERSION_NUMBER}.${WX_RELEASE_NUMBER}
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
2003-06-18 16:08:15 +00:00
|
|
|
--release)
|
2003-07-29 22:42:16 +00:00
|
|
|
echo $release
|
2003-06-18 16:08:15 +00:00
|
|
|
;;
|
|
|
|
--basename)
|
2003-07-31 21:30:03 +00:00
|
|
|
echo $basename_gui
|
2003-06-18 16:08:15 +00:00
|
|
|
;;
|
2001-11-08 11:24:04 +00:00
|
|
|
--static)
|
|
|
|
static_flag=yes
|
|
|
|
;;
|
2001-03-03 20:26:27 +00:00
|
|
|
--cppflags)
|
|
|
|
cppflags
|
|
|
|
;;
|
1999-06-01 16:14:29 +00:00
|
|
|
--cflags)
|
2003-07-30 09:44:43 +00:00
|
|
|
echo `cppflags` ${CODE_GEN_FLAGS}
|
2001-03-03 20:26:27 +00:00
|
|
|
;;
|
|
|
|
--cxxflags)
|
2003-07-30 09:44:43 +00:00
|
|
|
echo `cppflags` ${CODE_GEN_FLAGS} ${CODE_GEN_FLAGS_CXX}
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
2002-04-19 18:39:06 +00:00
|
|
|
--ldflags)
|
2003-07-30 09:44:43 +00:00
|
|
|
echo ${LDFLAGS_EXE}
|
2002-04-19 18:39:06 +00:00
|
|
|
;;
|
2001-10-15 10:06:24 +00:00
|
|
|
--rezflags)
|
2004-01-22 11:28:06 +00:00
|
|
|
echo `eval echo ${MACRESWXCONFIG}`
|
2001-10-15 10:06:24 +00:00
|
|
|
;;
|
2003-07-29 22:42:16 +00:00
|
|
|
|
2004-07-17 17:48:37 +00:00
|
|
|
--libs)
|
2003-07-29 22:42:16 +00:00
|
|
|
# include install directory only if it is not default:
|
2003-07-30 09:44:43 +00:00
|
|
|
if test "${libdir}" != "/usr/lib" \
|
2001-11-03 11:08:15 +00:00
|
|
|
-a \( "${cross_compiling}" != "yes" \
|
2003-07-30 09:44:43 +00:00
|
|
|
-o "${libdir}" != "/usr/${target}/lib" \) ;
|
2001-09-28 07:00:13 +00:00
|
|
|
then
|
2003-07-30 09:44:43 +00:00
|
|
|
libs="-L${libdir}"
|
1999-06-01 16:14:29 +00:00
|
|
|
fi
|
2001-11-08 11:24:04 +00:00
|
|
|
|
2004-07-12 23:29:57 +00:00
|
|
|
# it's simpler to avoid handling "base" itself at all as we add it in the
|
2004-05-06 23:42:31 +00:00
|
|
|
# end to the list of libraries anyhow
|
2003-07-29 22:42:16 +00:00
|
|
|
# in monolithic build, link against the main library:
|
|
|
|
if test "$is_monolithic" = "1" ; then
|
|
|
|
# filter out core libs, leave only contrib in libs_list:
|
|
|
|
newlist=
|
|
|
|
for i in $libs_list ; do
|
2004-05-06 23:42:31 +00:00
|
|
|
if isinlist $i $CORE_GUI_LIBS $CORE_BASE_LIBS; then
|
2003-07-29 22:42:16 +00:00
|
|
|
libs_list="" # do nothing
|
|
|
|
else
|
|
|
|
newlist="$newlist $i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
libs_list="$newlist"
|
2003-07-31 21:30:03 +00:00
|
|
|
|
2003-07-29 22:42:16 +00:00
|
|
|
# output link flags:
|
|
|
|
contrib_libs=`output_libs $libs_list`
|
|
|
|
if test $static_flag = yes ; then
|
2003-08-16 16:12:31 +00:00
|
|
|
echo "$libs ${LDFLAGS} ${WXCONFIG_LDFLAGS_GUI} ${WXCONFIG_RPATH} $contrib_libs ${libdir}/${WXCONFIG_LIBS_STATIC} ${EXTRALIBS_GUI} ${LIBS} ${DMALLOC_LIBS}"
|
2003-07-29 22:42:16 +00:00
|
|
|
else
|
2003-08-16 16:12:31 +00:00
|
|
|
echo $libs ${LDFLAGS} ${WXCONFIG_LDFLAGS_GUI} ${WXCONFIG_RPATH} $contrib_libs ${WXCONFIG_LIBS} ${DMALLOC_LIBS}
|
2003-07-29 22:42:16 +00:00
|
|
|
fi
|
2001-11-08 11:24:04 +00:00
|
|
|
else
|
2004-05-06 23:42:31 +00:00
|
|
|
# we may need to replace "std" alias with its expansion
|
|
|
|
newlist=
|
|
|
|
hadstd=0
|
|
|
|
for i in $libs_list; do
|
|
|
|
case $i in
|
|
|
|
std)
|
|
|
|
hadstd=1
|
|
|
|
;;
|
|
|
|
|
|
|
|
base)
|
|
|
|
# if we have std, we're going to add base anyhow, avoid
|
|
|
|
# having it twice in the end
|
|
|
|
if [ $hadstd = 0 ]; then
|
2004-07-12 23:29:57 +00:00
|
|
|
newlist="$newlist $i"
|
2004-05-06 23:42:31 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
newlist="$newlist $i"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
libs_list="$newlist"
|
|
|
|
if [ $hadstd = 1 ]; then
|
|
|
|
libs_list="$libs_list $CORE_GUI_LIBS $CORE_BASE_LIBS"
|
|
|
|
fi
|
|
|
|
|
2003-07-29 22:42:16 +00:00
|
|
|
# in multilib mode, link against all sublibraries:
|
|
|
|
wxlibs=`output_libs $libs_list`
|
2003-08-16 16:12:31 +00:00
|
|
|
guildflags=`get_ldflags_gui $libs_list`
|
|
|
|
echo $libs ${LDFLAGS} ${guildflags} ${WXCONFIG_RPATH} $wxlibs ${DMALLOC_LIBS}
|
2001-11-08 11:24:04 +00:00
|
|
|
fi
|
|
|
|
|
2001-09-28 07:00:13 +00:00
|
|
|
;;
|
|
|
|
--gl-libs)
|
2003-07-29 22:42:16 +00:00
|
|
|
output_libs gl
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
2000-01-06 18:34:49 +00:00
|
|
|
--cc)
|
|
|
|
echo $CC
|
|
|
|
;;
|
|
|
|
--cxx)
|
|
|
|
echo $CXX
|
|
|
|
;;
|
|
|
|
--ld)
|
|
|
|
echo $LD
|
|
|
|
;;
|
2004-07-17 17:48:37 +00:00
|
|
|
--help|-h)
|
2001-03-03 20:26:27 +00:00
|
|
|
usage 1 1>&2
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
2004-07-17 21:54:31 +00:00
|
|
|
-*)
|
|
|
|
# unrecognized flag is error
|
|
|
|
usage 1 1>&2
|
|
|
|
;;
|
1999-06-01 16:14:29 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|