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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
dnl Configure template for the GNU plotutils package.
dnl Copyright (C) 1989-2000 Free Software Foundation, Inc.
dnl Process this file with autoconf to produce a configure script.
AC_INIT(graph/graph.c)
AM_INIT_AUTOMAKE(plotutils, 2.4.1)
AM_CONFIG_HEADER(config.h)
dnl Did installer set the CFLAGS and CXXFLAGS environ variables before
dnl running configure? Our default CFLAGS and CXXFLAGS differ from
dnl autoconf's, but we won't override installer-specified values.
if test "x$CFLAGS" = "x"; then
CFLAGS_NOT_SET_BY_INSTALLER="yes"
else
CFLAGS_NOT_SET_BY_INSTALLER="no"
fi
if test "x$CXXFLAGS" = "x"; then
CXXFLAGS_NOT_SET_BY_INSTALLER="yes"
else
CXXFLAGS_NOT_SET_BY_INSTALLER="no"
fi
dnl We now use libtool to make and installed a shared library. This should
dnl invoke the tests AC_PROG_CC, AC_OBJEXT, AC_PROG_INSTALL, and
dnl AC_PROG_MAKE_SET, or equivalents, so we don't perform them explicitly.
dnl Note: this can apparently alter CFLAGS, on a few platforms, e.g., on
dnl SCO OpenServer 5 (i.e. *-*-sco3.2v5*), "-belf" is added.
AM_PROG_LIBTOOL
dnl Determine extension (e.g. ".exe") on executables, if any.
AC_EXEEXT
dnl Compiler characteristics and typedefs.
AC_MSG_CHECKING(for void)
AC_TRY_COMPILE(, [void *foo = 0;], [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_VOID)], [AC_MSG_RESULT(no)])
AC_C_CONST
AC_TYPE_SIZE_T
AC_TYPE_PID_T
AC_TYPE_SIGNAL
dnl Check whether fflush(NULL) works
AC_MSG_CHECKING(whether flushing a null FILE pointer works)
AC_TRY_RUN([
#include <stdio.h>
int main()
{
FILE *fpw, *fpr;
char test_array[7];
if ((fpw = fopen ("conftest0", "w")) == (FILE *)0
|| fwrite ("FOOBAR", 1, 7, fpw) != 7
|| fflush ((FILE *)0) < 0
|| (fpr = fopen ("conftest0", "r")) == (FILE *)0
|| fread (test_array, 1, 7, fpr) != 7)
exit (1);
else
exit(0); }],
[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_NULL_FLUSH)], [AC_MSG_RESULT(no); AC_DEFINE(DONT_HAVE_NULL_FLUSH)], [AC_MSG_RESULT(no); AC_DEFINE(DONT_HAVE_NULL_FLUSH)])
dnl Checks for header files: ANSI C, POSIX, and nonstandard Unix headers.
AC_HEADER_STDC
AC_CHECK_HEADERS(string.h limits.h float.h)
AC_CHECK_HEADERS(malloc.h pthread.h strings.h unistd.h values.h sys/select.h sys/stdtypes.h sys/time.h sys/types.h sys/wait.h)
AC_HEADER_TIME
dnl HP/UX needs a cpp definition for math.h to define matherr-related things
AC_EGREP_HEADER(_HPUX_SOURCE, math.h, AC_EGREP_HEADER(matherr, math.h, AC_DEFINE(_HPUX_SOURCE)))
dnl Sui generis.
AC_FUNC_ALLOCA
dnl Necessitated by lack of support in autoconf for libtool.
LTALLOCA=`echo "$ALLOCA" | sed 's/\.o/.lo/g'`
AC_SUBST(LTALLOCA)
dnl Checks for programs
AC_PROG_YACC
AM_PROG_LEX
dnl Should libplot/libplotter support multithreading via pthread mutexes?
dnl Check to see whether libc includes dummy ("weak") pthread functions, so
dnl that executables may be linked with a library that uses mutexes without
dnl also linking with -lpthread. (This is the case with glibc under
dnl Linux.)
AC_CHECK_LIB(c, pthread_mutex_init, AC_DEFINE(PTHREAD_SUPPORT))
dnl Do we have the thread-safe library functions ctime_r(), localtime_r()?
AC_CHECK_FUNCS(ctime_r localtime_r)
dnl Do we have the POSIX waitpid() function?
AC_CHECK_FUNCS(waitpid)
dnl Other non-X library functions and auxiliary libraries.
dnl
dnl SGI's have matherr in libmx.a, not libm.a
AC_CHECK_LIB(mx, matherr, LIBS="$LIBS -lmx", LIBS="$LIBS -lm")
AC_CHECK_FUNCS(memcpy memmove strchr strcasecmp strerror matherr j0 erf)
dnl lgamma() and gamma() both compute the log of the gamma function. There
dnl are old systems out there which do not have lgamma (the name was
dnl introduced after BSD 4.2), but which do have gamma. Also some systems,
dnl new and old, have lgamma but not gamma.
AC_CHECK_FUNCS(lgamma gamma)
dnl Prepare to support X. If the user gave the command-line option
dnl --without-x, AC_PATH_XTRA will set no_x to "yes". Otherwise, it will
dnl add appropriate preprocessor flags to X_CFLAGS, and appropriate linker
dnl flags to X_LIBS. It also checks for system-specific X libraries, and
dnl adds them to X_PRE_LIBS or X_EXTRA_LIBS, as appropriate. (The former
dnl is where "-lSM -lICE" goes, in X11R6.) We define the X_TOOLKIT_LIBS
dnl and X_BASIC_LIBS argument vectors ourselves, and if X is to be
dnl supported, we'll concatenate the whole lot of these into a command line
dnl for libtool. See, e.g., the libplot_la_LIBADD line in
dnl libplot/Makefile.am.
AC_PATH_XTRA
AC_SUBST(X_CFLAGS)
dnl Following five are concatenated together into a linker specification.
AC_SUBST(X_LIBS)
AC_SUBST(X_TOOLKIT_LIBS)
AC_SUBST(X_PRE_LIBS)
AC_SUBST(X_BASIC_LIBS)
AC_SUBST(X_EXTRA_LIBS)
X_TOOLKIT_LIBS="-lXt"
X_BASIC_LIBS="-lXext -lX11"
dnl Check whether libXt has thread support. Some platforms may have
dnl pthread support in libc, but no thread support in libXt/libX11.
our_saved_LDFLAGS="$LDFLAGS"
LDFLAGS="$X_LIBS $LDFLAGS"
AC_CHECK_LIB(Xt, XtToolkitThreadInitialize, AC_DEFINE(X_THREAD_SUPPORT), , $X_PRE_LIBS $X_BASIC_LIBS $X_EXTRA_LIBS)
LDFLAGS="$our_saved_LDFLAGS"
dnl Check in -lXext for double buffering extensions to X11, and check
dnl whether appropriate header files are present. (Some systems have one
dnl but not the other.)
our_saved_LDFLAGS="$LDFLAGS"
LDFLAGS="$X_LIBS $LDFLAGS"
AC_CHECK_LIB(Xext, XdbeQueryExtension, AC_DEFINE(HAVE_DBE_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
AC_CHECK_LIB(Xext, XmbufQueryExtension, AC_DEFINE(HAVE_MBX_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
LDFLAGS="$our_saved_LDFLAGS"
our_saved_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$X_CFLAGS $CPPFLAGS"
AC_CHECK_HEADERS(X11/extensions/Xdbe.h X11/extensions/multibuf.h)
CPPFLAGS="$our_saved_CPPFLAGS"
dnl Allow installer to specify location of Athena widgets (i.e. location of
dnl libraries lib/libXaw.so and lib/libXmu.so, and header files). If the
dnl argument of --with-athena is a directory DIR, we'll add an `-L DIR/lib'
dnl option to the head of X_LIBS and an `-I DIR/include' option to the head
dnl of X_CFLAGS.
AC_ARG_WITH(athena, [ --with-athena[=DIR] use Athena widgets: includes and libraries in DIR])
dnl If --with-motif is specified, then `-lXm' will be added to the head of
dnl X_TOOLKIT_LIBS, instead of `-lXaw -lXmu', and --with-athena will be
dnl ignored. We allow the installer to specify DIR, the location of Motif.
dnl If the argument of --with-motif is a directory, an `-L DIR/lib' option
dnl will be added to the head of X_LIBS and an `-I DIR/include' option to
dnl the head of C_FLAGS.
AC_ARG_WITH(motif, [ --with-motif[=DIR] use Motif widgets: includes and libraries in DIR])
dnl If --with-motif is specified, we always check for the Xpm image
dnl library, and if we find it, then we place it at the beginning of
dnl X_BASIC_LIBS, since Motif 2.x requires it (it may be included in -lXm
dnl already, though). We also allow the installer to specify a location
dnl for Xpm. If DIR is specified as an argument to --with-xpm, DIR/include
dnl should contain xpm.h, and DIR/lib should contain the library libxpm.
AC_ARG_WITH(xpm, [ --with-xpm[=DIR] use Xpm with Motif: include and library in DIR])
dnl NOTE: Motif 2.x also seems to require the extension library -lXp for
dnl printing, so if --with-motif is specified we always check for libXp.
dnl If we find it, we'll place `-lXp' before `-lXext -lX11' in
dnl X_BASIC_LIBS. Also, Motif on Sys-V derived systems requires `-lPW'.
dnl If we find libPW, we'll add `-lPW' to LIBS, but precede it by -lc
dnl because some of its definitions may conflict with the standard library.
dnl Similarly we always check for libgen, which some versions of Motif on
dnl Solaris need.
dnl NOTE: For each `with' option, there are four possible values for the
dnl associated shell variable, all of which we must handle:
dnl
dnl 1. "" (if neither `--with-foo' nor `--without-foo' was specified)
dnl 2. "no" (obtained if `--without-foo' was specified)
dnl 3. "yes" (obtained if `--with-foo' was specified, without an argument)
dnl 4. DIR (obtained if `--with-foo DIR' was specified)
case "x$with_motif" in
xno|x)
case "x$with_athena" in
xyes|x)
X_TOOLKIT_LIBS="-lXaw -lXmu $X_TOOLKIT_LIBS"
;;
xno) ;;
*)
X_TOOLKIT_LIBS="-lXaw -lXmu $X_TOOLKIT_LIBS"
X_CFLAGS="$X_CFLAGS -I$with_athena/include"
X_LIBS="$X_LIBS -L$with_athena/lib"
;;
esac
;;
*)
if test "x$with_motif" != "xyes"; then
X_CFLAGS="$X_CFLAGS -I$with_motif/include"
X_LIBS="$X_LIBS -L$with_motif/lib"
fi
X_TOOLKIT_LIBS="-lXm $X_TOOLKIT_LIBS"
our_saved_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $X_LIBS"
case "x$with_xpm" in
xno|x)
AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, X_BASIC_LIBS="-lXpm $X_BASIC_LIBS", , -lXext -lX11)
;;
xyes)
AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, X_BASIC_LIBS="-lXpm $X_BASIC_LIBS", , -lXext -lX11)
;;
*)
LDFLAGS="$LDFLAGS -L$with_xpm/lib"
AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, X_CFLAGS="$X_CFLAGS -I$with_xpm/include"; X_LIBS="$X_LIBS -L$with_xpm/lib"; X_BASIC_LIBS="-lXpm $X_BASIC_LIBS", , -lXext -lX11)
;;
esac
LDFLAGS="$our_saved_LDFLAGS"
our_saved_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $X_LIBS"
AC_CHECK_LIB(Xp, XpQueryExtension, X_BASIC_LIBS="-lXp $X_BASIC_LIBS", , -lXext -lX11)
AC_CHECK_LIB(gen, regex, LIBS="$LIBS -lc -lgen", LIBS="$LIBS")
AC_CHECK_LIB(PW, regex, LIBS="$LIBS -lc -lPW", LIBS="$LIBS")
LDFLAGS="$our_saved_LDFLAGS"
AC_DEFINE(USE_MOTIF)
;;
esac
dnl The libplot/libplotter Makefile.am files test the automake variable
dnl NO_X to determine whether X should be supported.
AM_CONDITIONAL(NO_X, test "x$no_x" = "xyes")
dnl Check for libpng and png.h, and if both are available, define the
dnl config.h variable INCLUDE_PNG_SUPPORT; otherwise define the automake
dnl variable NO_PNG. The latter is used in libplot/Makefile.am and
dnl libplotter/Makefile.am.
dnl NOTE: the test for libpng checks for the function png_set_tRNS(),
dnl because it was added to libpng in version 0.95, which is the minimum
dnl version that we can use.
dnl ALSO NOTE: the test for libpng automatically checks for zlib, since it
dnl supplies the `-lz' argument to the linker.
AC_CHECK_HEADERS(png.h, png_support="yes", png_support="no")
AC_CHECK_LIB(png, png_set_tRNS, AC_DEFINE(HAVE_LIBPNG), png_support="no", -lz -lm)
AC_ARG_WITH(libpng, [ --without-libpng omit PNG support even if libpng and zlib are present], if test "x${with_libpng}" = "xno"; then png_support="no"; fi)
if test "x${png_support}" = "xyes"; then AC_DEFINE(INCLUDE_PNG_SUPPORT) fi
AM_CONDITIONAL(NO_PNG, test "x${png_support}" = "xno")
dnl Font options. The ps_fonts_in_pcl variable is used by test/plot2hpgl.test.
AC_ARG_ENABLE(ps-fonts-in-pcl,
[ --enable-ps-fonts-in-pcl enable use of PS fonts in PCL and HP-GL/2 output],
[if test "x$enableval" = "xyes"; then
echo enabling support for the 35 PS fonts in PCL 5 and HP-GL/2 output
ps_fonts_in_pcl=1
AC_DEFINE(USE_PS_FONTS_IN_PCL)
else
ps_fonts_in_pcl=0
fi],
ps_fonts_in_pcl=0)
AC_SUBST(ps_fonts_in_pcl)
AC_ARG_ENABLE(lj-fonts-in-ps,
[ --enable-lj-fonts-in-ps enable use of LaserJet fonts in PS output],
[if test "x$enableval" = "xyes"; then
echo enabling support for the 45 LaserJet fonts in PS output
AC_DEFINE(USE_LJ_FONTS_IN_PS)
fi])
AC_ARG_ENABLE(lj-fonts-in-x,
[ --enable-lj-fonts-in-x enable use of LaserJet fonts on X displays],
[if test "x$enableval" = "xyes"; then
echo enabling support for the 45 LaserJet fonts on X displays
AC_DEFINE(USE_LJ_FONTS_IN_X)
fi])
dnl Do we build libplotter, the C++ library, and other C++ software?
AC_LANG_SAVE
AC_ARG_ENABLE(libplotter, [ --enable-libplotter build the C++ Plotter class library and C++ software], echo enabling construction of the C++ class library; [AC_PROG_CXX] no_libplotter="no"; AC_MSG_CHECKING(whether ${CXX-g++} supports bool); [AC_LANG_CPLUSPLUS] AC_TRY_COMPILE(, [bool foo = true;], AC_MSG_RESULT(yes); AC_DEFINE(HAVE_BOOL), AC_MSG_RESULT(no)), no_libplotter="yes"; extralib="")
AC_LANG_RESTORE
AM_CONDITIONAL(NO_LIBPLOTTER, test "x$no_libplotter" = "xyes")
dnl Do we build and install a standalone version of the libxmi
dnl scan-conversion library? (Not done by default because it's separately
dnl distributed.)
AC_ARG_ENABLE(libxmi, [ --enable-libxmi build the libxmi scan-conversion library], echo enabling construction of the libxmi scan-conversion library; no_libxmi="no", no_libxmi="yes")
AM_CONDITIONAL(NO_LIBXMI, test "x$no_libxmi" = "xyes")
dnl Override default autoconf value "-g -O2" or "-g" for CFLAGS and
dnl CXXFLAGS, set by AC_PROG_CC and AC_PROG_CXX. Provided, that is,
dnl installer didn't set CFLAGS via an environment variable before running
dnl configure. We don't use "-g" when compiling libplot or libplotter,
dnl since debugging versions of those libraries would be huge. Perhaps we
dnl should use it when compiling the executables, though?
dnl Note: on a very few platforms where libtool adds a command-line option
dnl to CFLAGS (see above; this includes SCO OpenServer 5, where "-belf" is
dnl added), this way of doing things will not work, i.e., the installer
dnl will need to add by hand the option that libtool would have added.
dnl E.g., on SCO OpenServer5 the installer may need to set the environment
dnl variable CFLAGS to "-O -belf" or "-O2 -belf".
if test "x$CFLAGS_NOT_SET_BY_INSTALLER" = "xyes"; then
if test "x$GCC" = "xyes"; then
CFLAGS="-O2"
else
CFLAGS="-O"
fi
fi
if test "x$CXXFLAGS_NOT_SET_BY_INSTALLER" = "xyes"; then
if test "x$GXX" = "xyes"; then
CXXFLAGS="-O2"
else
CXXFLAGS="-O"
fi
fi
dnl Check for gcc strength-reduce bug (taken from WINE config). Could do
dnl the same for g++, but we'll assume anyone doing any C++ compiling has
dnl installed a modern compiler.
if test "x${GCC}" = "xyes"; then
AC_CACHE_CHECK("for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
AC_TRY_RUN([
int main()
{
static int Array[[3]];
unsigned int B = 3;
int i;
for (i=0; i < B; i++)
Array[[i]] = i - 3;
exit (Array[[1]] != -2);
}],
ac_cv_c_gcc_strength_bug="no",
ac_cv_c_gcc_strength_bug="yes",
ac_cv_c_gcc_strength_bug="yes") )
if test "$ac_cv_c_gcc_strength_bug" = "yes"
then
CFLAGS="$CFLAGS -fno-strength-reduce"
fi
fi
AC_OUTPUT(Makefile double/Makefile graph/Makefile pic2plot/Makefile pic2plot/doc/Makefile pic2plot/libgroff/Makefile pic2plot/include/Makefile info/Makefile lib/Makefile libplot/Makefile libplotter/Makefile libxmi/Makefile libxmi/info/Makefile plot/Makefile tek2plot/Makefile tek2plot/teksamples/Makefile plotfont/Makefile spline/Makefile ode/Makefile ode-examples/Makefile include/Makefile doc/Makefile fonts/Makefile fonts/bdf/Makefile fonts/pcf/Makefile fonts/pfb/Makefile test/Makefile)
|