Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I probably had been drinking too much the day I have written this command... Sorry...
[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 # Can we rebuild the documentation?
81 GTK_DOC_CHECK()
82 AC_SUBST([htmldir],         ['${datadir}/doc/gras/html'])dnl
83
84 dnl ####[ Search libs ]#######################################################
85 dnl A CI_PACKAGE([S imGrid],[the SimGrid simulator],[SG_init],[-lsimgrid],[simgrid.h],,:)
86 dnl A M_CONDITIONAL(HAVE_SG,test x$HAVE_SimGrid = xyes)
87 dnl if test x$HAVE_SimGrid = xyes; then
88 dnl   SIMGRID_DEP="-lsimgrid"
89 dnl else
90   SIMGRID_DEP=""
91 dnl fi
92 AC_SUBST([SIMGRID_DEP])
93
94
95 dnl A C_CHECK_LIB(pthread, pthread_mutex_lock, LIBS="$LIBS -lpthread")
96 GRAS_DEP=""
97 AC_CHECK_LIB(nsl, gethostbyname, [GRAS_DEP="$GRAS_DEP -lnsl"])
98 AC_CHECK_LIB(socket, connect,    [GRAS_DEP="$GRAS_DEP -lsocket"])
99
100 AC_MSG_CHECKING(for extra dependencies of libgras)
101 case $host_os in
102   *mingw* ) GRAS_DEP=-lws2_32;;
103 esac
104            
105 if test "x$GRAS_DEP" = x; then 
106    AC_MSG_RESULT(none)
107 else
108    AC_MSG_RESULT($GRAS_DEP)
109 fi
110 AC_SUBST([GRAS_DEP])
111
112 dnl ####[ maint mode ]#######################################################
113 AM_MAINTAINER_MODE
114 if test x$USE_MAINTAINER_MODE = xyes 
115 then
116 #   enable_iso_c=yes             # Let's go funky
117    GNOME_COMPILE_WARNINGS(yes)
118 fi
119
120 AC_SUBST(CFLAGS)
121 AC_SUBST(CPPFLAGS)
122 AC_SUBST(LDFLAGS)
123
124 dnl ####[ check for some programms ]###########################################
125 AC_CHECK_PROG(BASH, bash, `which bash`, /bin/sh)
126 WARNING="This file is generated, do not edit"
127 AC_SUBST(WARNING)
128
129 dnl ####[ Makes the output ]###################################################
130 #    examples/bandwidth/Makefile examples/bandwidth/test_sg
131 #    examples/pastry/Makefile    examples/pastry/test_sg
132
133 AC_CONFIG_FILES([
134   Makefile
135   include/Makefile
136   src/Makefile
137   src/amok/Makefile
138   examples/Makefile 
139     examples/ping/Makefile      examples/ping/test_sg     examples/ping/test_rl
140   doc/Makefile
141   tools/compile-remote-worker
142   testsuite/Makefile
143     testsuite/run_tests    
144     testsuite/gras/trp_tcp_usage
145     testsuite/gras/trp_file_usage
146 ],[
147      test -e testsuite/run_tests          && chmod +x testsuite/run_tests;
148      test -e testsuite/gras/trp_tcp_usage && chmod +x testsuite/gras/trp_tcp_usage;
149      test -e testsuite/gras/trp_file_usage&& chmod +x testsuite/gras/trp_file_usage;
150      test -e tools/compile-remote-worker  && chmod +x tools/compile-remote-worker;
151      test -e examples/ping/test_sg        && chmod +x examples/ping/test_sg;
152      test -e examples/ping/test_rl        && chmod +x examples/ping/test_rl;
153 #     test -e examples/bandwidth/test_sg   && chmod +x examples/bandwidth/test_sg;
154      test -e examples/pastry/test_sg      && chmod +x examples/pastry/test_sg;
155      chmod +x $srcdir/tools/gras-check-arch;
156 ])
157
158
159
160 #    examples/saturate/Makefile  examples/saturate/test_sg
161 #    examples/alnem/Makefile     examples/alnem/test_sg
162
163
164
165 AC_OUTPUT
166
167 echo "
168
169 Configuration of package \`${PACKAGE}' on $gras_arch_name (=$gras_arch):
170
171         Compiler:       ${CC}
172
173         CFlags:         ${CFLAGS}
174         LDFlags:        ${LDFLAGS}
175 "
176
177 exit 0;