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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (C) 2007- Akim Demaille, Miguel Santana, Masayuki Hatta])
## ---------------- ##
## Initialization. ##
## ---------------- ##
AC_INIT([GNU a2ps], [4.14], [bug-a2ps@gnu.org])
AC_CONFIG_AUX_DIR(auxdir)
m4_pattern_forbid([^jm_[A-Z]])
# Initialize automake
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)
# Specify the liba2ps version number
LIBVERSION=1:0:0
AC_SUBST(LIBVERSION)
GNU_PACKAGE="GNU $PACKAGE"
AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE",
[The concatenation of the strings `GNU ', and PACKAGE.])
AC_SUBST(GNU_PACKAGE)
# Available translations
ALL_LINGUAS="ca cs da de es fr it ja ko nl no pl pt ru sl sv tr"
## --------------------- ##
## Checks for programs. ##
## --------------------- ##
AC_PROG_AWK
AC_PROG_GNU_M4
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
jm_PATH_PERL
# Check for the C compiler and the various oddities that may exist
AC_PROG_CC
AC_AIX
AC_MINIX
AC_ISC_POSIX
AC_PROG_CPP
AM_PROG_CC_STDC
AM_C_PROTOTYPES
AC_PROG_YACC
fp_PROG_ECHO
AC_PROG_GPERF
missing_dir=`cd $ac_aux_dir && pwd`
AM_MISSING_PROG(GPERF, gperf, $missing_dir)
# I want flex, and only flex
AM_PROG_LEX
if test "$LEX" = lex; then
LEX="$missing_dir/missing flex"
LEX_OUTPUT_ROOT=lex.yy
AC_SUBST(LEX_OUTPUT_ROOT)dnl
fi
# Libtool. By default, don't do shared libs, liba2ps is not widely used.
AC_DISABLE_SHARED
AC_PROG_LIBTOOL
## ------------------------- ##
## Checks for header files. ##
## ------------------------- ##
AC_HEADER_STDC
AC_HEADER_STAT
AC_HEADER_TIME
AC_HEADER_SYS_WAIT
AC_HEADER_DIRENT
AC_CHECK_HEADERS(sys/time.h sys/stat.h sys/types.h sys/ioctl.h \
math.h string.h strings.h stdlib.h unistd.h stdarg.h pwd.h malloc.h \
memory.h errno.h fcntl.h stdbool.h fnmatch.h)
## --------------------- ##
## Checks for typedefs. ##
## --------------------- ##
#
# Checks for typedefs, structures, and compiler characteristics.
#
AC_C_CONST
AC_C_INLINE
AC_CHECK_TYPE(uchar, unsigned char)
AC_TYPE_SIZE_T
AC_TYPE_PID_T
AC_TYPE_SIGNAL
AC_STRUCT_TM
AC_CHECK_MEMBERS([struct passwd.pw_gecos],,,
[#if HAVE_PWD_H
# include <pwd.h>
#endif])
jm_AC_PREREQ_XSTRTOUMAX
jm_AC_TYPE_UINTMAX_T
#
# Portability non-Unix
#
AC_EXEEXT
# Checking for sys_siglist. Stolen from gmake-3.77
AC_CHECK_DECLS([sys_siglist],,,
[#include <sys/types.h>
#include <signal.h>
/* NetBSD declares sys_siglist in unistd.h. */
#if HAVE_UNISTD_H
# include <unistd.h>
#endif])
AC_MSG_CHECKING(for sys_siglist)
AC_CACHE_VAL(ac_cv_check_symbol_sys_siglist,
[AC_TRY_LINK(, [extern char *sys_siglist[]; puts(*sys_siglist);],
ac_cv_check_symbol_sys_siglist=yes,
ac_cv_check_symbol_sys_siglist=no)])
if test "$ac_cv_check_symbol_sys_siglist" = yes; then
AC_DEFINE_UNQUOTED(HAVE_SYS_SIGLIST, 1,
[Define if your system has `sys_siglist'.])
fi
AC_MSG_RESULT($ac_cv_check_symbol_sys_siglist)
## ---------------------- ##
## Checks for Libraries. ##
## ---------------------- ##
# -lsun is sometimes needed on IRIX to use passwd
AC_SEARCH_LIBS(getpwuid, sun,
[AC_DEFINE(HAVE_GETPWUID, 1,
[Define if you have the function `getpwuid'.])],)
## ------------------------------ ##
## checks for library functions. ##
## ------------------------------ ##
AC_REPLACE_FUNCS(stpcpy stpncpy strtoul memcpy memset gethostname getuid)
ad_REPLACE_FUNC_STRCASECMP
ad_REPLACE_FUNC_STRNCASECMP
ad_REPLACE_FUNC_RENAME
AC_CHECK_FUNCS(uname strchr strerror strerror_r getcwd bcopy bzero tempnam strsignal psignal setlocale)
ad_FUNC_SYSTEMPAPERNAME
ad_FUNC_ATEXIT
ad_FUNC_STRFTIME
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_VPRINTF
AC_FUNC_OBSTACK
AC_FUNC_ALLOCA
AC_FUNC_ERROR_AT_LINE
jm_FUNC_MALLOC
jm_FUNC_REALLOC
jm_PREREQ_QUOTEARG
# Check and replace broken or missing "fnmatch"
AC_FUNC_FNMATCH
if test $ac_cv_func_fnmatch_works = no; then
AC_LIBOBJ(fnmatch)
AC_DEFINE_UNQUOTED(fnmatch, rpl_fnmatch,
[Define to rpl_fnmatch if the replacement function should be used.])
fi
# Needed checks for tinyterm.[ch]
ad_TINYTERM_CHECKS
AC_CHECK_DECLS([fputs, strlen])
# Internationalization.
AM_GNU_GETTEXT_VERSION(0.11.5)
AM_GNU_GETTEXT(external, need-ngettext)
# Save the cache
AC_CACHE_SAVE
# In path separator character.
AC_DEFINE_UNQUOTED(DIRECTORY_SEPARATOR, '/',
[The char used to separate component of a path])
# Between paths separator character.
AC_DEFINE_UNQUOTED(PATH_SEPARATOR, ':',
[The char used to separate paths.])
# We define SYNTAX_TABLE so that regex uses syntax tables
AC_DEFINE(SYNTAX_TABLE, 1,
[Define to enable syntax table support in `regex'.])
## ---------------------------- ##
## Various extentions/options. ##
## ---------------------------- ##
# Some extra warnings
ad_GCC_WARNINGS
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
# Where to put the emacs files
AM_PATH_LISPDIR
# Shall the path to the tools be hardcoded?
ad_ENABLE_PATHS
# What should get installed?
AC_ARG_ENABLE(extensions,
AC_HELP_STRING(--disable-extensions,small foot print installation),
[case "${enableval}" in
yes|no) ;;
*) AC_MSG_ERROR(bad value ${enableval} for --disable-extensions) ;;
esac],[enable_extensions=yes])
AM_CONDITIONAL(EXTENSIONS, test x$enable_extensions = xyes)
AC_MSG_CHECKING(for PostScript fonts path)
# Try to find some PostScript fonts.
# Find out if ghostscript is installed
ac_psfont_path=
for ac_dir in /usr/local/ghostscript/fonts \
/usr/local/share/ghostscript/fonts;
do
if test "cd $ac_dir 2>/dev/null && echo *.afm"; then
ac_psfont_path="$ac_psfont_path:$ac_dir";
fi
done
dnl Currently, we don't try TeX fonts, because sed expressions
dnl explode. Anyway, we really need to support kpathsea to get there.
dnl # Try to find where are the TeX fonts.
dnl for ac_dir in /usr/local/TeX /usr/local/tex /usr/local/teTeX;
dnl do
dnl if test -d "$ac_dir/texmf/fonts/type1"; then
dnl # There are fonts here. Let's fetch all the directories.
dnl for ac_dir2 in $ac_dir/texmf/fonts/type1/* \
dnl $ac_dir/texmf/fonts/type1/*/* \
dnl $ac_dir/texmf/fonts/type1/*/*/* \
dnl $ac_dir/texmf/fonts/afm/* \
dnl $ac_dir/texmf/fonts/afm/*/* \
dnl $ac_dir/texmf/fonts/afm/*/*/* ;
dnl do
dnl if test -d "$ac_dir2" \
dnl && test -n `echo $ac_dir2/*.afm $ac_dir2/*.gsf $ac_dir2/*.pf?`; then
dnl ac_psfont_path="$ac_psfont_path:$ac_dir2";
dnl fi
dnl done
dnl fi
dnl done
dnl # Remove the leading `:'
if test -n "$ac_psfont_path"; then
PSFONT_PATH=`echo "$ac_psfont_path" | sed -e 's/^://'`
fi
AC_SUBST(PSFONT_PATH)
AC_MSG_RESULT([$ac_psfont_path])
## ---------------------------------------------------------- ##
## Write a first sketch of a2ps.cfg. The user should check. ##
## ---------------------------------------------------------- ##
#
# Check for the file program with follows the links
#
ad_PROG_FILE_LINK
AC_SUBST(FILE_LINK)
# How to send things in the printer queue
ad_PROG_LPR
#
# default medium to use (defaulted to A4)
#
AC_ARG_WITH(medium,
AC_HELP_STRING([--with-medium=medium],
[specify the default medium (A4, Letter, Legal, etc.) [default=A4]]),
MEDIUM=$with_medium,
if test x"$ac_cv_lib_paper_systempapername" = xyes; then
MEDIUM=libpaper
else
MEDIUM=A4
fi)
AC_SUBST(MEDIUM)
#
# default encoding to use (defaulted to latin1)
#
AC_ARG_WITH(encoding,
AC_HELP_STRING([--with-encoding=enc],
[specify the default encoding (ascii, latin1, latin2... latin6, hp etc.) [default=latin1]]),
ENCODING=$with_encoding,
ENCODING=latin1)
AC_SUBST(ENCODING)
########################
# Nice special printers
########################
# Look for GV or Ghostview
ad_CHECK_PROGS([gv, ghostview])
if test "$COM_gv$COM_ghostview" = "##"; then
COM_DISPLAY="#"
fi
AC_SUBST(COM_DISPLAY)
#################################
# Helping people with delegations
#################################
# "Compressed" delegation
ad_CHECK_PROG(gzip,
[a2ps works better with gzip.
Consider fetching gzip at any ftp site proposing GNU programs])
ad_CHECK_PROGS([bzip, bzip2])
# DVI delegation
ad_CHECK_PROG(dvips)
# ImageMagick for most image formats
ad_CHECK_PROG(convert)
# HTML delegation
ad_CHECK_PROGS([netscape, html2ps])
if test "x$COM_netscape" = x; then
AC_CACHE_CHECK(whether netscape support remote-command, remote_com_netscape,
[$netscape --help >conftest.help 2>&1
if fgrep -e -remote conftest.help >/dev/null &&
fgrep -e -noraise conftest.help >/dev/null; then
remote_com_netscape=yes
else
remote_com_netscape=no
fi
rm -f conftest.help])
test "$remote_com_netscape" = no && COM_netscape='#'
fi
# PDF delegation
ad_CHECK_PROGS([acroread, pdf2ps])
COM_acroread4='#'
AC_SUBST(COM_acroread4)
# If we have acroread, is it a version which supports -shrink etc.?
if test "x$COM_acroread" = x; then
AC_CACHE_CHECK(whether acroread is acroread 4, a2_cv_com_acroread4,
[$acroread -helpall >conftest.help
if fgrep -e -size conftest.help >/dev/null &&
fgrep -e -shrink conftest.help >/dev/null; then
a2_cv_com_acroread4=yes
else
a2_cv_com_acroread4=no
fi
rm -f conftest.help])
test "$a2_cv_com_acroread4" = yes && COM_acroread4=''
fi
# Outputting PDF
ad_CHECK_PROGS([distill, ps2pdf])
test "$COM_distill$COM_ps2pdf" = "##" && COM_PS2PDF="#"
AC_SUBST(COM_PS2PDF)
# PostScript delegation. Check for psutils 1.17
a2_PSUTILS(1, 17)
# ROFF delegation
ad_CHECK_PROG(grog,
[a2ps works better with groff.
Consider fetching groff at any ftp site proposing GNU programs])
# Texinfo delegation
ad_CHECK_PROGS([makeinfo, tex, latex])
COM_TEXI="$COM_tex$COM_makeinfo$COM_dvips"
COM_LATEX="$COM_latex$COM_dvips"
AC_SUBST(COM_TEXI)
AC_SUBST(COM_LATEX)
## ---------- ##
## Epilogue. ##
## ---------- ##
# This is necessary so that .o files in LIBOBJS are also built via
# the ANSI2KNR-filtering rules.
LIB@&t@OBJS=`echo "$LIB@&t@OBJS" | sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
# Autoconf 2.14a is not ready for libtool
LTLIBOBJS=`echo "$LIB@&t@OBJS" | sed 's/\.o/\.lo/g'`
AC_SUBST(LTLIBOBJS)
LTALLOCA=`echo "$ALLOCA" | sed 's/\.o/\.lo/g'`
AC_SUBST(LTALLOCA)
AC_CONFIG_SUBDIRS(ogonkify)
# Shell scripts
AC_CONFIG_FILES(contrib/card, chmod +x contrib/card)
AC_CONFIG_FILES(contrib/fixps, chmod +x contrib/fixps)
AC_CONFIG_FILES(contrib/pdiff, chmod +x contrib/pdiff)
AC_CONFIG_FILES(contrib/psmandup, chmod +x contrib/psmandup)
AC_CONFIG_FILES(contrib/psset, chmod +x contrib/psset)
AC_CONFIG_FILES([Makefile
src/Makefile
doc/Makefile
man/Makefile
tests/Makefile tests/defs
lib/Makefile
auxdir/Makefile
m4/Makefile
etc/Makefile etc/a2ps_cfg etc/a2ps-site.cfg
po/Makefile.in
sheets/Makefile
encoding/Makefile
ps/Makefile
afm/Makefile
contrib/Makefile
contrib/sample/Makefile
contrib/emacs/Makefile
fonts/Makefile
ppd/Makefile])
AC_OUTPUT
if test $MEDIUM = libpaper; then
libpaper_msg="
* (\`libpaper' means a2ps asks the medium to libpaper. See man paperconf.)"
fi
cat <<EOF
*****************************************************************
* a2ps thinks it should be configured the following way:
* - you print on \`$MEDIUM' paper$libpaper_msg
* - your charset is \`$ENCODING'
* - to send a JOB to the default printer, run \`$LPR job'
* - to send a JOB to the printer PRINTER, run \`$LPR $LPR_QUEUE_OPTION PRINTER job'
* - to ask \`file(1)' to follow the links, run \`$FILE_LINK'
* (\`file(1)' is used to guess the type of the files to print.)
*
* If a2ps is wrong somewhere, fix the \`System Dependent parameters'
* in \`etc/a2ps-site.cfg'. See the README file.
*****************************************************************
EOF
|