Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convenient scripts to generate platforms
[simgrid.git] / configure.ac
1 AC_PREREQ(2.59)
2
3 #We need a recent ACI
4 ACI_PREREQ(2003.01.16)
5
6 AC_INIT([simgrid],[2.90],[arnaud.legrand@imag.fr])
7 #AC_INIT([GRAS],[0.7],[martin.quinson@ens-lyon.fr])
8 AC_CONFIG_SRCDIR([include/gras.h])
9 AC_CONFIG_HEADERS([src/gras_config.h])
10
11 AC_REVISION($Revision$)
12 AC_CANONICAL_TARGET
13 AC_LANG([C])
14
15 AM_INIT_AUTOMAKE(gnu)
16 # MACRO_DIR should tell aclocal to search for my macro. That's the autoconf
17 # maintainer plan, but automake does not implement this yet (as in 1.8)
18 AC_CONFIG_MACRO_DIR(acmacro) 
19 # It seems to be called ACLOCAL_INCLUDE...
20 # A M_ACLOCAL_INCLUDE(acmacro)
21
22
23
24
25 AC_PROG_LIBTOOL
26
27 # declare the modules (no optional module)
28
29 dnl
30 dnl Load anything under acmacro/*.m4
31 dnl
32 dnl test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
33 ACLOCAL="$ACLOCAL -I acmacro"
34
35
36 AC_PROG_CC
37 AM_SANITY_CHECK
38 AC_PROG_MAKE_SET
39
40 # Check architecture signature begin
41 GRAS_ARCH
42 # Check architecture signature end
43 GRAS_CHECK_STRUCT_COMPACTION
44
45 # Checks for header files.
46 AC_HEADER_STDC
47 AC_HEADER_TIME
48 AC_CHECK_HEADERS([sys/socket.h winsock.h winsock2.h \
49                   sys/stat.h \
50                   ucontext.h \
51                   sys/time.h \
52                   errno.h unistd.h ])
53 AC_CHECK_FUNCS([gettimeofday \
54                 getdtablesize \
55                 sysconf])
56
57 # Checks for typedefs, structures, and compiler characteristics.
58 AC_C_CONST
59 AC_C_INLINE
60 AC_TYPE_SIZE_T
61
62 # Checks for library functions.
63 dnl A C_FUNC_MEMCMP
64 dnl A C_CHECK_FUNCS([memset strchr strerror usleep])
65
66 # Can we rebuild the parsers?
67 # We really want flex and refuse other lex. So, the parser is portable and
68 # does not induce extra lib dependency
69 AC_PROG_LEX
70 if test "$LEX" != flex; then
71   LEX="$SHELL $missing_dir/missing flex"
72 fi
73                 
74 # Can we rebuild the xml-lexers from the XML specification?
75 # if not, simply touch the flex source files (which are distributed in
76 #  tarballs even if generated by flexml) and hope for the best.
77 AC_CHECK_PROG(FLEXML,flexml,,NOTFOUND)
78 AM_CONDITIONAL(HAVE_FLEXML,test x$FLEXML != NOTFOUND)
79
80 dnl ####[ Search libs ]#######################################################
81 dnl A CI_PACKAGE([S imGrid],[the SimGrid simulator],[SG_init],[-lsimgrid],[simgrid.h],,:)
82 dnl A M_CONDITIONAL(HAVE_SG,test x$HAVE_SimGrid = xyes)
83 dnl if test x$HAVE_SimGrid = xyes; then
84 dnl   SIMGRID_DEP="-lsimgrid"
85 dnl else
86   SIMGRID_DEP=""
87 dnl fi
88 AC_SUBST([SIMGRID_DEP])
89
90
91 dnl A C_CHECK_LIB(pthread, pthread_mutex_lock, LIBS="$LIBS -lpthread")
92 GRAS_DEP=""
93 AC_CHECK_LIB(nsl, gethostbyname, [GRAS_DEP="$GRAS_DEP -lnsl"])
94 AC_CHECK_LIB(socket, connect,    [GRAS_DEP="$GRAS_DEP -lsocket"])
95
96 AC_MSG_CHECKING(for extra dependencies of libgras)
97 case $host_os in
98   *mingw* ) GRAS_DEP=-lws2_32;;
99 esac
100            
101 if test "x$GRAS_DEP" = x; then 
102    AC_MSG_RESULT(none)
103 else
104    AC_MSG_RESULT($GRAS_DEP)
105 fi
106 AC_SUBST([GRAS_DEP])
107
108 dnl ####[ maint mode ]#######################################################
109 AM_MAINTAINER_MODE
110 if test x$USE_MAINTAINER_MODE = xyes 
111 then
112 #   enable_iso_c=yes             # Let's go funky
113    GNOME_COMPILE_WARNINGS(yes)
114 fi
115
116 AC_SUBST(CFLAGS)
117 AC_SUBST(CPPFLAGS)
118 AC_SUBST(LDFLAGS)
119
120 dnl ####[ check for some programms ]###########################################
121 AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh)
122 WARNING="This file is generated, do not edit"
123 AC_SUBST(WARNING)
124
125 dnl ####[ Makes the output ]###################################################
126 #    examples/bandwidth/Makefile examples/bandwidth/test_sg
127 #    examples/pastry/Makefile    examples/pastry/test_sg
128
129 AC_CONFIG_FILES([
130   Makefile
131   include/Makefile
132   src/Makefile
133   src/amok/Makefile
134   examples/Makefile 
135   examples/ping/Makefile      examples/ping/test_sg     examples/ping/test_rl
136   examples/msg/Makefile 
137   doc/Makefile
138   tools/compile-remote-worker
139   testsuite/Makefile
140   testsuite/run_tests    
141   testsuite/gras/trp_tcp_usage
142   testsuite/gras/trp_file_usage
143 ],[
144      test -e testsuite/run_tests          && chmod +x testsuite/run_tests;
145      test -e testsuite/gras/trp_tcp_usage && chmod +x testsuite/gras/trp_tcp_usage;
146      test -e testsuite/gras/trp_file_usage&& chmod +x testsuite/gras/trp_file_usage;
147      test -e tools/compile-remote-worker  && chmod +x tools/compile-remote-worker;
148      test -e examples/ping/test_sg        && chmod +x examples/ping/test_sg;
149      test -e examples/ping/test_rl        && chmod +x examples/ping/test_rl;
150 #     test -e examples/bandwidth/test_sg   && chmod +x examples/bandwidth/test_sg;
151      test -e examples/pastry/test_sg      && chmod +x examples/pastry/test_sg;
152      chmod +x $srcdir/tools/gras-check-arch;
153 ])
154
155
156
157 #    examples/saturate/Makefile  examples/saturate/test_sg
158 #    examples/alnem/Makefile     examples/alnem/test_sg
159
160
161
162 AC_OUTPUT
163
164 echo "
165
166 Configuration of package \`${PACKAGE}' on $gras_arch_name (=$gras_arch):
167
168         Compiler:       ${CC}
169
170         CFlags:         ${CFLAGS}
171         LDFlags:        ${LDFLAGS}
172 "
173
174 exit 0;