• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/build/bakefiles/wxpresets/sample/
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.59)
4
5AC_INIT([minimal],[1.2.5],[vslavik@fastmail.fm])
6
7AC_CONFIG_SRCDIR([minimal.cpp])
8
9AC_CANONICAL_BUILD
10AC_CANONICAL_HOST
11AC_CANONICAL_TARGET
12
13
14
15AM_OPTIONS_WXCONFIG
16
17
18
19dnl Checks for programs.
20AC_PROG_AWK
21AC_PROG_INSTALL
22AC_PROG_LN_S
23AC_PROG_RANLIB
24AC_PROG_CC
25AC_PROG_CXX
26AC_PROG_CXXCPP
27
28
29
30AM_PATH_WXCONFIG(2.4.1, WXFOUND=1)
31
32if test "$WXFOUND" != 1; then
33    AC_MSG_ERROR([
34        Please check that wx-config is in path, the directory
35        where wxWindows libraries are installed (returned by
36        'wx-config --libs' command) is in LD_LIBRARY_PATH or
37        equivalent variable and wxWindows is version 2.4.0 or above.
38    ])
39fi
40
41AC_BAKEFILE([m4_include(autoconf_inc.m4)])
42
43
44AC_CONFIG_FILES([
45         Makefile
46         ])
47
48AC_OUTPUT
49