blob: 0062982096bd5520215f641ebde0358139a86142 [file] [log] [blame]
Alexandre Julliard67e8dc62002-05-20 18:29:58 +00001dnl Macros used to build the Wine configure script
2dnl
3dnl Copyright 2002 Alexandre Julliard
4dnl
5dnl This library is free software; you can redistribute it and/or
6dnl modify it under the terms of the GNU Lesser General Public
7dnl License as published by the Free Software Foundation; either
8dnl version 2.1 of the License, or (at your option) any later version.
9dnl
10dnl This library is distributed in the hope that it will be useful,
11dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13dnl Lesser General Public License for more details.
14dnl
15dnl You should have received a copy of the GNU Lesser General Public
16dnl License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020017dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000018dnl
Alexandre Julliard1d8d0172002-08-02 19:34:21 +000019dnl As a special exception to the GNU Lesser General Public License,
20dnl if you distribute this file as part of a program that contains a
21dnl configuration script generated by Autoconf, you may include it
22dnl under the same distribution terms that you use for the rest of
23dnl that program.
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000024
25dnl **** Get the ldd program name; used by WINE_GET_SONAME ****
26dnl
27dnl Usage: WINE_PATH_LDD
28dnl
29AC_DEFUN([WINE_PATH_LDD],[AC_PATH_PROG(LDD,ldd,true,/sbin:/usr/sbin:$PATH)])
30
31dnl **** Extract the soname of a library ****
32dnl
Alexandre Julliard66afa982007-07-02 17:02:51 +020033dnl Usage: WINE_CHECK_SONAME(library, function, [action-if-found, [action-if-not-found, [other_libraries, [pattern]]]])
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000034dnl
Alexandre Julliard66afa982007-07-02 17:02:51 +020035AC_DEFUN([WINE_CHECK_SONAME],
Alexandre Julliard30de3e82006-03-10 21:24:05 +010036[AC_REQUIRE([WINE_PATH_LDD])dnl
37AS_VAR_PUSHDEF([ac_Lib],[ac_cv_lib_soname_$1])dnl
Alexandre Julliard66afa982007-07-02 17:02:51 +020038m4_pushdef([ac_lib_pattern],m4_default([$6],[lib$1]))dnl
39AC_MSG_CHECKING([for -l$1])
Alexandre Julliard446befb2007-07-02 13:41:36 +020040AC_CACHE_VAL(ac_Lib,
Alexandre Julliard66afa982007-07-02 17:02:51 +020041[ac_check_soname_save_LIBS=$LIBS
42LIBS="-l$1 $5 $LIBS"
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000043 AC_LINK_IFELSE([AC_LANG_CALL([], [$2])],
Alexandre Julliardbdbffd92006-08-07 21:41:55 +020044 [case "$LIBEXT" in
Alexandre Goujon2b05c842010-03-01 21:39:39 +010045 dll) AS_VAR_SET(ac_Lib,[`$ac_cv_path_LDD conftest.exe | grep "$1" | sed -e "s/dll.*/dll/"';2,$d'`]) ;;
Alexandre Julliard66afa982007-07-02 17:02:51 +020046 dylib) AS_VAR_SET(ac_Lib,[`otool -L conftest$ac_exeext | grep "ac_lib_pattern\\.[[0-9A-Za-z.]]*dylib" | sed -e "s/^.*\/\(ac_lib_pattern\.[[0-9A-Za-z.]]*dylib\).*$/\1/"';2,$d'`]) ;;
47 *) AS_VAR_SET(ac_Lib,[`$ac_cv_path_LDD conftest$ac_exeext | grep "ac_lib_pattern\\.$LIBEXT" | sed -e "s/^.*\(ac_lib_pattern\.$LIBEXT[[^ ]]*\).*$/\1/"';2,$d'`]) ;;
Alexandre Julliard446befb2007-07-02 13:41:36 +020048 esac])
Alexandre Julliard66afa982007-07-02 17:02:51 +020049 LIBS=$ac_check_soname_save_LIBS])dnl
Alexandre Julliard446befb2007-07-02 13:41:36 +020050AS_IF([test "x]AS_VAR_GET(ac_Lib)[" = "x"],
Alexandre Julliard66afa982007-07-02 17:02:51 +020051 [AC_MSG_RESULT([not found])
52 $4],
Alexandre Julliard446befb2007-07-02 13:41:36 +020053 [AC_MSG_RESULT(AS_VAR_GET(ac_Lib))
54 AC_DEFINE_UNQUOTED(AS_TR_CPP(SONAME_LIB$1),["]AS_VAR_GET(ac_Lib)["],
Alexandre Julliard66afa982007-07-02 17:02:51 +020055 [Define to the soname of the lib$1 library.])
56 $3])dnl
57m4_popdef([ac_lib_pattern])dnl
Alexandre Julliard30de3e82006-03-10 21:24:05 +010058AS_VAR_POPDEF([ac_Lib])])
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000059
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000060dnl **** Link C code with an assembly file ****
61dnl
62dnl Usage: WINE_TRY_ASM_LINK(asm-code,includes,function,[action-if-found,[action-if-not-found]])
63dnl
64AC_DEFUN([WINE_TRY_ASM_LINK],
Alexandre Julliard9797da42011-04-27 17:37:43 +020065[AC_LINK_IFELSE([AC_LANG_PROGRAM([[$2]],[[asm($1); $3]])],[$4],[$5])])
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000066
67dnl **** Check if we can link an empty program with special CFLAGS ****
68dnl
69dnl Usage: WINE_TRY_CFLAGS(flags,[action-if-yes,[action-if-no]])
70dnl
Alexandre Julliard182d1502006-08-25 13:22:33 +020071dnl The default action-if-yes is to append the flags to EXTRACFLAGS.
72dnl
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000073AC_DEFUN([WINE_TRY_CFLAGS],
Alexandre Julliard182d1502006-08-25 13:22:33 +020074[AS_VAR_PUSHDEF([ac_var], ac_cv_cflags_[[$1]])dnl
75AC_CACHE_CHECK([whether the compiler supports $1], ac_var,
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000076[ac_wine_try_cflags_saved=$CFLAGS
77CFLAGS="$CFLAGS $1"
Alexandre Julliard9797da42011-04-27 17:37:43 +020078AC_LINK_IFELSE([AC_LANG_SOURCE([[int main(int argc, char **argv) { return 0; }]])],
Alexandre Julliard295806f2009-10-07 13:46:06 +020079 [AS_VAR_SET(ac_var,yes)], [AS_VAR_SET(ac_var,no)])
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000080CFLAGS=$ac_wine_try_cflags_saved])
Alexandre Julliard182d1502006-08-25 13:22:33 +020081AS_IF([test AS_VAR_GET(ac_var) = yes],
82 [m4_default([$2], [EXTRACFLAGS="$EXTRACFLAGS $1"])], [$3])dnl
83AS_VAR_POPDEF([ac_var])])
Alexandre Julliard67e8dc62002-05-20 18:29:58 +000084
Warren Baird421e8b92004-09-22 19:17:55 +000085dnl **** Check if we can link an empty shared lib (no main) with special CFLAGS ****
86dnl
87dnl Usage: WINE_TRY_SHLIB_FLAGS(flags,[action-if-yes,[action-if-no]])
88dnl
89AC_DEFUN([WINE_TRY_SHLIB_FLAGS],
90[ac_wine_try_cflags_saved=$CFLAGS
91CFLAGS="$CFLAGS $1"
Alexandre Julliard9797da42011-04-27 17:37:43 +020092AC_LINK_IFELSE([AC_LANG_SOURCE([void myfunc() {}])],[$2],[$3])
Warren Baird421e8b92004-09-22 19:17:55 +000093CFLAGS=$ac_wine_try_cflags_saved])
94
Alexandre Julliard05783b52002-12-11 00:21:55 +000095dnl **** Check whether we need to define a symbol on the compiler command line ****
96dnl
97dnl Usage: WINE_CHECK_DEFINE(name),[action-if-yes,[action-if-no]])
98dnl
99AC_DEFUN([WINE_CHECK_DEFINE],
100[AS_VAR_PUSHDEF([ac_var],[ac_cv_cpp_def_$1])dnl
101AC_CACHE_CHECK([whether we need to define $1],ac_var,
102 AC_EGREP_CPP(yes,[#ifndef $1
103yes
104#endif],
105 [AS_VAR_SET(ac_var,yes)],[AS_VAR_SET(ac_var,no)]))
106AS_IF([test AS_VAR_GET(ac_var) = yes],
107 [CFLAGS="$CFLAGS -D$1"
108 LINTFLAGS="$LINTFLAGS -D$1"])dnl
109AS_VAR_POPDEF([ac_var])])
110
Alexandre Julliard2d1a6272006-02-11 20:54:06 +0100111dnl **** Check for functions with some extra libraries ****
112dnl
113dnl Usage: WINE_CHECK_LIB_FUNCS(funcs,libs,[action-if-found,[action-if-not-found]])
114dnl
115AC_DEFUN([WINE_CHECK_LIB_FUNCS],
116[ac_wine_check_funcs_save_LIBS="$LIBS"
117LIBS="$LIBS $2"
118AC_CHECK_FUNCS([$1],[$3],[$4])
119LIBS="$ac_wine_check_funcs_save_LIBS"])
120
Alexandre Julliardeae0dc22007-01-01 13:14:21 +0100121dnl **** Check for a mingw program, trying the various mingw prefixes ****
122dnl
123dnl Usage: WINE_CHECK_MINGW_PROG(variable,prog,[value-if-not-found],[path])
124dnl
125AC_DEFUN([WINE_CHECK_MINGW_PROG],
Alexandre Julliarda91fb212009-12-07 15:36:09 +0100126[case "$host_cpu" in
127 i[[3456789]]86*)
Jacek Caban0b6bfad2010-12-21 18:08:38 +0100128 ac_prefix_list="m4_foreach([ac_wine_prefix],[w64-mingw32, pc-mingw32, mingw32msvc, mingw32],
Damjan Jovanovic009ad8a2012-06-14 08:20:58 +0200129 m4_foreach([ac_wine_cpu],[i686,i586,i486,i386],[ac_wine_cpu-ac_wine_prefix-$2 ]))
130 mingw32-$2" ;;
Alexandre Julliarda91fb212009-12-07 15:36:09 +0100131 x86_64)
Vincent Povirkd2103752010-10-11 15:55:40 -0500132 ac_prefix_list="m4_foreach([ac_wine_prefix],[pc-mingw32, w64-mingw32, mingw32msvc],
133 m4_foreach([ac_wine_cpu],[x86_64,amd64],[ac_wine_cpu-ac_wine_prefix-$2 ]))" ;;
Alexandre Julliarda91fb212009-12-07 15:36:09 +0100134 *)
135 ac_prefix_list="" ;;
136esac
137AC_CHECK_PROGS([$1],[$ac_prefix_list],[$3],[$4])])
Alexandre Julliardeae0dc22007-01-01 13:14:21 +0100138
139
Alexandre Julliard2de10c42010-02-11 23:23:45 +0100140dnl **** Define helper functions for creating config.status files ****
141dnl
142dnl Usage: AC_REQUIRE([WINE_CONFIG_HELPERS])
143dnl
144AC_DEFUN([WINE_CONFIG_HELPERS],
Alexandre Julliard39b4ba22010-03-25 22:13:03 +0100145[ALL_MAKEFILE_DEPENDS="
146# Rules automatically generated by configure
147
148.INIT: Makefile
Alexandre Julliard39b4ba22010-03-25 22:13:03 +0100149.MAKEFILEDEPS:
Alexandre Julliardbd3110d2010-05-23 10:34:36 +0200150all: Makefile
Alexandre Julliard81b8ee82010-09-19 12:36:48 +0200151Makefile: Makefile.in Make.vars.in Make.rules config.status
Alexandre Julliard39b4ba22010-03-25 22:13:03 +0100152 @./config.status Make.tmp Makefile"
Alexandre Julliard7d831152010-03-20 15:07:45 +0100153
Alexandre Julliard367fd222011-01-04 17:05:21 +0100154ALL_POT_FILES=""
Alexandre Julliard9b99cd12011-05-24 11:11:22 +0200155AC_SUBST(ALL_TEST_RESOURCES,"")
Alexandre Julliard7d831152010-03-20 15:07:45 +0100156
157wine_fn_append_file ()
Alexandre Julliard2de10c42010-02-11 23:23:45 +0100158{
159 AS_VAR_APPEND($[1]," \\$as_nl $[2]")
160}
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100161
Alexandre Julliard2de10c42010-02-11 23:23:45 +0100162wine_fn_append_rule ()
163{
164 AS_VAR_APPEND($[1],"$as_nl$[2]")
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100165}
166
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100167wine_fn_has_flag ()
168{
169 expr ",$[2]," : ".*,$[1],.*" >/dev/null
170}
171
Alexandre Julliard943cd732010-03-25 21:52:56 +0100172wine_fn_all_dir_rules ()
173{
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200174 ac_dir=$[1]
175 ac_alldeps=$[2]
Alexandre Julliard9dd743f2010-09-25 12:19:31 +0200176 ac_makedep="\$(MAKEDEP)"
177 ac_input=Make.vars.in:$ac_dir/Makefile.in
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200178 if test $ac_dir != tools
Alexandre Julliardc57aa382010-09-25 11:56:33 +0200179 then
180 dnl makedep is in tools so tools makefile cannot depend on it
Alexandre Julliard9dd743f2010-09-25 12:19:31 +0200181 ac_alldeps="$[2] $ac_makedep"
Alexandre Julliardc57aa382010-09-25 11:56:33 +0200182 fi
Alexandre Julliard9dd743f2010-09-25 12:19:31 +0200183 case $[2] in
184 *.in) ac_input=$ac_input:$[2] ;;
185 *) ac_makedep="$[2] $ac_makedep" ;;
186 esac
Alexandre Julliardc57aa382010-09-25 11:56:33 +0200187
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200188 wine_fn_append_file ALL_DIRS $ac_dir
Alexandre Julliard943cd732010-03-25 21:52:56 +0100189 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200190"__clean__: $ac_dir/__clean__
191.PHONY: $ac_dir/__clean__
192$ac_dir/__clean__: $ac_dir/Makefile
193 @cd $ac_dir && \$(MAKE) clean
194 \$(RM) $ac_dir/Makefile
195$ac_dir/Makefile: $ac_dir/Makefile.in Make.vars.in config.status $ac_alldeps
Alexandre Julliard9dd743f2010-09-25 12:19:31 +0200196 @./config.status --file $ac_dir/Makefile:$ac_input && cd $ac_dir && \$(MAKE) depend
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200197depend: $ac_dir/__depend__
198.PHONY: $ac_dir/__depend__
Alexandre Julliard9dd743f2010-09-25 12:19:31 +0200199$ac_dir/__depend__: $ac_makedep dummy
200 @./config.status --file $ac_dir/Makefile:$ac_input && cd $ac_dir && \$(MAKE) depend"
Alexandre Julliard943cd732010-03-25 21:52:56 +0100201}
202
Alexandre Julliard9c98f692011-10-22 14:54:03 +0200203wine_fn_pot_rules ()
204{
205 ac_dir=$[1]
206 ac_flags=$[2]
207
Alexandre Julliard9159cfe2011-10-22 20:46:36 +0200208 test "x$with_gettextpo" = xyes || return
Alexandre Julliard9c98f692011-10-22 14:54:03 +0200209
210 if wine_fn_has_flag mc $ac_flags
211 then
212 wine_fn_append_file ALL_POT_FILES $ac_dir/msg.pot
213 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
214"$ac_dir/msg.pot: $ac_dir/Makefile dummy
215 @cd $ac_dir && \$(MAKE) msg.pot
216$ac_dir/msg.pot: tools/wmc include"
217 fi
218 if wine_fn_has_flag po $ac_flags
219 then
220 wine_fn_append_file ALL_POT_FILES $ac_dir/rsrc.pot
221 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
222"$ac_dir/rsrc.pot: $ac_dir/Makefile dummy
223 @cd $ac_dir && \$(MAKE) rsrc.pot
Rafał Mużyło78f717b2011-11-04 23:20:30 +0100224$ac_dir/rsrc.pot: tools/wrc include"
Alexandre Julliard9c98f692011-10-22 14:54:03 +0200225 fi
226}
227
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100228wine_fn_config_makefile ()
229{
230 ac_dir=$[1]
Alexandre Julliard03642412010-03-20 15:24:22 +0100231 ac_enable=$[2]
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200232 ac_flags=$[3]
Alexandre Julliarda0b8fa92011-06-12 12:44:03 +0200233 ac_rules=$[4]
Alexandre Julliard9bdd0272010-06-30 17:34:20 +0200234 AS_VAR_IF([$ac_enable],[no],[return 0])
Alexandre Julliarde84063b2010-03-25 21:46:41 +0100235
Alexandre Julliarda0b8fa92011-06-12 12:44:03 +0200236 wine_fn_all_dir_rules $ac_dir ${ac_rules:-Make.rules}
Alexandre Julliard9bdd0272010-06-30 17:34:20 +0200237 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliard764d4c22010-05-23 09:27:33 +0200238"all: $ac_dir
239.PHONY: $ac_dir
Alexandre Julliard6c90aea2010-03-25 21:47:29 +0100240$ac_dir: $ac_dir/Makefile dummy
Alexandre Julliarde492fcc2011-06-12 12:03:53 +0200241 @cd $ac_dir && \$(MAKE)"
242
243 wine_fn_has_flag install-lib $ac_flags || wine_fn_has_flag install-dev $ac_flags || return
244
245 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200246".PHONY: $ac_dir/__install__ $ac_dir/__uninstall__
247$ac_dir/__install__:: $ac_dir
Alexandre Julliarde84063b2010-03-25 21:46:41 +0100248 @cd $ac_dir && \$(MAKE) install
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200249$ac_dir/__uninstall__:: $ac_dir/Makefile
250 @cd $ac_dir && \$(MAKE) uninstall
251install:: $ac_dir/__install__
252__uninstall__: $ac_dir/__uninstall__"
Alexandre Julliarde492fcc2011-06-12 12:03:53 +0200253
254 if wine_fn_has_flag install-lib $ac_flags
255 then
256 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200257".PHONY: $ac_dir/__install-lib__
258$ac_dir/__install-lib__:: $ac_dir
259 @cd $ac_dir && \$(MAKE) install-lib
260install-lib:: $ac_dir/__install-lib__"
Alexandre Julliarde492fcc2011-06-12 12:03:53 +0200261 fi
262
263 if wine_fn_has_flag install-dev $ac_flags
264 then
265 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200266".PHONY: $ac_dir/__install-dev
267$ac_dir/__install-dev__:: $ac_dir
268 @cd $ac_dir && \$(MAKE) install-dev
269install-dev:: $ac_dir/__install-dev__"
Alexandre Julliarde492fcc2011-06-12 12:03:53 +0200270 fi
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100271}
272
273wine_fn_config_lib ()
274{
275 ac_name=$[1]
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200276 ac_flags=$[2]
Alexandre Julliardb8fb1d52010-03-20 14:50:53 +0100277 ac_dir=dlls/$ac_name
Alexandre Julliardf64a6752011-07-09 17:58:47 +0200278 wine_fn_config_makefile $ac_dir enable_$ac_name "$ac_flags" dlls/Makeimplib.rules
279
280 if wine_fn_has_flag install-dev $ac_flags
281 then :
282 else
283 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
284".PHONY: $ac_dir/__install__ $ac_dir/__uninstall__
285$ac_dir/__install__:: $ac_dir \$(DESTDIR)\$(dlldir)
286 \$(INSTALL_DATA) $ac_dir/lib$ac_name.a \$(DESTDIR)\$(dlldir)/lib$ac_name.a
287$ac_dir/__uninstall__::
288 \$(RM) \$(DESTDIR)\$(dlldir)/lib$ac_name.a
289install install-dev:: $ac_dir/__install__
290__uninstall__: $ac_dir/__uninstall__"
291 fi
292
Alexandre Julliarda0b8fa92011-06-12 12:44:03 +0200293 wine_fn_append_rule ALL_MAKEFILE_DEPENDS "__builddeps__: $ac_dir"
294 wine_fn_append_rule ALL_MAKEFILE_DEPENDS "$ac_dir: tools/widl tools/winebuild tools/winegcc include"
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100295}
296
Alexandre Julliard50231942010-03-16 22:00:02 +0100297wine_fn_config_dll ()
298{
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200299 ac_name=$[1]
300 ac_dir=dlls/$ac_name
Alexandre Julliard5cdd8412010-03-20 14:52:44 +0100301 ac_enable=$[2]
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100302 ac_flags=$[3]
Alexandre Julliard1858f432010-12-29 14:10:47 +0100303 ac_implib=${4:-$ac_name}
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200304 ac_file=$ac_dir/lib$ac_implib
Alexandre Julliardbf8f4352011-07-25 11:39:42 +0200305 ac_dll=$ac_name
Alexandre Julliard50231942010-03-16 22:00:02 +0100306 ac_deps="tools/widl tools/winebuild tools/winegcc include"
Alexandre Julliardb0e48e12010-07-26 21:06:28 +0200307 ac_implibflags=""
308
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200309 case $ac_name in
Alexandre Julliardb0e48e12010-07-26 21:06:28 +0200310 *16) ac_implibflags=" -m16" ;;
Alexandre Julliardbf8f4352011-07-25 11:39:42 +0200311 *.*) ;;
312 *) ac_dll=$ac_dll.dll ;;
Alexandre Julliardb0e48e12010-07-26 21:06:28 +0200313 esac
Alexandre Julliard50231942010-03-16 22:00:02 +0100314
Alexandre Julliardbf8f4352011-07-25 11:39:42 +0200315 wine_fn_config_makefile $ac_dir $ac_enable "$ac_flags" dlls/Makedll.rules
Alexandre Julliard82b743f2010-03-25 11:15:32 +0100316
Alexandre Julliard5cdd8412010-03-20 14:52:44 +0100317 AS_VAR_IF([$ac_enable],[no],
318 dnl enable_win16 is special in that it disables import libs too
Alexandre Julliard28449912011-07-25 22:05:51 +0200319 [test "$ac_enable" != enable_win16 || return 0
320 wine_fn_has_flag implib $ac_flags && wine_fn_all_dir_rules $ac_dir dlls/Makedll.rules],
321
Alexandre Julliard60a05ad2010-03-25 12:05:44 +0100322 [wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardbf8f4352011-07-25 11:39:42 +0200323"$ac_dir: __builddeps__
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200324manpages htmlpages sgmlpages xmlpages:: $ac_dir/Makefile
Alexandre Julliard367fd222011-01-04 17:05:21 +0100325 @cd $ac_dir && \$(MAKE) \$[@]"
326
Alexandre Julliardbf8f4352011-07-25 11:39:42 +0200327 if wine_fn_has_flag install-lib $ac_flags
328 then :
329 else
330 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
331".PHONY: $ac_dir/__install-lib__ $ac_dir/__uninstall__
332install install-lib:: $ac_dir/__install-lib__
333__uninstall__: $ac_dir/__uninstall__"
334 if test -n "$DLLEXT"
335 then
336 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
337"$ac_dir/__install-lib__:: $ac_dir \$(DESTDIR)\$(dlldir) \$(DESTDIR)\$(fakedlldir)
338 \$(INSTALL_PROGRAM) $ac_dir/$ac_dll$DLLEXT \$(DESTDIR)\$(dlldir)/$ac_dll$DLLEXT
339 \$(INSTALL_DATA) $ac_dir/$ac_dll.fake \$(DESTDIR)\$(fakedlldir)/$ac_dll
340$ac_dir/__uninstall__::
341 \$(RM) \$(DESTDIR)\$(dlldir)/$ac_dll$DLLEXT \$(DESTDIR)\$(fakedlldir)/$ac_dll"
342 else
343 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
344"$ac_dir/__install-lib__:: $ac_dir \$(DESTDIR)\$(dlldir)
345 \$(INSTALL_PROGRAM) $ac_dir/$ac_dll \$(DESTDIR)\$(dlldir)/$ac_dll
346$ac_dir/__uninstall__::
347 \$(RM) \$(DESTDIR)\$(dlldir)/$ac_dll"
348 fi
349 fi
350
Alexandre Julliard9c98f692011-10-22 14:54:03 +0200351 wine_fn_pot_rules $ac_dir $ac_flags])
Alexandre Julliard50231942010-03-16 22:00:02 +0100352
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100353 if wine_fn_has_flag staticimplib $ac_flags
Alexandre Julliard50231942010-03-16 22:00:02 +0100354 then
355 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliarde55ff7f2010-03-25 11:02:52 +0100356"__builddeps__: $ac_file.$IMPLIBEXT $ac_file.$STATIC_IMPLIBEXT
Alexandre Julliarde55ff7f2010-03-25 11:02:52 +0100357$ac_file.$IMPLIBEXT $ac_file.$STATIC_IMPLIBEXT $ac_file.cross.a: $ac_deps
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200358$ac_file.def: $ac_dir/$ac_name.spec $ac_dir/Makefile
359 @cd $ac_dir && \$(MAKE) lib$ac_implib.def
360$ac_file.$STATIC_IMPLIBEXT: $ac_dir/Makefile dummy
361 @cd $ac_dir && \$(MAKE) lib$ac_implib.$STATIC_IMPLIBEXT
Alexandre Julliard6cba5c42011-07-09 18:01:42 +0200362.PHONY: $ac_dir/__install-dev__ $ac_dir/__uninstall__
363$ac_dir/__install-dev__:: $ac_file.$IMPLIBEXT \$(DESTDIR)\$(dlldir)
364 \$(INSTALL_DATA) $ac_file.$IMPLIBEXT \$(DESTDIR)\$(dlldir)/lib$ac_implib.$IMPLIBEXT
365$ac_dir/__uninstall__::
366 \$(RM) \$(DESTDIR)\$(dlldir)/lib$ac_implib.$IMPLIBEXT
367install install-dev:: $ac_dir/__install-dev__
368__uninstall__: $ac_dir/__uninstall__"
369
370 if test "$IMPLIBEXT" != "$STATIC_IMPLIBEXT"
371 then
372 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
373"$ac_dir/__install-dev__:: $ac_file.$STATIC_IMPLIBEXT \$(DESTDIR)\$(dlldir) __builddeps__
374 \$(INSTALL_DATA) $ac_file.$STATIC_IMPLIBEXT \$(DESTDIR)\$(dlldir)/lib$ac_implib.$STATIC_IMPLIBEXT
375$ac_dir/__uninstall__::
376 \$(RM) \$(DESTDIR)\$(dlldir)/lib$ac_implib.$STATIC_IMPLIBEXT"
377 fi
378
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200379 if test "x$CROSSTEST_DISABLE" = x
380 then
381 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
382"__builddeps__: $ac_file.cross.a
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200383$ac_file.cross.a: $ac_dir/Makefile dummy
384 @cd $ac_dir && \$(MAKE) lib$ac_implib.cross.a"
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200385 fi
386
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100387 elif wine_fn_has_flag implib $ac_flags
Alexandre Julliard50231942010-03-16 22:00:02 +0100388 then
389 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliarde55ff7f2010-03-25 11:02:52 +0100390"__builddeps__: $ac_file.$IMPLIBEXT
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200391$ac_file.def: $ac_dir/$ac_name.spec $ac_dir/Makefile \$(WINEBUILD)
392 \$(WINEBUILD) \$(TARGETFLAGS)$ac_implibflags -w --def -o \$[@] --export \$(srcdir)/$ac_dir/$ac_name.spec
393$ac_file.a: $ac_dir/$ac_name.spec $ac_dir/Makefile \$(WINEBUILD)
394 \$(WINEBUILD) \$(TARGETFLAGS)$ac_implibflags -w --implib -o \$[@] --export \$(srcdir)/$ac_dir/$ac_name.spec
Alexandre Julliard6cba5c42011-07-09 18:01:42 +0200395.PHONY: $ac_dir/__install-dev__ $ac_dir/__uninstall__
396$ac_dir/__install-dev__:: $ac_file.$IMPLIBEXT \$(DESTDIR)\$(dlldir)
397 \$(INSTALL_DATA) $ac_file.$IMPLIBEXT \$(DESTDIR)\$(dlldir)/lib$ac_implib.$IMPLIBEXT
398$ac_dir/__uninstall__::
399 \$(RM) \$(DESTDIR)\$(dlldir)/lib$ac_implib.$IMPLIBEXT
400install install-dev:: $ac_dir/__install-dev__
401__uninstall__: $ac_dir/__uninstall__"
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200402 if test "x$CROSSTEST_DISABLE" = x
403 then
404 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
405"__builddeps__: $ac_file.cross.a
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200406$ac_file.cross.a: $ac_dir/$ac_name.spec $ac_dir/Makefile \$(WINEBUILD)
407 \$(WINEBUILD) \$(CROSSTARGET:%=-b %)$ac_implibflags -w --implib -o \$[@] --export \$(srcdir)/$ac_dir/$ac_name.spec"
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200408 fi
Alexandre Julliard50231942010-03-16 22:00:02 +0100409
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200410 if test "$ac_name" != "$ac_implib"
Alexandre Julliard50231942010-03-16 22:00:02 +0100411 then
412 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliarde55ff7f2010-03-25 11:02:52 +0100413"__builddeps__: dlls/lib$ac_implib.$IMPLIBEXT
Alexandre Julliarde55ff7f2010-03-25 11:02:52 +0100414dlls/lib$ac_implib.$IMPLIBEXT: $ac_file.$IMPLIBEXT
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200415 \$(RM) \$[@] && \$(LN_S) $ac_name/lib$ac_implib.$IMPLIBEXT \$[@]
Alexandre Julliard50231942010-03-16 22:00:02 +0100416clean::
417 \$(RM) dlls/lib$ac_implib.$IMPLIBEXT"
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200418 if test "x$CROSSTEST_DISABLE" = x
419 then
420 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
421"__builddeps__: dlls/lib$ac_implib.cross.a
422dlls/lib$ac_implib.cross.a: $ac_file.cross.a
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200423 \$(RM) \$[@] && \$(LN_S) $ac_name/lib$ac_implib.cross.a \$[@]"
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200424 fi
Alexandre Julliard50231942010-03-16 22:00:02 +0100425 fi
426 fi
427}
428
429wine_fn_config_program ()
430{
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200431 ac_name=$[1]
432 ac_dir=programs/$ac_name
Alexandre Julliardd394e042010-03-20 14:53:39 +0100433 ac_enable=$[2]
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100434 ac_flags=$[3]
Alexandre Julliardfda8b652011-07-09 21:04:23 +0200435 ac_program=$ac_name
436
437 case $ac_name in
438 *.*) ;;
439 *) ac_program=$ac_program.exe ;;
440 esac
441
442 wine_fn_config_makefile $ac_dir $ac_enable "$ac_flags" programs/Makeprog.rules
Alexandre Julliardd7b387d2010-03-25 11:11:34 +0100443
444 AS_VAR_IF([$ac_enable],[no],,[wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardfda8b652011-07-09 21:04:23 +0200445"$ac_dir: __builddeps__"
Alexandre Julliard6c90aea2010-03-25 21:47:29 +0100446
Alexandre Julliard9c98f692011-10-22 14:54:03 +0200447 wine_fn_pot_rules $ac_dir $ac_flags
Alexandre Julliard367fd222011-01-04 17:05:21 +0100448
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100449 wine_fn_has_flag install $ac_flags || return
Alexandre Julliard2fb30212010-03-26 09:24:33 +0100450 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200451".PHONY: $ac_dir/__install__ $ac_dir/__uninstall__
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200452install install-lib:: $ac_dir/__install__
453__uninstall__: $ac_dir/__uninstall__"
Alexandre Julliardfda8b652011-07-09 21:04:23 +0200454
455 if test -n "$DLLEXT"
Alexandre Julliard2fb30212010-03-26 09:24:33 +0100456 then
457 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardfda8b652011-07-09 21:04:23 +0200458"$ac_dir/__install__:: $ac_dir \$(DESTDIR)\$(dlldir) \$(DESTDIR)\$(fakedlldir)
459 \$(INSTALL_PROGRAM) $ac_dir/$ac_program$DLLEXT \$(DESTDIR)\$(dlldir)/$ac_program$DLLEXT
460 \$(INSTALL_DATA) $ac_dir/$ac_program.fake \$(DESTDIR)\$(fakedlldir)/$ac_program
461$ac_dir/__uninstall__::
462 \$(RM) \$(DESTDIR)\$(dlldir)/$ac_program$DLLEXT \$(DESTDIR)\$(fakedlldir)/$ac_program"
463
464 if test "x$enable_tools" != xno && wine_fn_has_flag installbin $ac_flags
465 then
466 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200467"$ac_dir/__install__:: tools \$(DESTDIR)\$(bindir)
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200468 \$(INSTALL_SCRIPT) tools/wineapploader \$(DESTDIR)\$(bindir)/$ac_name
Alexandre Julliardbb86a352011-07-09 17:46:54 +0200469$ac_dir/__uninstall__::
Alexandre Julliard52c9e852010-09-25 12:01:14 +0200470 \$(RM) \$(DESTDIR)\$(bindir)/$ac_name"
Alexandre Julliardfda8b652011-07-09 21:04:23 +0200471 fi
472 else
473 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
474"$ac_dir/__install-lib__:: $ac_dir \$(DESTDIR)\$(dlldir)
475 \$(INSTALL_PROGRAM) $ac_dir/$ac_program \$(DESTDIR)\$(dlldir)/$ac_program
476$ac_dir/__uninstall__::
477 \$(RM) \$(DESTDIR)\$(dlldir)/$ac_program"
Alexandre Julliard41107a92011-08-01 13:40:19 +0200478 fi
479
480 if test "x$enable_tools" != xno && wine_fn_has_flag manpage $ac_flags
481 then
482 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
483"$ac_dir/__install__:: $ac_dir \$(DESTDIR)\$(mandir)/man\$(prog_manext)
484 \$(INSTALL_DATA) $ac_dir/$ac_name.man \$(DESTDIR)\$(mandir)/man\$(prog_manext)/$ac_name.\$(prog_manext)
485$ac_dir/__uninstall__::
486 \$(RM) \$(DESTDIR)\$(mandir)/man\$(prog_manext)/$ac_name.\$(prog_manext)"
Alexandre Julliardd7b387d2010-03-25 11:11:34 +0100487 fi])
Alexandre Julliard50231942010-03-16 22:00:02 +0100488}
489
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100490wine_fn_config_test ()
491{
492 ac_dir=$[1]
493 ac_name=$[2]
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200494 ac_flags=$[3]
Alexandre Julliard9b99cd12011-05-24 11:11:22 +0200495 wine_fn_append_file ALL_TEST_RESOURCES $ac_name.res
Alexandre Julliardc57aa382010-09-25 11:56:33 +0200496 wine_fn_all_dir_rules $ac_dir Maketest.rules
Alexandre Julliard44cff7e2010-03-25 11:06:37 +0100497
498 AS_VAR_IF([enable_tests],[no],,[wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
Alexandre Julliard9b99cd12011-05-24 11:11:22 +0200499"all: $ac_dir
Alexandre Julliard764d4c22010-05-23 09:27:33 +0200500.PHONY: $ac_dir
Alexandre Julliarddbbed382011-05-26 12:04:45 +0200501$ac_dir: $ac_dir/Makefile programs/winetest/Makefile __builddeps__ dummy
Alexandre Julliard6c90aea2010-03-25 21:47:29 +0100502 @cd $ac_dir && \$(MAKE)
Alexandre Julliard9b99cd12011-05-24 11:11:22 +0200503programs/winetest: $ac_dir
Alexandre Julliarde4eff852011-05-22 13:15:03 +0200504check test: $ac_dir/__test__
Alexandre Julliard764d4c22010-05-23 09:27:33 +0200505.PHONY: $ac_dir/__test__
Alexandre Julliardeab7efd2010-03-25 21:42:54 +0100506$ac_dir/__test__: dummy
Alexandre Julliard44cff7e2010-03-25 11:06:37 +0100507 @cd $ac_dir && \$(MAKE) test
508testclean::
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200509 \$(RM) $ac_dir/*.ok"
510
511 if test "x$CROSSTEST_DISABLE" = x
512 then
513 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
514"crosstest: $ac_dir/__crosstest__
515.PHONY: $ac_dir/__crosstest__
516$ac_dir/__crosstest__: $ac_dir/Makefile __builddeps__ dummy
517 @cd $ac_dir && \$(MAKE) crosstest"
Alexandre Julliardfaa7eae2010-07-26 12:38:11 +0200518 fi])
Alexandre Julliardd81a8f82010-03-20 15:02:56 +0100519}
520
521wine_fn_config_tool ()
522{
523 ac_dir=$[1]
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200524 ac_flags=$[2]
Alexandre Julliard84fd1f52011-05-10 11:59:43 +0200525 AS_VAR_IF([enable_tools],[no],[return 0])
526
Alexandre Julliard49c31e32011-06-12 12:13:17 +0200527 wine_fn_config_makefile $ac_dir enable_tools $ac_flags
Alexandre Julliard6dbe7a02010-03-25 11:51:24 +0100528
Alexandre Julliard49c31e32011-06-12 12:13:17 +0200529 wine_fn_append_rule ALL_MAKEFILE_DEPENDS "__tooldeps__: $ac_dir"
530 wine_fn_append_rule ALL_MAKEFILE_DEPENDS "$ac_dir: libs/port"
Alexandre Julliard84fd1f52011-05-10 11:59:43 +0200531 case $ac_dir in
532 tools/winebuild) wine_fn_append_rule ALL_MAKEFILE_DEPENDS "\$(WINEBUILD): $ac_dir" ;;
533 esac
Alexandre Julliardabfb11e2010-03-25 22:12:49 +0100534}
535
536wine_fn_config_makerules ()
537{
538 ac_rules=$[1]
539 ac_deps=$[2]
540 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
541"$ac_rules: $ac_rules.in $ac_deps config.status
542 @./config.status $ac_rules
543distclean::
544 \$(RM) $ac_rules"
545}
546
547wine_fn_config_symlink ()
548{
549 ac_link=$[1]
550 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
551"$ac_link:
552 @./config.status $ac_link
553distclean::
554 \$(RM) $ac_link"
Alexandre Julliarda070f9b2010-07-26 20:53:12 +0200555}
556
557if test "x$CROSSTEST_DISABLE" != x
558then
559 wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
560"crosstest:
561 @echo \"crosstest is not supported (mingw not installed?)\" && false"
562fi])
Alexandre Julliard2de10c42010-02-11 23:23:45 +0100563
564dnl **** Define helper function to append a file to a makefile file list ****
565dnl
566dnl Usage: WINE_APPEND_FILE(var,file)
567dnl
568AC_DEFUN([WINE_APPEND_FILE],[AC_REQUIRE([WINE_CONFIG_HELPERS])wine_fn_append_file $1 "$2"])
569
570dnl **** Define helper function to append a rule to a makefile command list ****
571dnl
572dnl Usage: WINE_APPEND_RULE(var,rule)
573dnl
574AC_DEFUN([WINE_APPEND_RULE],[AC_REQUIRE([WINE_CONFIG_HELPERS])wine_fn_append_rule $1 "$2"])
575
Francois Gouget4d801b62005-02-10 19:19:35 +0000576dnl **** Create nonexistent directories from config.status ****
Alexandre Julliard67e8dc62002-05-20 18:29:58 +0000577dnl
578dnl Usage: WINE_CONFIG_EXTRA_DIR(dirname)
579dnl
580AC_DEFUN([WINE_CONFIG_EXTRA_DIR],
Alexandre Julliarda1c253e2010-02-11 20:26:35 +0100581[AC_CONFIG_COMMANDS([$1],[test -d "$1" || { AC_MSG_NOTICE([creating $1]); AS_MKDIR_P("$1"); }])])
Alexandre Julliard446befb2007-07-02 13:41:36 +0200582
Alexandre Julliard7d020c92010-02-03 13:12:12 +0100583dnl **** Create symlinks from config.status ****
584dnl
Alexandre Julliard0ef63e12010-03-27 11:44:13 +0100585dnl Usage: WINE_CONFIG_SYMLINK(name,target,enable)
Alexandre Julliard7d020c92010-02-03 13:12:12 +0100586dnl
Alexandre Julliard2de10c42010-02-11 23:23:45 +0100587AC_DEFUN([WINE_CONFIG_SYMLINK],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliard0ef63e12010-03-27 11:44:13 +0100588m4_ifval([$3],[if test "x$[$3]" != xno; then
589])AC_CONFIG_LINKS([$1:]m4_default([$2],[$1]))dnl
590m4_if([$2],,[test "$srcdir" = "." || ])wine_fn_config_symlink $1[]m4_ifval([$3],[
591fi])])
Alexandre Julliard7d020c92010-02-03 13:12:12 +0100592
Alexandre Julliarda360e932008-08-20 16:02:37 +0200593dnl **** Create a make rules file from config.status ****
594dnl
595dnl Usage: WINE_CONFIG_MAKERULES(file,var,deps)
596dnl
Alexandre Julliard7d831152010-03-20 15:07:45 +0100597AC_DEFUN([WINE_CONFIG_MAKERULES],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliardabfb11e2010-03-25 22:12:49 +0100598wine_fn_config_makerules $1 $3
Alexandre Julliarda360e932008-08-20 16:02:37 +0200599$2=$1
600AC_SUBST_FILE([$2])dnl
601AC_CONFIG_FILES([$1])])
602
603dnl **** Create a makefile from config.status ****
604dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200605dnl Usage: WINE_CONFIG_MAKEFILE(file,enable,flags)
Alexandre Julliarda360e932008-08-20 16:02:37 +0200606dnl
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100607AC_DEFUN([WINE_CONFIG_MAKEFILE],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliard03642412010-03-20 15:24:22 +0100608AS_VAR_PUSHDEF([ac_enable],m4_default([$2],[enable_]$1))dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200609wine_fn_config_makefile [$1] ac_enable [$3]dnl
Alexandre Julliard03642412010-03-20 15:24:22 +0100610AS_VAR_POPDEF([ac_enable])])
Alexandre Julliarda360e932008-08-20 16:02:37 +0200611
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100612dnl **** Create a dll makefile from config.status ****
613dnl
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100614dnl Usage: WINE_CONFIG_DLL(name,enable,flags,implib)
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100615dnl
Alexandre Julliard50231942010-03-16 22:00:02 +0100616AC_DEFUN([WINE_CONFIG_DLL],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliard5cdd8412010-03-20 14:52:44 +0100617AS_VAR_PUSHDEF([ac_enable],m4_default([$2],[enable_]$1))dnl
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100618wine_fn_config_dll [$1] ac_enable [$3] [$4]dnl
Alexandre Julliard5cdd8412010-03-20 14:52:44 +0100619AS_VAR_POPDEF([ac_enable])])
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100620
621dnl **** Create a program makefile from config.status ****
622dnl
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100623dnl Usage: WINE_CONFIG_PROGRAM(name,enable,flags)
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100624dnl
Alexandre Julliard50231942010-03-16 22:00:02 +0100625AC_DEFUN([WINE_CONFIG_PROGRAM],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliard6cce7fa2010-12-28 15:42:43 +0100626AS_VAR_PUSHDEF([ac_enable],m4_default([$2],[enable_]$1))dnl
627wine_fn_config_program [$1] ac_enable [$3]dnl
Alexandre Julliardd394e042010-03-20 14:53:39 +0100628AS_VAR_POPDEF([ac_enable])])
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100629
630dnl **** Create a test makefile from config.status ****
631dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200632dnl Usage: WINE_CONFIG_TEST(dir,flags)
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100633dnl
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100634AC_DEFUN([WINE_CONFIG_TEST],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
635m4_pushdef([ac_suffix],m4_if(m4_substr([$1],0,9),[programs/],[.exe_test],[_test]))dnl
636m4_pushdef([ac_name],[m4_bpatsubst([$1],[.*/\(.*\)/tests$],[\1])])dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200637wine_fn_config_test $1 ac_name[]ac_suffix [$2]dnl
Alexandre Julliard4435e992010-02-10 11:24:00 +0100638m4_popdef([ac_suffix])dnl
Alexandre Julliardd5addea2010-02-08 21:27:54 +0100639m4_popdef([ac_name])])
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100640
641dnl **** Create a static lib makefile from config.status ****
642dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200643dnl Usage: WINE_CONFIG_LIB(name,flags)
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100644dnl
Alexandre Julliardfc7f1c72010-02-23 14:24:57 +0100645AC_DEFUN([WINE_CONFIG_LIB],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200646wine_fn_config_lib [$1] [$2]])
Alexandre Julliardaa6c4d42010-01-23 14:15:43 +0100647
Alexandre Julliardd81a8f82010-03-20 15:02:56 +0100648dnl **** Create a tool makefile from config.status ****
649dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200650dnl Usage: WINE_CONFIG_TOOL(name,flags)
Alexandre Julliardd81a8f82010-03-20 15:02:56 +0100651dnl
652AC_DEFUN([WINE_CONFIG_TOOL],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
Alexandre Julliarde2db7942011-06-12 11:41:43 +0200653wine_fn_config_tool [$1] [$2]])
Alexandre Julliardd81a8f82010-03-20 15:02:56 +0100654
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200655dnl **** Add a message to the list displayed at the end ****
656dnl
657dnl Usage: WINE_NOTICE(notice)
Alexandre Julliarda41f0f12008-01-07 14:51:44 +0100658dnl Usage: WINE_NOTICE_WITH(with_flag, test, notice)
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200659dnl Usage: WINE_WARNING(warning)
Alexandre Julliarda41f0f12008-01-07 14:51:44 +0100660dnl Usage: WINE_WARNING_WITH(with_flag, test, warning)
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200661dnl Usage: WINE_PRINT_MESSAGES
662dnl
Alexandre Julliard0dc503b2010-02-11 20:25:47 +0100663AC_DEFUN([WINE_NOTICE],[AS_VAR_APPEND([wine_notices],["|$1"])])
664AC_DEFUN([WINE_WARNING],[AS_VAR_APPEND([wine_warnings],["|$1"])])
Alexandre Julliarda41f0f12008-01-07 14:51:44 +0100665
666AC_DEFUN([WINE_NOTICE_WITH],[AS_IF([$2],[case "x$with_$1" in
667 x) WINE_NOTICE([$3]) ;;
668 xno) ;;
669 *) AC_MSG_ERROR([$3
670This is an error since --with-$1 was requested.]) ;;
671esac])])
672
673AC_DEFUN([WINE_WARNING_WITH],[AS_IF([$2],[case "x$with_$1" in
674 x) WINE_WARNING([$3]) ;;
675 xno) ;;
676 *) AC_MSG_ERROR([$3
677This is an error since --with-$1 was requested.]) ;;
678esac])])
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200679
Alexandre Julliard76adea12008-05-21 14:48:33 +0200680AC_DEFUN([WINE_ERROR_WITH],[AS_IF([$2],[case "x$with_$1" in
681 xno) ;;
682 *) AC_MSG_ERROR([$3
683Use the --without-$1 option if you really want this.]) ;;
684esac])])
685
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200686AC_DEFUN([WINE_PRINT_MESSAGES],[ac_save_IFS="$IFS"
Alexandre Julliarda41f0f12008-01-07 14:51:44 +0100687if test "x$wine_notices != "x; then
688 echo >&AS_MESSAGE_FD
Rafał Mużyło4736c992008-10-20 21:43:21 +0200689 IFS="|"
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200690 for msg in $wine_notices; do
Rafał Mużyło4736c992008-10-20 21:43:21 +0200691 IFS="$ac_save_IFS"
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200692 if test -n "$msg"; then
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200693 AC_MSG_NOTICE([$msg])
694 fi
695 done
696fi
Rafał Mużyło4736c992008-10-20 21:43:21 +0200697IFS="|"
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200698for msg in $wine_warnings; do
Rafał Mużyło4736c992008-10-20 21:43:21 +0200699 IFS="$ac_save_IFS"
Alexandre Julliard8d8c5c62007-07-10 15:05:40 +0200700 if test -n "$msg"; then
701 echo >&2
702 AC_MSG_WARN([$msg])
703 fi
704done
705IFS="$ac_save_IFS"])
706
Alexandre Julliard446befb2007-07-02 13:41:36 +0200707dnl Local Variables:
708dnl compile-command: "autoreconf --warnings=all"
709dnl End: