1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
dnl Process this file with autoconf to produce a configure script.
dnl ## Initialize autoconf ##
AC_INIT(src/gwave.c)
AM_INIT_AUTOMAKE(gwave2, 20090213)
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)
dnl Use ANSI mode
AM_PROG_CC_STDC
dnl ## Checks for programs ##
AC_PROG_CC
AC_PROG_RANLIB
AC_PROG_LN_S
AC_PATH_PROGS(PERL, perl perl5, no)
AC_SUBST(PERL)
# this tries to find GNU graph only, not traditional berkeley/sysv graph,
# so we do the right thing on solaris, where an unusable one is in /usr/bin
# and the graph we want is usually in /usr/local/bin or some such.
AC_ARG_WITH(graph, [full pathname to GNU graph for postscript plotting])
dnl AC_MSG_RESULT(with_graph is $with_graph)
if test "$with_graph" != no; then
if test "$with_graph" != yes && test ! -z "$with_graph" ; then
AC_DEFINE_UNQUOTED(PROG_GRAPH, "$with_graph", [If present, the pathname of graph, from GNU plotutils.])
else
AC_PROG_GREPSTDOUT(GRAPH, graph --version, GNU, $ac_dir/$ac_word)
AC_DEFINE_UNQUOTED(PROG_GRAPH, "$GRAPH", [If present, the pathname of graph, from GNU plotutils.])
fi
fi
dnl do we need libtool?
dnl even though we aren't building shared libraries, it seemed to help on HP-UX
dnl AM_PROG_LIBTOOL
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
dnl Checks for library functions.
AC_FUNC_MEMCMP
dnl check for posix regular expression routines
AC_CHECK_HEADER([regex.h], [AC_CHECK_FUNC([regcomp], [AC_DEFINE(HAVE_POSIX_REGEXP,1,[defined if we have POSIX regular expression routines])])])
AC_CHECK_HEADERS([sys/types.h])
dnl check for GTK+
AM_PATH_GTK_2_0(2.8.0, AC_DEFINE(HAVE_GTK2,1,defined if we have a new enough GTK2), AC_MSG_ERROR(Can not find GTK+ 2.8.0 or later on this system))
dnl check for gtk/glib features
AC_CHECK_LIB(c, g_slice_set_config, AC_DEFINE(HAVE_G_SLICE_SET_CONFIG,1,[Define this if your version of glib2 has the slice allocator and g_slice_set_config]),,[$GTK_LIBS])
dnl check for readline library
AC_CHECK_LIB(termcap, tgoto, [
AC_CHECK_LIB(readline, readline, [
READLINE_LIB="-lreadline -ltermcap"
AC_DEFINE(HAVE_READLINE,1,[Define this if you have the readline library])
AC_CHECK_LIB(readline, add_history, AC_DEFINE(HAVE_HISTORY,1,[Define this if your readline also has add_history]),,"-ltermcap"
)
], READLINE_LIB="", "-ltermcap")
], AC_CHECK_LIB(ncurses, tgoto, [
AC_CHECK_LIB(readline, readline, [
READLINE_LIB="-lreadline -lncurses"
AC_DEFINE(HAVE_READLINE,1,[Define this if you have the readline library])
AC_CHECK_LIB(readline, add_history, AC_DEFINE(HAVE_HISTORY,1,[Define this if your readline also has add_history]),,"-l
ncurses")
], READLINE_LIB="", "-lncurses")
], READLINE_LIB=""))
AC_SUBST(READLINE_LIB)
dnl check for guile
GUILE_FLAGS
dnl checks for guile version-specific features, if any
dnl check for guile-gnome-platform
GUILE_MODULE_REQUIRED(gnome-2)
dnl GUILE_MODULE_REQUIRED(gnome gtk)
PKG_CHECK_MODULES(GUILE_GNOME, guile-gnome-gtk-2, ,AC_MSG_ERROR(Can not find Guile-gnome-platform))
dnl remind myself how to check for somthing I know exists
dnl GUILE_MODULE_EXPORTS(foo_widget_show, (gnome-0)(gnome gtk),gtk-widget-show)
dnl if test "$foo_widget_show" = yes; then
dnl AC_DEFINE(FOO_WIDGET_SHOW,1,"Defined if guile-gnome module (gnome gtk) already contains gtk-widget-show")
dnl fi
GUILE_MODULE_EXPORTS(have_guile_gtk_menu_popup,(gnome-2)(gnome gtk),gtk-menu-popup)
if test "$have_guile_gtk_menu_popup" = yes; then
AC_DEFINE(HAVE_GUILE_GTK_MENU_POPUP,1,"Defined if guile-gnome module (gnome gtk) already contains gtk-menu-popup")
fi
dnl doesn't work if prefix isn't specified.
dnl AC_DEFINE_UNQUOTED(DATADIR,"${datadir}",Installation prefix for finding necessary guile code)
AC_OUTPUT(Makefile \
src/Makefile spicefile/Makefile scheme/Makefile \
src/app/Makefile \
remote/Makefile \
utilities/Makefile \
utilities/gwave-doc-snarf \
utilities/doc-split \
utilities/sweepsplit \
gwave.spec \
scheme/gwave-config.scm)
|