source: MondoRescue/branches/3.3/mondo/configure.ac@ 3879

Last change on this file since 3879 was 3879, checked in by Bruno Cornec, 4 months ago

Fix all remaining compiler errors

  • Property svn:keywords set to Id Rev
File size: 5.2 KB
Line 
1dnl Autoconfigure file for Mondo Rescue v2.0x
2dnl Mondo by Mondo dev team
3dnl This script by Joshua Oreman
4dnl
5dnl Process this file with autoconf >=2.53 to produce a configure script.
6dnl
7dnl $Id: configure.ac 3879 2024-03-09 02:10:04Z bruno $
8dnl
9define(MONDO_VER,m4_normalize(PBVER)))
10define(MONDO_REV,m4_normalize(rPBREV)))
11define(MONDO_TAG,MONDO_VER-MONDO_REV)
12AC_INIT([mondo],[MONDO_TAG],[mondo-devel@lists.sourceforge.net])
13AC_CONFIG_SRCDIR([src/mondoarchive/mondoarchive.c])
14AC_CONFIG_MACRO_DIR([m4])
15
16AC_PREREQ([2.71])
17AC_CANONICAL_HOST
18AC_CANONICAL_TARGET
19AC_ARG_PROGRAM
20
21AM_INIT_AUTOMAKE
22LT_INIT
23
24AC_PROG_CXX
25AC_PROG_AWK
26AC_PROG_CC
27LT_INIT
28AC_PROG_CPP
29AC_PROG_INSTALL
30AC_PROG_LN_S
31AC_PROG_MAKE_SET
32AC_PROG_RANLIB
33
34dnl --with/--enable stuff
35do_static_mr=
36AC_ARG_ENABLE(static-mr, AS_HELP_STRING(--enable-static-mr,Link mondorestore statically), do_static_mr=$withval, do_static_mr= )
37AC_ARG_ENABLE(debug, AS_HELP_STRING(--enable-debug,Add debugging flags), CFLAGS="$CFLAGS -g", )
38AC_ARG_WITH(tape-block-size, AS_HELP_STRING(--with-tape-block-size=NUM,Set tape block size in kilobytes (default 131072)), exttape=${withval:=131072}, exttape=131072)
39if test x$do_static_mr = xyes; then
40 MONDORESTORE_STATIC=-static
41else
42 MONDORESTORE_STATIC=
43fi
44AC_SUBST(MONDORESTORE_STATIC)
45AC_DEFINE_UNQUOTED(EXTTAPE, $exttape, [Tape blocksize])
46
47# ( which automake 2>/dev/null >/dev/null && ( automake --version 2>&1 | grep -q 1.5 || automake --version 2>&1 | grep -q 1.7 || AC_MSG_ERROR([Automake must be version 1.5 or 1.7, if you have it at all]) ) )
48
49# Checks for libraries.
50dnl AC_CHECK_LIB([dl], [main])
51AC_CHECK_LIB([newt], [newtInit])
52standardthread=0;
53
54case $build in
55 *freebsd*)
56 standardthread=0
57 AC_ARG_ENABLE(standard-pthreads, AS_HELP_STRING(--enable-standard-pthreads,(FreeBSD only) Compile with FreeBSD "standard" pthreads instead of LinuxThreads -- *MAY BE UNSTABLE*), standardthread=1, standardthread=0)
58 if test $standardthread -eq 0; then
59 CPPFLAGS=$CPPFLAGS -D_THREAD_SAFE -D_REENTRANT -I/usr/local/include/pthread/linuxthreads
60 PTHREAD="-L/usr/local/lib -llthread -llgcc_r";
61 if ! test -f /usr/local/include/pthread/linuxthreads/pthread.h; then
62 echo "*** Cannot find pthread.h: are you SURE you have linuxthreads installed?"
63 exit 1
64 fi
65 AC_CHECK_LIB(lthread, pthread_create, true, [echo "*** Cannot find -llthread."; echo "*** Please install linuxthreads from /usr/ports/devel/linuxthreads."; exit 1], [-L/usr/local/lib -llgcc_r])
66 else
67 PTHREAD="-lc_r"
68 fi
69 ;;
70 *linux*)
71 AC_CHECK_LIB(pthread, pthread_create, true, [echo "*** Cannot find -lpthread."; echo "*** Please make sure you have the linuxthreads glibc add-on installed."; exit 1])
72 PTHREAD="-lpthread"
73 GCC_MAJ="`gcc -dumpversion 2>&1 | cut -d. -f1`"
74 GCC_MIN="`gcc -dumpversion 2>&1 | cut -d. -f2`"
75
76 # Just test for dev machine on x86_64 ubsan used for option -fsanitize=undefined
77 if [ -f /usr/lib64/libubsan.so ]; then
78 CFLAGS="$CFLAGS -fsanitize=undefined"
79 HAVE_UBSAN=1
80 else
81 HAVE_UBSAN=0
82 fi
83
84 # Just test for dev machine on x86_64 asan used for option -fsanitize=address
85 if [ -f /usr/lib64/libasan.so ]; then
86 CFLAGS="$CFLAGS -fsanitize=address"
87 HAVE_ASAN=1
88 else
89 HAVE_ASAN=0
90 fi
91
92 CFLAGS="$CFLAGS -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wcast-qual -Wswitch-default -Wswitch-enum -Wno-return-type -Wformat=2 -Werror=implicit-function-declaration -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT -D_FORTIFY_SOURCE=2 -fstack-clash-protection -fstack-protector-strong -fcf-protection -Wl,-z,defs -Wl,-z,now -Wl,-z,relro -Wno-discarded-qualifiers" # -Wconversion -Wstrict-prototypes -Werror"
93 ;;
94 *)
95 echo "*** Sorry, only Linux and FreeBSD are supported at this time. Want to help?"
96 ;;
97esac
98
99if test "$host_cpu" != "$target_cpu"; then
100 host_cpu=$target_cpu
101fi
102case "$host_cpu" in
103 i?86*)
104 CPPFLAGS="$CPPFLAGS -D__IA32__"
105 ;;
106 x86_64*)
107 CPPFLAGS="$CPPFLAGS -D__IA32__ -D__X86_64__"
108 ;;
109 ia64*)
110 CPPFLAGS="$CPPFLAGS -D__IA64__"
111 ;;
112 *)
113 echo "*** Sorry, only Intel Architectures (ia32, x86_64, ia64) are supported at this time. Want to help?"
114 ;;
115esac
116
117LIBS="$LIBS $PTHREAD"
118AC_SUBST(LIBS)
119
120# Checks for header files.
121AC_CHECK_INCLUDES_DEFAULT
122AC_PROG_EGREP
123
124AC_HEADER_SYS_WAIT
125AC_HEADER_STDBOOL
126AC_CHECK_HEADERS([arpa/inet.h fcntl.h libintl.h locale.h netdb.h netinet/in.h stddef.h stdlib.h string.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h unistd.h utime.h])
127
128# Checks for typedefs, structures, and compiler characteristics.
129AC_C_CONST
130AC_C_INLINE
131AC_PROG_GCC_TRADITIONAL
132AC_TYPE_MODE_T
133AC_TYPE_OFF_T
134AC_TYPE_PID_T
135AC_TYPE_SIZE_T
136AC_TYPE_SSIZE_T
137AC_STRUCT_ST_BLOCKS
138
139# Checks for library functions.
140AC_FUNC_CHOWN
141AC_FUNC_FORK
142AC_FUNC_FSEEKO
143AC_FUNC_LSTAT
144AC_FUNC_MALLOC
145AC_FUNC_REALLOC
146AC_FUNC_VPRINTF
147AC_CHECK_FUNCS([bzero getcwd gethostbyname inet_ntoa memmove memset mkdir mkdtemp mkfifo pathconf rmdir setenv strcasecmp strcspn strchr strdup strerror strncasecmp strrchr strspn strstr uname utime])
148
149AM_PROG_CC_C_O
150AC_CONFIG_FILES([Makefile src/Makefile src/lib/Makefile src/common/Makefile src/mondoarchive/Makefile src/mondorestore/Makefile src/restore-scripts/Makefile src/restore-scripts/mondo/Makefile src/post-nuke.sample/Makefile src/post-nuke.sample/usr/Makefile src/post-nuke.sample/usr/bin/Makefile test/Makefile])
151AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.