source: MondoRescue/trunk/mondo/configure.in@ 183

Last change on this file since 183 was 183, checked in by bcornec, 18 years ago

merge -r180:182 $SVN_M/branches/2.05

  • Property svn:keywords set to Id
File size: 4.2 KB
Line 
1dnl Autoconfigure file for Mondo Rescue v2.0x
2dnl Mondo by Hugo Rabson
3dnl This script by Joshua Oreman
4dnl
5dnl Process this file with autoconf >=2.53 to produce a configure script.
6dnl
7dnl $Id: configure.in 183 2005-12-13 01:20:45Z bcornec $
8dnl
9AC_INIT([Mondo Rescue],[2.05_berlios],[mondo-devel@lists.sourceforge.net])
10AC_CONFIG_SRCDIR([mondo/mondoarchive/main.c])
11AM_CONFIG_HEADER(config.h)
12
13AC_CANONICAL_HOST
14AC_CANONICAL_TARGET
15AC_ARG_PROGRAM
16
17AM_INIT_AUTOMAKE([mondo], [2.05_berlios])
18AM_MAINTAINER_MODE
19
20AM_PROG_LIBTOOL
21AC_PROG_CXX
22AC_PROG_AWK
23AC_PROG_CC
24AC_PROG_CPP
25AC_PROG_INSTALL
26AC_PROG_LN_S
27AC_PROG_MAKE_SET
28
29
30dnl --with/--enable stuff
31do_static_mr=
32AC_ARG_ENABLE(static-mr, AS_HELP_STRING(--enable-static-mr,Link mondorestore statically), do_static_mr=$withval, do_static_mr= )
33AC_ARG_ENABLE(debug, AS_HELP_STRING(--enable-debug,Add debugging flags), CFLAGS="$CFLAGS -g", )
34AC_ARG_WITH(max-noof-media, AS_HELP_STRING(--with-max-noof-media=NUM,Compile for a certain maximum number of media (default 50)), max_noof_media=$withval, max_noof_media=50)
35AC_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)
36if test x$do_static_mr = xyes; then
37 MONDORESTORE_STATIC=-static
38else
39 MONDORESTORE_STATIC=
40fi
41AC_SUBST(MONDORESTORE_STATIC)
42AC_DEFINE_UNQUOTED(MAX_NOOF_MEDIA, $max_noof_media, [Maximum number of media])
43AC_DEFINE_UNQUOTED(EXTTAPE, $exttape, [Tape blocksize])
44
45# ( 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]) ) )
46
47# Checks for libraries.
48AC_CHECK_LIB([dl], [main])
49AC_CHECK_LIB([newt], [newtInit])
50standardthread=0;
51
52case $build in
53 *freebsd*)
54 standardthread=0
55 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)
56 if test $standardthread -eq 0; then
57 CPPFLAGS=$CPPFLAGS -D_THREAD_SAFE -D_REENTRANT -I/usr/local/include/pthread/linuxthreads
58 PTHREAD="-L/usr/local/lib -llthread -llgcc_r";
59 if ! test -f /usr/local/include/pthread/linuxthreads/pthread.h; then
60 echo "*** Cannot find pthread.h: are you SURE you have linuxthreads installed?"
61 exit 1
62 fi
63 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])
64 else
65 PTHREAD="-lc_r"
66 fi
67 ;;
68 *linux*)
69 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])
70 PTHREAD="-lpthread"
71 ;;
72 *)
73 echo "*** Sorry, only Linux and FreeBSD are supported at this time. Want to help?"
74 ;;
75esac
76
77if test "$host_cpu" != "$target_cpu"; then
78 host_cpu=$target_cpu
79fi
80case "$host_cpu" in
81 i?86*)
82 ARCH=i386
83 CPPFLAGS="$CPPFLAGS -D__IA32__ -Wall"
84 ;;
85 x86_64*)
86 ARCH=x86-64
87 CPPFLAGS="$CPPFLAGS -D__X86_64__ -Wall"
88 ;;
89 ia64*)
90 ARCH=ia64
91 CPPFLAGS="$CPPFLAGS -D__IA64__ -Wall"
92 ;;
93 *)
94 echo "*** Sorry, only Intel Architectures (ia32, x86-64, ia64) are supported at this time."
95 echo "If you Want to help send a mail to bcornec@users.berlios.de"
96 ;;
97esac
98AC_SUBST(ARCH)
99
100LIBS="$LIBS $PTHREAD"
101AC_SUBST(LIBS)
102
103dnl AC_FIND_BZIP2
104
105# Checks for header files.
106AC_HEADER_STDC
107AC_HEADER_SYS_WAIT
108AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h sys/ioctl.h sys/param.h sys/time.h unistd.h])
109
110# Checks for typedefs, structures, and compiler characteristics.
111AC_C_CONST
112AC_TYPE_OFF_T
113AC_TYPE_PID_T
114
115# Checks for library functions.
116AC_FUNC_CHOWN
117AC_FUNC_FORK
118AC_PROG_GCC_TRADITIONAL
119AC_FUNC_LSTAT
120AC_FUNC_MALLOC
121AC_TYPE_SIGNAL
122AC_FUNC_VPRINTF
123AC_CHECK_FUNCS([bzero getcwd memmove memset mkdir mkfifo setenv strcasecmp strchr strerror strrchr strstr getline asprintf trunc vasprintf])
124
125AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/docs/Makefile mondo/docs/en/Makefile mondo/docs/en/1.6x-howto/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile])
Note: See TracBrowser for help on using the repository browser.