2004-01-13 16:11:38 +00:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ(2.57)
|
2011-03-18 17:58:17 +00:00
|
|
|
AC_INIT(qucs,0.0.17,qucs-bugs@lists.sourceforge.net)
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_CONFIG_SRCDIR([qucs/qucs.cpp])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|
|
|
|
AC_CANONICAL_BUILD
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AC_CANONICAL_TARGET
|
2004-04-30 22:32:03 +00:00
|
|
|
AM_INIT_AUTOMAKE([no-define])
|
2003-11-23 14:49:01 +00:00
|
|
|
AM_MAINTAINER_MODE
|
2004-07-04 11:26:58 +00:00
|
|
|
AC_PREFIX_DEFAULT([/usr/local])
|
|
|
|
test "x$prefix" = xNONE && prefix="/usr/local"
|
2003-11-19 16:16:44 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Checks for programs.
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_PROG_CXX
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_RANLIB
|
2006-05-15 06:32:50 +00:00
|
|
|
AC_CHECK_TOOL(AR, ar, :)
|
2004-01-13 16:11:38 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for debugging option.
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_ARG_ENABLE([debug],
|
|
|
|
AC_HELP_STRING([--enable-debug],
|
|
|
|
[include debug output @<:@default=no@:>@]),
|
|
|
|
[case "$enableval" in
|
|
|
|
yes) enable_debug="yes" ;;
|
|
|
|
no) enable_debug="no" ;;
|
|
|
|
*) enable_debug="no" ;;
|
|
|
|
esac],
|
|
|
|
[enable_debug="no"])
|
|
|
|
if test $USE_MAINTAINER_MODE = yes; then
|
|
|
|
enable_debug="yes"
|
|
|
|
fi
|
|
|
|
if test "$enable_debug" = yes; then
|
|
|
|
AC_DEFINE(DEBUG, 1, [Define if debug output should be supported.])
|
2004-05-29 20:41:36 +00:00
|
|
|
QT_DEF=""
|
2004-01-13 16:11:38 +00:00
|
|
|
else
|
|
|
|
AC_DEFINE(NDEBUG, 1, [Define if debug code should be suppressed.])
|
2006-09-12 06:41:21 +00:00
|
|
|
QT_DEF="-DQT_NO_DEBUG -DQT_NO_CHECK"
|
2005-10-19 08:59:30 +00:00
|
|
|
if test "x$GCC" = xyes; then
|
|
|
|
CFLAGS="`echo $CFLAGS | sed -e 's/\-g //g'`"
|
|
|
|
CXXFLAGS="`echo $CXXFLAGS | sed -e 's/\-g //g'`"
|
2007-12-08 21:32:39 +00:00
|
|
|
# disable stripping (debian bug #437876)
|
|
|
|
# case $host_os in
|
|
|
|
# *darwin*) LDFLAGS="$LDFLAGS" ;;
|
|
|
|
# *) LDFLAGS="$LDFLAGS -s" ;;
|
|
|
|
# esac
|
2005-10-19 08:59:30 +00:00
|
|
|
fi
|
2004-01-13 16:11:38 +00:00
|
|
|
fi
|
|
|
|
unset enable_debug
|
|
|
|
|
2006-05-15 06:32:50 +00:00
|
|
|
dnl Check for Win32.
|
|
|
|
case $host_os in
|
|
|
|
*mingw*) WIN32=yes ;;
|
|
|
|
*) WIN32=no ;;
|
|
|
|
esac
|
2006-08-28 08:15:45 +00:00
|
|
|
AM_CONDITIONAL(COND_WIN32, test x$WIN32 = xyes)
|
2006-05-15 06:32:50 +00:00
|
|
|
|
2008-11-27 18:28:12 +00:00
|
|
|
dnl Check for MacOSX.
|
|
|
|
case $host_os in
|
|
|
|
*darwin*) MACOSX=yes ;;
|
|
|
|
*) MACOSX=no ;;
|
|
|
|
esac
|
|
|
|
AM_CONDITIONAL(COND_MACOSX, test x$MACOSX = xyes)
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Yet another compiler check.
|
2004-01-13 16:11:38 +00:00
|
|
|
if test "x$GCC" = xyes; then
|
2004-05-29 20:41:36 +00:00
|
|
|
CFLAGS="$CFLAGS -pipe"
|
2006-04-10 06:12:35 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -pipe -fno-exceptions -fno-check-new"
|
2006-05-15 06:32:50 +00:00
|
|
|
if test x$WIN32 = xyes; then
|
|
|
|
CXXFLAGS="$CXXFLAGS -fno-rtti"
|
|
|
|
fi
|
2004-01-13 16:11:38 +00:00
|
|
|
if test $USE_MAINTAINER_MODE = yes; then
|
|
|
|
CFLAGS="$CFLAGS -W -Wall -Wmissing-prototypes"
|
2004-10-21 17:14:09 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -W -Wall"
|
2004-01-13 16:11:38 +00:00
|
|
|
fi
|
2003-11-19 16:16:44 +00:00
|
|
|
fi
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for new platforms.
|
2004-06-27 15:09:28 +00:00
|
|
|
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
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Release specific. Uncomment these as required.
|
2004-01-13 16:11:38 +00:00
|
|
|
# AC_CONFIG_SUBDIRS(qucs-core)
|
2006-01-16 11:54:04 +00:00
|
|
|
# AC_CONFIG_SUBDIRS(freehdl)
|
|
|
|
# RELEASEDIRS="qucs-core"
|
|
|
|
# RELEASEDIRS="$RELEASEDIRS freehdl"
|
|
|
|
AC_SUBST(RELEASEDIRS)
|
2004-01-13 16:11:38 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for language support.
|
2006-09-12 06:41:21 +00:00
|
|
|
AC_PATH_PROGS(LRELEASE, lrelease-qt3 lrelease, :, [$QTDIR/bin:$PATH])
|
|
|
|
AC_PATH_PROGS(LUPDATE, lupdate-qt3 lupdate, :, [$QTDIR/bin:$PATH])
|
2004-01-13 16:11:38 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for MOC/UIC support.
|
2006-09-12 06:41:21 +00:00
|
|
|
AC_PATH_PROGS(MOC, moc-qt3 moc, :, [$QTDIR/bin:$PATH])
|
|
|
|
AC_PATH_PROGS(UIC, uic-qt3 uic, :, [$QTDIR/bin:$PATH])
|
2004-06-27 15:09:28 +00:00
|
|
|
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
|
2004-01-24 17:42:38 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for X11
|
2006-05-15 06:32:50 +00:00
|
|
|
if test x$WIN32 != 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
|
2004-01-13 16:11:38 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check include path to Qt.
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_INCLUDES=""
|
|
|
|
QT_VER=2
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_MSG_CHECKING([for Qt headers])
|
2004-01-24 17:42:38 +00:00
|
|
|
paths="$QTDIR/include /usr/local/qt/include /usr/include/qt /usr/include/qt3 \
|
|
|
|
/usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/X11/qt \
|
2006-09-12 06:41:21 +00:00
|
|
|
/usr/X11R6/include/qt /usr/X11R6/include /sw/include/qt \
|
2009-03-29 14:54:37 +00:00
|
|
|
/usr/X11R6/include/qt2 $prefix/include/qt3"
|
2004-01-13 16:11:38 +00:00
|
|
|
for path in $paths; do
|
|
|
|
if test -f "$path/qapplication.h"; then
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_INCLUDES=$path
|
|
|
|
if test -f "$path/qmemarray.h"; then
|
|
|
|
QT_VER=3
|
|
|
|
fi
|
2004-01-13 16:11:38 +00:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2004-01-24 17:42:38 +00:00
|
|
|
if test "x$QT_INCLUDES" != "x"; then
|
|
|
|
AC_MSG_RESULT([found in $QT_INCLUDES])
|
|
|
|
QT_INCLUDES="-I$QT_INCLUDES"
|
2004-01-13 16:11:38 +00:00
|
|
|
else
|
|
|
|
AC_MSG_ERROR([not found])
|
|
|
|
fi
|
2004-01-24 17:42:38 +00:00
|
|
|
AC_SUBST(QT_INCLUDES)
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for multi-threaded option.
|
2004-01-24 17:42:38 +00:00
|
|
|
AC_ARG_ENABLE([mt],
|
|
|
|
AC_HELP_STRING([--disable-mt],
|
|
|
|
[link to non-threaded Qt (deprecated)]),
|
|
|
|
enable_mt="$enableval",
|
|
|
|
[if test $QT_VER = 3; then
|
|
|
|
enable_mt="yes"
|
|
|
|
else
|
|
|
|
enable_mt="no"
|
|
|
|
fi])
|
|
|
|
if test "$enable_mt" = yes; then
|
2006-05-15 06:32:50 +00:00
|
|
|
QT_LDF=""
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_LIB="-lqt-mt"
|
2006-05-15 06:32:50 +00:00
|
|
|
QT_INC="$QT_DEF -DQT_THREAD_SUPPORT -D_REENTRANT"
|
2005-07-28 19:19:31 +00:00
|
|
|
[case $host_os in
|
2006-05-15 06:32:50 +00:00
|
|
|
*freebsd4*) QT_LIB="$QT_LIB -pthread" ;;
|
|
|
|
*freebsd[567]*) QT_LIB="$QT_LIB -lpthread" ;;
|
|
|
|
*mingw*) QT_INC="$QT_INC -mthreads"; QT_LDF="$QT_LDF -mthreads" ;;
|
2005-07-28 19:19:31 +00:00
|
|
|
esac]
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_MTS="multi-threaded"
|
|
|
|
else
|
2006-05-15 06:32:50 +00:00
|
|
|
QT_LDF=""
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_LIB="-lqt"
|
2004-05-29 20:41:36 +00:00
|
|
|
QT_INC="$QT_DEF"
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_MTS="non-threaded"
|
|
|
|
fi
|
2005-02-28 09:30:41 +00:00
|
|
|
case $host_os in
|
2006-05-15 06:32:50 +00:00
|
|
|
*mingw*)
|
|
|
|
QT_LIB="$QT_LIB -lqtmain"
|
|
|
|
QT_INC="$QT_INC -DQT_DLL -DUNICODE"
|
|
|
|
QT_LDF="$QT_LDF -mwindows"
|
|
|
|
;;
|
2005-02-28 09:30:41 +00:00
|
|
|
esac
|
2004-01-24 17:42:38 +00:00
|
|
|
unset enable_mt
|
2004-01-13 16:11:38 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check library path to Qt.
|
2004-01-24 17:42:38 +00:00
|
|
|
QT_LDFLAGS=""
|
2006-05-15 06:32:50 +00:00
|
|
|
QT_LIBS=""
|
2004-01-24 17:42:38 +00:00
|
|
|
AC_MSG_RESULT([checking for Qt... $QT_VER ($QT_MTS)])
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_MSG_CHECKING([for Qt library])
|
2006-02-13 09:35:10 +00:00
|
|
|
paths="$QTDIR/lib $QTDIR/lib64 /usr/local/qt/lib /usr/lib/qt /usr/lib \
|
2004-01-24 17:42:38 +00:00
|
|
|
/usr/X11R6/lib/X11/qt /usr/X11R6/lib/X11/qt /usr/X11R6/lib/qt \
|
2006-09-12 06:41:21 +00:00
|
|
|
/usr/X11R6/lib /sw/lib /usr/lib64/qt /usr/X11R6/lib/qt2"
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_LANG(C++)
|
|
|
|
for path in $paths; do
|
2006-05-15 06:32:50 +00:00
|
|
|
save_LIBS="$LIBS"
|
2004-01-13 16:11:38 +00:00
|
|
|
save_LDFLAGS="$LDFLAGS"
|
|
|
|
save_CXXFLAGS="$CXXFLAGS"
|
2006-05-15 06:32:50 +00:00
|
|
|
LIBS="$LIBS $X11_LIBS $QT_LIB"
|
|
|
|
LDFLAGS="$LDFLAGS $X11_LDFLAGS -L$path $QT_LDF"
|
|
|
|
CXXFLAGS="$CXXFLAGS $X11_INCLUDES $QT_INCLUDES $QT_INC"
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_LINK_IFELSE(
|
|
|
|
[#include <qapplication.h>
|
|
|
|
int main (int argc, char ** argv) {
|
|
|
|
QApplication a (argc, argv); a.exec (); return 0; }],
|
2004-01-24 17:42:38 +00:00
|
|
|
[QT_LDFLAGS="$path";
|
|
|
|
QT_INCLUDES="$QT_INCLUDES $QT_INC";
|
|
|
|
break;])
|
2006-05-15 06:32:50 +00:00
|
|
|
LIBS="$save_LIBS"
|
2004-01-13 16:11:38 +00:00
|
|
|
LDFLAGS="$save_LDFLAGS"
|
|
|
|
CXXFLAGS="$save_CXXFLAGS"
|
|
|
|
done
|
2006-05-15 06:32:50 +00:00
|
|
|
LIBS="$save_LIBS"
|
2004-01-13 16:11:38 +00:00
|
|
|
LDFLAGS="$save_LDFLAGS"
|
|
|
|
CXXFLAGS="$save_CXXFLAGS"
|
2004-01-24 17:42:38 +00:00
|
|
|
if test "x$QT_LDFLAGS" != "x"; then
|
|
|
|
AC_MSG_RESULT([found in $QT_LDFLAGS])
|
2006-05-15 06:32:50 +00:00
|
|
|
QT_LDFLAGS="-L$QT_LDFLAGS $QT_LDF"
|
|
|
|
QT_LIBS="$QT_LIB"
|
2004-01-13 16:11:38 +00:00
|
|
|
else
|
|
|
|
AC_MSG_ERROR([not found])
|
|
|
|
fi
|
2004-01-24 17:42:38 +00:00
|
|
|
AC_SUBST(QT_LDFLAGS)
|
2006-05-15 06:32:50 +00:00
|
|
|
AC_SUBST(QT_LIBS)
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_LANG(C)
|
2003-11-19 16:16:44 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for additional header files.
|
2004-08-30 15:23:25 +00:00
|
|
|
AC_CHECK_HEADERS([ieeefp.h])
|
|
|
|
|
2010-03-29 21:01:04 +00:00
|
|
|
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)
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Check for path transformation.
|
2004-02-09 18:33:58 +00:00
|
|
|
case $build_os in
|
|
|
|
mingw* | cygwin*)
|
|
|
|
PATHXFORM="cygpath -w"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
PATHXFORM="echo"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(PATHXFORM)
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Create path info.
|
2003-11-29 11:28:15 +00:00
|
|
|
BITMAP_PATH="$prefix/share/qucs/bitmaps/"
|
2004-01-21 00:00:48 +00:00
|
|
|
AC_DEFINE_UNQUOTED([BITMAPDIR], ["$BITMAP_PATH"],
|
|
|
|
[Where the data files go.])
|
2003-11-19 16:16:44 +00:00
|
|
|
unset BITMAP_PATH
|
|
|
|
BIN_PATH="$prefix/bin/"
|
2004-01-21 00:00:48 +00:00
|
|
|
AC_DEFINE_UNQUOTED([BINARYDIR], ["$BIN_PATH"],
|
|
|
|
[Where the binary files go.])
|
2003-11-19 16:16:44 +00:00
|
|
|
unset BIN_PATH
|
2003-11-29 11:28:15 +00:00
|
|
|
LANG_PATH="$prefix/share/qucs/lang/"
|
2004-01-21 00:00:48 +00:00
|
|
|
AC_DEFINE_UNQUOTED([LANGUAGEDIR], ["$LANG_PATH"],
|
|
|
|
[Where the language files go.])
|
2003-11-29 11:28:15 +00:00
|
|
|
unset LANG_PATH
|
2005-05-30 06:19:42 +00:00
|
|
|
LIBRARY_PATH="$prefix/share/qucs/library/"
|
|
|
|
AC_DEFINE_UNQUOTED([LIBRARYDIR], ["$LIBRARY_PATH"],
|
|
|
|
[Where the component library files go.])
|
|
|
|
unset LIBRARY_PATH
|
2004-09-15 10:06:47 +00:00
|
|
|
DOC_PATH="$prefix/share/qucs/docs/"
|
2004-01-21 00:00:48 +00:00
|
|
|
AC_DEFINE_UNQUOTED([DOCDIR], ["$DOC_PATH"],
|
|
|
|
[Where the documentation files go.])
|
2004-01-18 14:41:45 +00:00
|
|
|
unset DOC_PATH
|
2011-03-04 16:32:38 +00:00
|
|
|
OCTAVE_PATH="$prefix/share/qucs/octave/"
|
|
|
|
AC_DEFINE_UNQUOTED([OCTAVEDIR], ["$OCTAVE_PATH"],
|
|
|
|
[Where the octave script files go.])
|
|
|
|
unset OCTAVE_PATH
|
2003-11-19 16:16:44 +00:00
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Definitions at top of <config.h>.
|
2004-01-24 17:42:38 +00:00
|
|
|
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
|
|
|
|
])
|
|
|
|
|
2006-01-16 11:54:04 +00:00
|
|
|
dnl Add here all your Makefiles. These are created by configure.
|
2004-01-13 16:11:38 +00:00
|
|
|
AC_CONFIG_FILES([Makefile
|
2007-06-05 18:03:49 +00:00
|
|
|
contrib/Makefile
|
2004-06-23 16:03:26 +00:00
|
|
|
qucs-edit/Makefile
|
2004-06-26 07:05:47 +00:00
|
|
|
qucs-help/Makefile
|
2005-04-04 08:28:09 +00:00
|
|
|
qucs-help/docs/Makefile
|
|
|
|
qucs-help/docs/en/Makefile
|
|
|
|
qucs-help/docs/de/Makefile
|
|
|
|
qucs-help/docs/es/Makefile
|
|
|
|
qucs-help/docs/fr/Makefile
|
2006-05-23 09:13:17 +00:00
|
|
|
qucs-help/docs/ru/Makefile
|
2007-06-16 10:57:07 +00:00
|
|
|
qucs-help/docs/uk/Makefile
|
2008-08-04 15:35:19 +00:00
|
|
|
qucs-help/docs/cs/Makefile
|
2009-04-07 20:49:30 +00:00
|
|
|
qucs-help/docs/pt/Makefile
|
2005-03-05 14:52:09 +00:00
|
|
|
qucs-filter/Makefile
|
2009-04-27 17:04:17 +00:00
|
|
|
qucs-filter-v2/Makefile
|
2005-03-04 15:29:54 +00:00
|
|
|
qucs-transcalc/Makefile
|
|
|
|
qucs-transcalc/bitmaps/Makefile
|
2005-12-02 08:50:22 +00:00
|
|
|
qucs-transcalc/examples/Makefile
|
2005-05-30 06:19:42 +00:00
|
|
|
qucs-lib/Makefile
|
|
|
|
qucs-lib/library/Makefile
|
2006-07-04 09:21:49 +00:00
|
|
|
qucs-attenuator/Makefile
|
|
|
|
qucs-attenuator/bitmaps/Makefile
|
2004-01-13 16:11:38 +00:00
|
|
|
qucs/Makefile
|
|
|
|
qucs/bitmaps/Makefile
|
2011-03-04 16:32:38 +00:00
|
|
|
qucs/octave/Makefile
|
2004-01-13 16:11:38 +00:00
|
|
|
qucs/components/Makefile
|
|
|
|
qucs/diagrams/Makefile
|
2004-01-18 14:41:45 +00:00
|
|
|
qucs/paintings/Makefile
|
2005-04-04 08:28:09 +00:00
|
|
|
qucs/dialogs/Makefile])
|
2003-11-19 16:16:44 +00:00
|
|
|
AC_OUTPUT
|
2003-11-19 20:20:50 +00:00
|
|
|
|
|
|
|
dnl Print results.
|
|
|
|
AC_MSG_RESULT([])
|
|
|
|
AC_MSG_RESULT([ $PACKAGE version $VERSION configured successfully.])
|
|
|
|
AC_MSG_RESULT([])
|