]> rtime.felk.cvut.cz Git - orte.git/blob - configure.ac
Apply configure.(in|ac) fixes suggested by autoreconf
[orte.git] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 #
3 # $Id: configure.in,v 1.15 2008/10/07 21:19:01 smolik Exp $
4
5 # autoconf requirement
6
7 AC_PREREQ([2.56])
8
9 AC_INIT([orte],[0.3.3],[orte@rtime.felk.cvut.cz], [], [http://orte.sf.net])
10 AC_CONFIG_AUX_DIR(admin)
11
12 ###############################
13 # Package info
14 ORTE_MAJOR_VERSION=0
15 ORTE_MINOR_VERSION=3
16 ORTE_MICRO_VERSION=3
17 ORTE_INTERFACE_AGE=0
18 ORTE_BINARY_AGE=0
19 ORTE_VERSION=$ORTE_MAJOR_VERSION.$ORTE_MINOR_VERSION.$ORTE_MICRO_VERSION
20 AC_SUBST(ORTE_MAJOR_VERSION)
21 AC_SUBST(ORTE_MINOR_VERSION)
22 AC_SUBST(ORTE_MICRO_VERSION)
23 AC_SUBST(ORTE_VERSION)
24 AC_SUBST(ORTE_INTERFACE_AGE)
25 AC_SUBST(ORTE_BINARY_AGE)
26 #Libtool versioning
27 ORTE_MICRO_VERSION_NUM=`echo $ORTE_MICRO_VERSION | sed 's/[[a-zA-Z]]//g'`
28 LT_RELEASE=$ORTE_MAJOR_VERSION.$ORTE_MINOR_VERSION
29 LT_CURRENT=`expr $ORTE_MICRO_VERSION_NUM - $ORTE_INTERFACE_AGE`
30 LT_REVISION=$ORTE_INTERFACE_AGE
31 LT_AGE=`expr $ORTE_BINARY_AGE - $ORTE_INTERFACE_AGE`
32 AC_SUBST(LT_RELEASE)
33 AC_SUBST(LT_CURRENT)
34 AC_SUBST(LT_REVISION)
35 AC_SUBST(LT_AGE)
36 VERSION=$ORTE_VERSION
37 PACKAGE=orte
38
39 echo
40 echo "ORTE version $PACKAGE_VERSION"
41 echo "Configuring..."
42 echo
43
44 #Check for CPU / vendor / OS
45 AC_CANONICAL_HOST
46 AC_CANONICAL_TARGET
47 AC_CONFIG_HEADER(orte/include/orte/orte_config.h)
48 AM_INIT_AUTOMAKE(no-define)
49
50
51 # Activate maintainer mode
52 AM_MAINTAINER_MODE
53
54 DS_LINUX()
55
56 ###############################
57 # target
58 WIN='no'
59 MINGW='no'
60 CYGWIN='no'
61 UNIX='no'
62 case "$target" in
63   *-cygwin*)
64     CFLAGS="$CFLAGS"
65     WIN='yes'
66     CYGWIN='yes'
67     AC_DEFINE([CONFIG_ORTE_WIN],[1],[Define if is target windows])
68     AC_DEFINE([CONFIG_ORTE_CYGWIN],[1],[Define if is target CYGWIN])
69     ;;  
70   *-mingw*)
71     CFLAGS="$CFLAGS"
72     WIN='yes'
73     MINGW='yes'
74     AC_DEFINE([CONFIG_ORTE_WIN],[1],[Define if is target windows])
75     AC_DEFINE([CONFIG_ORTE_MINGW],[1],[Define if is target MINGW])
76     AC_DEFINE([HAVE_GETPOT_LONG_ORTE],[1],[Define for ORTE getopt_long self implemetation])
77     ;;
78   *)
79     # Assume a Unix.
80     if test -z ${CONFIG_ORTE_RT} -a ${CONFIG_ORTE_KERNEL} ; then
81       UNIX='yes'
82       AC_DEFINE([CONFIG_ORTE_UNIX],[1],[Define if is target a unix system])
83     fi
84     ;;
85 esac
86 AM_CONDITIONAL(CONFIG_ORTE_WIN, test x$WIN = xyes)
87 AM_CONDITIONAL(CONFIG_ORTE_CYGWIN, test x$CIGWIN = xyes)
88 AM_CONDITIONAL(CONFIG_ORTE_MINGW, test x$MINGW = xyes)
89 AM_CONDITIONAL(CONFIG_ORTE_UNIX, test x$UNIX = xyes)
90
91 ###############################
92 # modules
93 moduledir="\$(libdir)/modules/\$(LINUX_KERNELRELEASE)/orte"
94 modulePROGRAMS_INSTALL="\$(top_builddir)/modtool --install"
95 modulePROGRAMS_UNINSTALL="\$(top_builddir)/modtool --uninstall"
96 AC_SUBST(moduledir)
97 AC_SUBST(modulePROGRAMS_INSTALL)
98
99 ###############################
100 # CFLAGS
101 CFLAGS="$CFLAGS -Wall"
102 if test ${USE_RTLINUX} == 'yes' ; then
103   CFLAGS="$CFLAGS $RTLINUX_CFLAGS"
104   CC="$RTLINUX_CC"
105 else
106   if test ${USE_RTAI} == 'yes' ; then
107     CFLAGS="$CFLAGS $RTAI_CFLAGS $LINUX_CFLAGS"
108   else
109     if test -n ${CONFIG_ORTE_KERNEL} ; then
110       CFLAGS="$CFLAGS $LINUX_CFLAGS"
111     fi
112   fi
113 fi
114
115 ###############################
116 # Checks for programs.
117 # Initialize libtool
118 AC_PROG_CC
119 AM_PROG_CC_C_O
120 AC_PROG_LIBTOOL
121
122 ###############################
123 # Checks for ability to compile ORTE_IDL
124 AM_ORTE_IDL
125
126 ###############################
127 # Checks for ability to compile JORTE
128 AM_JORTE
129
130 ###############################
131 # Checks for libraries and init libtools
132 if test -z ${CONFIG_ORTE_RT} ; then
133   AC_CHECK_LIB([ws2_32], [main])
134   AC_CHECK_LIB([socket], [main])
135   AC_CHECK_LIB([nsl], [main])
136   dnl Check for pthreads
137   AC_CHECK_LIB(pthread, pthread_create, ,
138          AC_CHECK_LIB(c_r, pthread_create, ,
139               if test ${MINGW} == 'yes' ; then
140                      LIBS=$LIBS' -L$(top_srcdir)/orte/contrib/win_pthread/ -lpthread'
141                      AC_MSG_NOTICE([Using internal version of pthreads!!!])
142               else
143                      AC_MSG_ERROR([Can't compile without pthreads!!!])
144               fi       
145          )
146   )
147 fi
148
149 ###############################
150 # enable GNU source
151 AH_VERBATIM([_GNU_SOURCE],[
152 #ifndef _GNU_SOURCE
153   #define _GNU_SOURCE
154 #endif
155 ]) 
156
157 ###############################
158 # Checks for header files.
159 # user space
160 if test ${UNIX} == 'yes' -o ${WIN} == 'yes' ; then
161     AC_HEADER_STDC
162     AC_CHECK_HEADERS([\
163     arpa/inet.h fcntl.h stdio.h netdb.h stdlib.h \
164     string.h sys/ioctl.h sys/stat.h sys/time.h unistd.h pthread.h \
165     sys/types.h sys/sockio.h stdarg.h byteswap.h getopt.h \
166     ctype.h signal.h stdint.h errno.h],,,[[]])
167     AC_CHECK_HEADERS([sys/socket.h], [], [],
168           [#ifdef HAVE_SYS_TYPES_H
169              #include <sys/types.h>
170            #endif])
171     AC_CHECK_HEADERS([netinet/in.h], [], [],
172           [#ifdef HAVE_SYS_TYPES_H
173              #include <sys/types.h>
174            #endif])
175     AC_CHECK_HEADERS([net/if.h], [], [],
176           [#ifdef HAVE_SYS_TYPES_H
177              #include <sys/types.h>
178            #endif
179            #ifdef HAVE_SYS_SOCKET_H
180              #include <sys/socket.h>
181            #endif])
182 fi
183 # win32
184 if test ${WIN} == 'yes' ; then
185     AC_CHECK_HEADERS([\
186     winsock2.h ws2tcpip.h windows.h w32api/windows.h],,,[[]])
187 fi
188 # kernel
189 if test ${CONFIG_ORTE_KERNEL} == 'yes' ; then
190     AC_CHECK_HEADERS([\
191     asm/byteorder.h linux/ctype.h linux/string.h \
192     linux/module.h linux/if.h linux/socket.h \
193     linux/time.h linux/types.h],,,[[]])
194     AC_CHECK_HEADERS([linux/in.h],,,[
195     #ifdef HAVE_LINUX_SOCKET_H
196       #include <linux/socket.h>
197     #endif
198     ])
199 fi
200 # RTLinux
201 if test ${USE_RTLINUX} == 'yes' ; then
202     AC_CHECK_HEADERS([\
203     string.h pthread.h \
204     rtl.h rtl_malloc.h udp.h nic.h time.h],,,[[]])
205     AC_CHECK_HEADERS([nictab.h],,,[
206     #ifdef HAVE_UDP_H
207       #include <udp.h>
208     #endif
209     #ifdef HAVE_NIC_H
210       #include <nic.h>
211     #endif
212     ])
213     AC_CHECK_HEADERS([onetd.h],,,[
214     #ifdef HAVE_LINUX_IF_H
215       #include <linux/if.h>
216     #endif
217     #ifdef HAVE_LINUX_IN_H
218       #include <linux/in.h>
219     #endif
220     #ifdef HAVE_PTHREAD_H
221       #include <pthread.h>
222     #endif
223     ])
224 fi
225 # RTAI
226 if test ${USE_RTAI} == 'yes' ; then
227     AC_CHECK_HEADERS([\
228     rtnet.h],,,[[]])
229 fi
230
231 ###############################
232 # includes
233 INCLUDES='-I$(top_srcdir)/orte/include -I$(top_builddir)/orte/include'
234 AC_SUBST(INCLUDES)
235
236 ###############################
237 # Checks for typedefs, structures, and compiler characteristics.
238 AC_C_BIGENDIAN
239 AC_C_CONST
240 AC_C_INLINE
241
242 ###############################
243 # Checks for library functions.
244 AC_PROG_GCC_TRADITIONAL
245 if test -z ${CONFIG_ORTE_RT} ; then
246 AC_CHECK_FUNCS([gethostbyname getopt_long])
247 fi
248
249 AC_CONFIG_FILES([Makefile
250                  orte/Makefile
251                  orte/liborte/Makefile
252                  orte/liborte/rtl/Makefile
253                  orte/examples/Makefile
254                  orte/examples/hello/Makefile
255                  orte/examples/multicast/Makefile
256                  orte/examples/reliable/Makefile
257                  orte/examples/ping/Makefile
258                  orte/examples/spy/Makefile
259                  orte/examples/schneider/Makefile
260                  orte/examples/mpo/Makefile
261                  orte/idl-compiler/Makefile
262                  orte/libjorte/Makefile
263                  orte/manager/Makefile])
264
265
266 AC_OUTPUT([
267 modtool
268 ])
269 chmod +x modtool
270
271 # ======================================================================
272 #               generate orte/include/orte/orte_config.h
273 # ======================================================================
274
275 AC_MSG_NOTICE([creating orte/include/orte/orte_config.h])
276 sed -e "s/ PACKAGE/ ORTE_PACKAGE/" -e "s/ VERSION/ ORTE_VERSION/" \
277     orte/include/orte/orte_config.h >orte/include/orte/orte_config.h.new
278 if cmp -s orte/include/orte/orte_config.h.new orte/include/orte/orte_config.h; then
279         rm orte/include/orte/orte_config.h.new
280         AC_MSG_NOTICE([orte/include/orte/orte_config.h is unchanged])
281 else
282         mv orte/include/orte/orte_config.h.new orte/include/orte/orte_config.h
283 fi
284
285 echo \
286 "------------------------------------------------------------------------
287 Configuration ORTE:
288
289   Source code location:       ${srcdir}
290   Compiler:                   ${CC}
291   Compiler flags:             ${CFLAGS}
292   Host System Type:           ${host}
293   
294   See orte_config.h for future configuration information.
295   
296   Now you can run
297   make  
298   
299 ------------------------------------------------------------------------"
300