source: MondoRescue/branches/2.05/mondo/configure.in@ 216

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

Version correctly handled for mondo now

  • Property svn:keywords set to Id Rev
File size: 5.4 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 215 2005-12-15 01:25:32Z bcornec $
8dnl
9define(MONDO_VER,2.05)
10define(MONDO_REV,m4_normalize(esyscmd(echo '$Rev: 215 $' | awk '{print r$2}')))
11define(MONDO_TAG,MONDO_VER-MONDO_REV)
12AC_INIT([Mondo Rescue],MONDO_TAG,[mondo-devel@lists.sourceforge.net])
13AC_CONFIG_SRCDIR([mondo/mondoarchive/main.c])
14AM_CONFIG_HEADER(config.h)
15
16AC_CANONICAL_HOST
17AC_CANONICAL_TARGET
18AC_ARG_PROGRAM
19
20AM_INIT_AUTOMAKE([mondo], [$MONDO_VER])
21AM_MAINTAINER_MODE
22
23AM_PROG_LIBTOOL
24AC_PROG_CXX
25AC_PROG_AWK
26AC_PROG_CC
27AC_PROG_CPP
28AC_PROG_INSTALL
29AC_PROG_LN_S
30AC_PROG_MAKE_SET
31
32
33dnl --with/--enable stuff
34do_static_mr=
35AC_ARG_ENABLE(x11, AS_HELP_STRING(--enable-x11,Create libXmondo and XMondo for X11/KDE support), do_x=$withval, do_x= )
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(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)
39AC_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)
40if test x$do_static_mr = xyes; then
41 MONDORESTORE_STATIC=-static
42else
43 MONDORESTORE_STATIC=
44fi
45AC_SUBST(MONDORESTORE_STATIC)
46AC_DEFINE_UNQUOTED(MAX_NOOF_MEDIA, $max_noof_media, [Maximum number of media])
47AC_DEFINE_UNQUOTED(EXTTAPE, $exttape, [Tape blocksize])
48if test x$do_x = xyes; then
49 AC_DEFINE(WITH_X, 1, [Define if compiled with X support])
50else
51 AC_DEFINE(WITH_X, 0, [Define if compiled with X support])
52fi
53AM_CONDITIONAL(XWIN, test x$do_x = xyes)
54
55# ( 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]) ) )
56
57# Checks for libraries.
58AC_CHECK_LIB([dl], [main])
59AC_CHECK_LIB([newt], [newtInit])
60standardthread=0;
61
62case $build in
63 *freebsd*)
64 standardthread=0
65 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)
66 if test $standardthread -eq 0; then
67 CPPFLAGS=$CPPFLAGS -D_THREAD_SAFE -D_REENTRANT -I/usr/local/include/pthread/linuxthreads
68 PTHREAD="-L/usr/local/lib -llthread -llgcc_r";
69 if ! test -f /usr/local/include/pthread/linuxthreads/pthread.h; then
70 echo "*** Cannot find pthread.h: are you SURE you have linuxthreads installed?"
71 exit 1
72 fi
73 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])
74 else
75 PTHREAD="-lc_r"
76 fi
77 ;;
78 *linux*)
79 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])
80 PTHREAD="-lpthread"
81 ;;
82 *)
83 echo "*** Sorry, only Linux and FreeBSD are supported at this time. Want to help?"
84 ;;
85esac
86
87if test "$host_cpu" != "$target_cpu"; then
88 host_cpu=$target_cpu
89fi
90case "$host_cpu" in
91 i?86*)
92 #x86_64*)
93 ARCH=i386
94 CPPFLAGS="$CPPFLAGS -D__IA32__"
95 ;;
96 ia64*)
97 ARCH=ia64
98 CPPFLAGS="$CPPFLAGS -D__IA64__"
99 ;;
100 *)
101 echo "*** Sorry, only Intel Architectures (ia32, ia64) are supported at this time. Want to help?"
102 ;;
103esac
104AC_SUBST(ARCH)
105
106LIBS="$LIBS $PTHREAD"
107AC_SUBST(LIBS)
108
109if test x$do_x = xyes ; then
110 XMONDO=xmondo
111 QT_LIBRARY=-lqt
112 AC_PATH_XTRA
113 dnl AC_PATH_KDE
114 dnl KDE_USE_QT(3)
115else
116 dnl Automake requires all conditionals to be done sometime; if they're not being
117 dnl done by the KDE checks, they're done here.
118 AM_CONDITIONAL(include_ARTS, false)
119 dnl AC_FIND_BZIP2
120 dnl KDE_CHECK_BINUTILS
121 XMONDO=
122 QT_LIBRARY=
123fi
124AC_SUBST(XMONDO)
125AC_SUBST(QT_LIBRARY)
126
127# Checks for header files.
128AC_HEADER_STDC
129AC_HEADER_SYS_WAIT
130AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h sys/ioctl.h sys/param.h sys/time.h unistd.h])
131
132# Checks for typedefs, structures, and compiler characteristics.
133AC_C_CONST
134AC_TYPE_OFF_T
135AC_TYPE_PID_T
136
137# Checks for library functions.
138AC_FUNC_CHOWN
139AC_FUNC_FORK
140AC_PROG_GCC_TRADITIONAL
141AC_FUNC_LSTAT
142AC_FUNC_MALLOC
143AC_TYPE_SIGNAL
144AC_FUNC_VPRINTF
145AC_CHECK_FUNCS([bzero getcwd memmove memset mkdir mkfifo setenv strcasecmp strchr strerror strrchr strstr])
146
147if test -n "$qt_includes"; then
148 my_qt_includes="-I$qt_includes"
149else
150 my_qt_includes=""
151fi
152AC_SUBST(my_qt_includes)
153
154if test -n "$qt_libraries"; then
155 my_qt_libraries="-L$qt_libraries"
156else
157 my_qt_libraries=""
158fi
159AC_SUBST(my_qt_libraries)
160
161if test -n "$kde_includes"; then
162 my_kde_includes="-I$kde_includes"
163else
164 my_kde_includes=""
165fi
166AC_SUBST(my_kde_includes)
167
168if test -n "$kde_libraries"; then
169 my_kde_libraries="-L$kde_libraries"
170else
171 my_kde_libraries=""
172fi
173AC_SUBST(my_kde_libraries)
174
175AC_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 mondo/xmondo/Makefile])
Note: See TracBrowser for help on using the repository browser.