Commit 2f4fa0d56e23a7abceac3c662b5096168cf55f52

Authored by Perry Werneck
1 parent 8c7b3248
Exists in master and in 1 other branch develop

Small fixes on configure script.

Showing 1 changed file with 4 additions and 5 deletions   Show diff stats
configure.ac
... ... @@ -56,11 +56,6 @@ dnl Checks for programs.
56 56 AC_PROG_CC
57 57 AC_PROG_SED
58 58 AC_PROG_LN_S
59   -AC_PATH_TOOL([AR], [ar], [ar])
60   -AC_PATH_TOOL([CONVERT], [convert], [no])
61   -AC_PATH_TOOL([OPTIPNG],[optipng],[no])
62   -AC_PATH_TOOL([ZIP],[zip],[no])
63   -AC_PATH_TOOL([DLLTOOL],[dlltool],[no])
64 59  
65 60 AC_LANG([C])
66 61  
... ... @@ -130,6 +125,10 @@ dnl Check for other programs
130 125 dnl ---------------------------------------------------------------------------
131 126  
132 127 AC_PATH_TOOL([AR], [ar], [ar])
  128 +AC_PATH_TOOL([CONVERT], [convert], [no])
  129 +AC_PATH_TOOL([OPTIPNG],[optipng],[no])
  130 +AC_PATH_TOOL([ZIP],[zip],[no])
  131 +AC_PATH_TOOL([DLLTOOL],[dlltool],[no])
133 132 AC_PATH_TOOL([WINDRES], [windres], [no])
134 133  
135 134 PKG_CHECK_EXISTS
... ...