-
Notifications
You must be signed in to change notification settings - Fork 83
/
configure-windows.ac
107 lines (92 loc) · 2.59 KB
/
configure-windows.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# configure-windows-cross.ac
# (C) 2018, all rights reserved,
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_INIT(reqrypt, 0)
AC_SUBST(PACKAGE_NAME_LONG, "ReQrypt")
AC_SUBST(PACKAGE_VERSION, `cat VERSION`)
AC_SUBST(PACKAGE_VERSION_SHORT, `cat VERSION`)
error=no
AC_PROG_CC([], [true], [error=yes])
AC_PROG_CC_C99
if test "$ac_cv_prog_cc_c99" = "no"
then
AC_MSG_NOTICE([*** compiler does not support C99.])
error=yes
fi
if test -d 'C:/Program Files/NSIS/'
then
export PATH=$PATH:'/c/Program Files/NSIS/'
elif test -d 'C:/Program Files (x86)/NSIS/'
then
export PATH=$PATH:'/c/Program Files (x86)/NSIS/'
fi
AC_PATH_PROG([NSIS_PATH], [makensis], [no])
if test "$NSIS_PATH" = "no"
then
AC_MSG_NOTICE([*** NSIS is not installed.])
error=yes
fi
AC_PATH_TOOL([WINDRES_PATH], [windres], [no])
if test "$WINDRES_PATH" = "no"
then
AC_MSG_NOTICE([*** windres command not found.])
error=yes
fi
if test "$DIVERT" = ""
then
DIVERT="./"
fi
DIV=windiv # Anything called 'divert' seems to break autoconf
ERT=ert
DIVERT_WORD=$DIV$ERT
DIVERT_NAME=WinDivert
AC_MSG_CHECKING([for $DIVERT_NAME files])
if test -e $DIVERT/x86/${DIVERT_NAME}32.sys -a \
-e $DIVERT/x86/$DIVERT_NAME.dll -a \
-e $DIVERT/x86_64/${DIVERT_NAME}64.sys -a \
-e $DIVERT/x86_64/$DIVERT_NAME.dll -a \
-e $DIVERT/include/$DIVERT_WORD.h
then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
AC_MSG_NOTICE([*** $DIVERT_NAME files not found.])
error=yes
fi
if test "$error" = "yes"
then
AC_MSG_NOTICE([*** correct the above errors first ***])
exit 1;
fi
case "$host" in
amd64-*)
AC_SUBST(BITS, 64)
AC_SUBST(ARCH, x86_64)
;;
x86_64-*)
AC_SUBST(BITS, 64)
AC_SUBST(ARCH, x86_64)
;;
*)
AC_SUBST(BITS, 32)
AC_SUBST(ARCH, x86)
;;
esac
AC_SUBST(ROOT, `pwd`)
AC_SUBST(PLATFORM_CAPS, WINDOWS)
AC_SUBST(PLATFORM, windows)
AC_SUBST(CROSS, yes)
AC_SUBST(DIVERT_ROOT, `pwd`/$DIVERT)
AC_OUTPUT([cfg.mk src/cfg.h src/windows/install/install.nsi])