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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
|
AC_INIT([dump],[0.4b52],[https://dump.sourceforge.io])
AC_PREREQ([2.71])
AM_INIT_AUTOMAKE
AM_SILENT_RULES([no])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
dnl
dnl Check for programs
dnl
AC_PROG_MAKE_SET
AC_PROG_LN_S
PKG_PROG_PKG_CONFIG
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
dnl Has to be after AC_PROG_CC and other core compiler checks.
LT_INIT
AC_CHECK_HEADERS([sys/types.h])
dnl Used when generating the man pages. Should refresh for each release.
AC_SUBST([DATE], ["01 May 2025"])
CPPFLAGS="${CPPFLAGS} -D_USE_BSD_SIGNAL "'-D_PATH_DUMPDATES=\"$(DUMPDATESPATH)\" -D_DUMP_VERSION=\"$(VERSION)\"'
CFLAGS="${CFLAGS} -W -Wall"
CXXFLAGS="${CXXFLAGS} -W -Wall -std=c++20"
dnl Should these be options?
AC_DEFINE([RDUMP], 1, [Enable rdump support])
AC_DEFINE([RRESTORE], 1, [Enable rrestore support])
dnl
dnl Handle --enable-debug
dnl
AC_MSG_CHECKING([whether to enable extra debugging])
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],[include debugging code @<:@default=no@:>@])])
if test "$enable_debug" = "yes"
then
AC_DEFINE([FDEBUG], 1, [Enable extra debugging])
AC_DEFINE([TDEBUG], 1, [Enable extra debugging])
AC_DEFINE([WRITEDEBUG], 1, [Enable extra debugging])
AC_DEFINE([DIRDEBUG], 1, [Enable extra debugging])
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
dnl
dnl Handle --enable-static-progs
dnl
AC_MSG_CHECKING([whether to build static binaries])
AC_ARG_ENABLE([static-progs], [AS_HELP_STRING([--enable-static-progs],[link dump and restore statically @<:@default=no@:>@])])
if test "$enable_static_progs" = "yes"
then
LDFLAGS="$LDFLAGS -static"
PKG_CONFIG="$PKG_CONFIG --static"
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
dnl
dnl Handle --enable-rmt
dnl
AC_MSG_CHECKING([whether to build rmt])
BUILD_RMT=yes
AC_ARG_ENABLE([rmt], [AS_HELP_STRING([--enable-rmt],[compile and install rmt @<:@default=yes@:>@])])
if test "$enable_rmt" = "no"; then
BUILD_RMT=no
fi
AM_CONDITIONAL([BUILD_RMT], [test "$BUILD_RMT" = "yes"])
AC_MSG_RESULT([$BUILD_RMT])
dnl
dnl Handle --enable-ermt
dnl
AC_MSG_CHECKING([whether to build ermt])
BUILD_ERMT=no
AC_ARG_ENABLE([ermt], [AS_HELP_STRING([--enable-ermt],[compile ermt, an encrypting version of rmt @<:@default=no@:>@])])
if test "$enable_ermt" = "yes"; then
if test "$BUILD_RMT" != "yes"; then
AC_MSG_ERROR([ermt requires --enable-rmt])
fi
BUILD_ERMT=yes
fi
AM_CONDITIONAL([BUILD_ERMT], [test "$BUILD_ERMT" = "yes"])
AC_MSG_RESULT([$BUILD_ERMT])
dnl
dnl Handle --enable-kerberos
dnl
AC_MSG_CHECKING([whether to enable kerberos extensions])
AC_ARG_ENABLE([kerberos], [AS_HELP_STRING([--enable-kerberos],[compile kerberos extensions @<:@default=no@:>@])])
if test "$enable_kerberos" = "yes"
then
AC_DEFINE([KERBEROS], 1, [Enable kerberos extensions])
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
dnl
dnl Handle --enable-readline
dnl
AC_ARG_ENABLE([readline], [AS_HELP_STRING([--enable-readline],[enable readline support in restore @<:@default=yes@:>@])],
if test "$enableval" = "no"
then
READLINE=""
echo "Not including readline support"
else
READLINE="yes"
AC_DEFINE([HAVE_READLINE],1,[Define if you want to include readline support.])
echo "Including readline support"
fi
,
READLINE="yes"
AC_DEFINE([HAVE_READLINE],1,[Define if you want to include readline support.])
echo "Including readline support by default"
)
dnl
dnl Handle --enable-oldsylefscript
dnl
AC_ARG_ENABLE([oldstylefscript], [AS_HELP_STRING([--enable-oldstylefscript],[enable old style F script (no arguments) @<:@default=no@:>@])],
if test "$enableval" = "yes"
then
AC_DEFINE([OLD_STYLE_FSCRIPT],1,[Define this is you want old style F script (no arguments).])
echo "Using old style F script"
else
echo "Using new style F script"
fi
,
echo "Using new style F script by default"
)
dnl
dnl Handle --enable-qfa
dnl
AC_ARG_ENABLE([qfa], [AS_HELP_STRING([--enable-qfa],[enable Quick File Access support @<:@default=yes@:>@])],
if test "$enableval" = "yes"
then
AC_DEFINE([USE_QFA],1,[Define this if you want Quick File Access support.])
echo "Enabling Quick File Access support"
else
echo "Not enabling Quick File Access support"
fi
,
AC_DEFINE([USE_QFA],1,[Define this if you want Quick File Access support.])
echo "Enabling Quick File Access support by default"
)
dnl
dnl Handle --enable-qfadebug
dnl
AC_ARG_ENABLE([qfadebug], [AS_HELP_STRING([--enable-qfadebug],[include Quick File Access debugging code @<:@default=no@:>@])],
if test "$enableval" = "yes"
then
AC_DEFINE([DEBUG_QFA],1,[Define this if you want to include Quick File Access debugging code.])
echo "Including Quick File Access debugging code"
else
echo "Not including Quick File Access debugging code"
fi
,
echo "Not including Quick File Access debugging code by default"
)
dnl
dnl Handle --enable-macosx
dnl
AC_ARG_ENABLE([macosx], [AS_HELP_STRING([--enable-macosx],[include Mac OSX restore compatibility @<:@default=no@:>@])],
if test "$enableval" = "yes"
then
AC_DEFINE([DUMP_MACOSX],1,[Define this if you want to include Mac OSX restore compatibility.])
echo "Including Mac OSX restore compatibility code"
else
echo "Not including Mac OSX restore compatibility code"
fi
,
echo "Not including Mac OSX restore compatibility code by default"
)
dnl
dnl Handle --enable-rcmd
dnl
AC_ARG_ENABLE([rcmd], [AS_HELP_STRING([--enable-rcmd],[include rcmd support @<:@default=yes@:>@])],
if test "$enableval" = "no"
then
echo "Not including support for rcmd remote tapes"
else
AC_DEFINE([DUMP_USES_RCMD],1,[Define this if you want to support rcmd as well as rsh for accessing remote tapes.])
echo "Including support for rcmd remote tapes"
fi
,
AC_DEFINE([DUMP_USES_RCMD],1,[Define this if you want to support rcmd as well as rsh for accessing remote tapes.])
echo "Including support for rcmd remote tapes by default"
)
dnl
dnl Handle --enable-selinux
dnl
AC_ARG_ENABLE([selinux], [AS_HELP_STRING([--enable-selinux],[restore can translate SELinux EAs @<:@default=auto@:>@])])
if test "$enable_selinux" != "no"; then
found_selinux="yes"
PKG_CHECK_MODULES([SELINUX], [libselinux], [], [
found_selinux="no"
if test "$enable_selinux" = "yes"; then
AC_MSG_ERROR([SELinux support requested, but not found])
fi
])
if test "$found_selinux" != "no"; then
AC_DEFINE([TRANSSELINUX], 1, [Support SELinux labels])
fi
fi
dnl
dnl set $(DUMPDATESPATH) from --with-dumpdatespath
dnl
AC_ARG_WITH([dumpdatespath], [AS_HELP_STRING([--with-dumpdatespath=PATH],[select path for dumpdates file])],
AC_MSG_RESULT(DUMPDATESPATH is $withval)
DUMPDATESPATH=$withval,
DUMPDATESPATH="${sysconfdir}/dumpdates"
echo "DUMPDATESPATH defaults to $DUMPDATESPATH"
)dnl
AC_SUBST(DUMPDATESPATH)
dnl
dnl set _PATH_RMT from --with-rmtpath
dnl
AC_ARG_WITH([rmtpath], [AS_HELP_STRING([--with-rmtpath=PATH],[select path for rmt program])],
RMTPATH=$withval,
RMTPATH='/etc/rmt')
AC_SUBST(RMTPATH)
CPPFLAGS="${CPPFLAGS} "'-D_PATH_RMT=\"$(RMTPATH)\"'
dnl
dnl Check for Ext2fs headers and libraries
dnl
PKG_CHECK_MODULES(EXT2FS, [ext2fs])
PKG_CHECK_MODULES(COM_ERR, [com_err])
dnl
dnl Check for ext2fs_read_inode_full
dnl
AC_CHECK_LIB(ext2fs, ext2fs_read_inode_full, [rif=yes], [rif=no])
if test "$rif" = yes; then
AC_DEFINE([HAVE_EXT2FS_READ_INODE_FULL],1,[Define this if your ext2fs libs have the ext2fs_read_inode_full function.])
fi
dnl
dnl Try to use ext2_fs.h header from libext2fs instead of from the kernel
dnl
AC_CHECK_HEADERS([ext2fs/ext2_fs.h])
dnl
dnl Check for ext2_ino_t type
dnl
AC_MSG_CHECKING(for ext2_ino_t type in libext2fs headers)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#ifdef HAVE_EXT2FS_EXT2_FS_H
#include <ext2fs/ext2_fs.h>
#else
#include <linux/ext2_fs.h>
#endif
#include <ext2fs/ext2fs.h>]], [[ext2_ino_t ino = 0;]])],[AC_DEFINE([HAVE_EXT2_INO_T],1,[Define if we have the ext2_ino_t type (from e2fsprogs 1.20+).])
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
dnl
dnl Check for s_journal_inum field in ext2_super_block struct
dnl
AC_MSG_CHECKING(for s_journal_inum field in ext2_super_block struct)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#ifdef HAVE_EXT2FS_EXT2_FS_H
#include <ext2fs/ext2_fs.h>
#else
#include <linux/ext2_fs.h>
#endif
#include <ext2fs/ext2fs.h>]], [[struct ext2_super_block es; es.s_journal_inum = 0;]])],[AC_DEFINE([HAVE_EXT2_JOURNAL_INUM],1,[Define if we have the s_journal_inum field in struct ext2_super_block.])
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
dnl
dnl Check if SEEK_HOLE and SEEK_DATA is supported by lseek
dnl
AC_MSG_CHECKING(if SEEK_HOLE and SEEK_DATA is supported by lseek)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]],
[[int sh = SEEK_HOLE; int sd = SEEK_DATA;]])],[AC_DEFINE([HAVE_SEEK_HOLE],1,[Define if SEEK_HOLE and SEEK_DATA are supported by lseek.])
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
dnl
dnl Check for blkid headers libraries
dnl
AC_ARG_ENABLE([blkid], [AS_HELP_STRING([--disable-blkid],[enable blkid support])])
if test "$enable_blkid" != "no"; then
PKG_CHECK_MODULES([BLKID], [blkid], [], [
found_blkid="no"
if test "$enable_blkid" = "yes"; then
AC_MSG_ERROR([blkid support requested, but not found])
fi
])
if test "$found_blkid" != "no"; then
AC_DEFINE([HAVE_BLKID], 1, [Define this if you have the blkid library.])
fi
fi
AC_ARG_ENABLE([uuid], [AS_HELP_STRING([--disable-uuid],[enable uuid support])])
if test "$enable_uuid" != "no"; then
PKG_CHECK_MODULES([UUID], [uuid], [], [
found_uuid="no"
if test "$enable_uuid" = "yes"; then
AC_MSG_ERROR([uuid support requested, but not found])
fi
])
if test "$found_uuid" != "no"; then
AC_DEFINE([HAVE_UUID], 1, [Define this if you have the uuid library.])
fi
fi
dnl
dnl Check for ncurses or termcap libraries
dnl
AC_CHECK_LIB(ncurses, tgetent, [ncurses_lib=yes], [ncurses_lib=no])
AC_CHECK_LIB(termcap, tgetent, [termcap_lib=yes], [termcap_lib=no])
AC_CHECK_LIB(tinfo, tgetent, [tinfo_lib=yes], [tinfo_lib=no])
if test "$ncurses_lib" = no -a "$termcap_lib" = no -a "$tinfo_lib" = no; then
if test "$READLINE" = "yes"; then
AC_MSG_ERROR(You need to install the ncurses or termcap library or configure without --enable-readline)
fi
fi
if test "$tinfo_lib" = yes; then
rdllib="-ltinfo"
elif test "$ncurses_lib" = yes; then
rdllib="-lncurses"
elif test "$termcap_lib" = yes; then
rdllib="-ltermcap"
fi
dnl
dnl Check for readline headers and libraries
dnl
AC_CHECK_HEADER(readline/readline.h, [readline_h=yes], [readline_h=no])
AC_CHECK_LIB(readline, readline, [readline_lib=yes], [readline_lib=no], $rdllib)
if test "$readline_h" = no -o "$readline_lib" = no; then
if test "$READLINE" = "yes"; then
AC_MSG_ERROR(You need to install the GNU readline library or configure without --enable-readline)
fi
fi
if test "$READLINE" = yes; then
READLINE="-lreadline $rdllib"
fi
AC_SUBST(READLINE)
dnl
dnl Check for rl_completion_matches
dnl
AC_CHECK_LIB(readline, rl_completion_matches, [rlcm=yes], [rlcm=no], [$rdllib])
if test "$rlcm" = yes; then
AC_DEFINE([HAVE_READLINE_RLCM],1,[Define this if your readline libs have the rl_completion_matches library.])
fi
dnl
dnl Check for rl_completion_append_character
dnl
AC_CHECK_LIB(readline, rl_completion_append_character, [rcac=yes], [rcac=no], [$rdllib])
if test "$rcac" = yes; then
AC_DEFINE([HAVE_READLINE_CAC],1,[Define this if your readline libs have the rl_completion_append_character variable.])
fi
dnl
dnl Check for zlib headers and libraries
dnl
AC_ARG_ENABLE([zlib], [AS_HELP_STRING([--disable-zlib],[enable zlib compression support])])
if test "$enable_zlib" != "no"; then
PKG_CHECK_MODULES([ZLIB], [zlib], [], [
found_zlib="no"
if test "$enable_zlib" = "yes"; then
AC_MSG_ERROR([zlib support requested, but not found])
fi
])
if test "$found_zlib" != "no"; then
AC_DEFINE([HAVE_ZLIB], 1, [Include zlib support])
fi
fi
dnl
dnl Check for bzlib headers and libraries
dnl
AC_ARG_ENABLE([bzip2], [AS_HELP_STRING([--disable-bzip2],[enable bzip2 compression support])])
BZLIB=
if test "$enable_bzip2" != "no"; then
AC_CHECK_HEADER(bzlib.h, [bzlib_h=yes], [bzlib_h=no])
AC_CHECK_LIB(bz2, BZ2_bzBuffToBuffCompress, [bzlib_lib=yes], [bzlib_lib=no])
if test "$bzlib_h" = yes -a "$bzlib_lib" = yes; then
BZLIB="-lbz2"
AC_DEFINE([HAVE_BZLIB], 1, [Define this if you have bzlib compression library.])
elif test "$enable_bzip2" = "yes"; then
AC_MSG_ERROR([bzip2 support requested, but not found])
fi
fi
AC_SUBST(BZLIB)
dnl
dnl Check for lzo headers and libraries
dnl
AC_ARG_ENABLE([lzo], [AS_HELP_STRING([--disable-lzo],[enable lzo compression support])])
LZOLIB=
if test "$enable_lzo" != "no"; then
AC_CHECK_HEADER(lzo/lzo1x.h, [lzo_h=yes], [lzo_h=no])
AC_CHECK_LIB(lzo2, lzo1x_1_compress, [lzo_lib=yes], [lzo_lib=no])
if test "$lzo_h" = yes -a "$lzo_lib" = yes; then
LZOLIB="-llzo2"
AC_DEFINE([HAVE_LZO], 1, [Define this if you have lzo compression library.])
elif test "$enable_lzo" = "yes"; then
AC_MSG_ERROR([lzo support requested, but not found])
fi
fi
AC_SUBST(LZOLIB)
dnl
dnl Check for sqlite3 headers and libraries
dnl
AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite],[disable sqlite indexing support])])
SQLITE3=
if test "$enable_sqlite" != "no"; then
AC_CHECK_HEADER(sqlite3.h, [sqlite3_h=yes], [sqlite3_h=no])
AC_CHECK_LIB(sqlite3, sqlite3_initialize, [sqlite3_lib=yes], [sqlite3_lib=no])
if test "$sqlite3_h" = yes -a "$sqlite3_lib" = yes; then
SQLITE3="-lsqlite3"
AC_DEFINE([HAVE_SQLITE3],1,[Define this if you have sqlite3 library.])
elif test "$enable_sqlite" = "yes"; then
AC_MSG_ERROR([sqlite support requested, but not found])
fi
fi
AC_SUBST(SQLITE3)
dnl
dnl Check for library functions
dnl
AC_CHECK_FUNCS(err errx verr verrx vwarn vwarnx warn warnx realpath lchown utimensat)
AC_CHECK_FUNC(glob)
dnl
dnl Check for GLOB_ALTDIRFUNC
dnl
AC_MSG_CHECKING(for extended glob routines)
if test "$ac_cv_func_glob" = "yes"; then
AC_EGREP_CPP(yes,
[
# include <glob.h>
# ifdef GLOB_ALTDIRFUNC
yes
# endif
],
[
AC_DEFINE([HAVE_GLOB],1,[Define if you have the glob function.])
AC_MSG_RESULT(yes)
],
[
AC_MSG_RESULT(no)
echo "Your system does not support extended glob, will use the internal routines"
])
fi
dnl
dnl Check for OpenSSL, for ermt
dnl
AC_ARG_ENABLE([ssl], [AS_HELP_STRING([--disable-ssl],[disable ssl support])])
if test "$enable_ssl" != "no"; then
PKG_CHECK_MODULES([SSL], [openssl], [], [
found_ssl="no"
if test "$enable_ssl" = "yes"; then
AC_MSG_ERROR([OpenSSL support requested, but not found])
fi
])
if test "$found_ssl" != "no"; then
AC_DEFINE([HAVE_OPENSSL], 1, [Include OpenSSL support])
fi
fi
if test "$ERMT" != "" -a -z "$SSL_LIBS"; then
AC_MSG_ERROR([You need to install the OpenSSL library (version 0.9.7a or later), or configure without --enable-ermt])
fi
dnl
dnl Check for types
dnl
AC_TYPE_INT64_T
AC_TYPE_UINT64_T
dnl
dnl Output files
dnl
AC_CONFIG_FILES(m4_flatten([
dump.lsm
Makefile
common/Makefile
compat/lib/Makefile
dump/Makefile
restore/Makefile
rmt/Makefile
faketape/Makefile
]))
AC_OUTPUT
|