forked from codebutler/firesheep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
122 lines (104 loc) · 3.02 KB
/
configure.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#
# configure.ac
#
# Authors:
# Eric Butler <[email protected]>
# Nick Kossifidis <[email protected]>
#
# This file is part of Firesheep.
#
# 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([Firesheep], [0.1], [[email protected]],
[firesheep], [http://codebutler.github.com/firesheep])
AC_PROG_CC([clang gcc])
AC_PREREQ([2.61])
AM_INIT_AUTOMAKE([foreign])
AC_PROG_LIBTOOL
AC_PROG_CXX([clang++ g++])
# A common source of problems.
if test ! -d backend/deps/http-parser; then
AC_MSG_ERROR([http-parser missing, did you read the README?])
fi
# OSX doesn't come with pkg-config, but PKG_CHECK_MODULES has to be defined to something to avoid errors.
m4_define_default([PKG_CHECK_MODULES], [AC_MSG_FAILURE([pkg-config was not found])])
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
case "$build_cpu" in
i[[3456]]86*)
build_arch="x86"
;;
amd64*|x86_64*)
build_arch="x86_64"
;;
esac
case "$host_os" in
cygwin)
DLL_EXT="dll"
FIRESHEEP_PLATFORM_NAME=WIN32
FIRESHEEP_PLATFORM="WINNT_x86-msvc"
;;
darwin*)
DLL_EXT="dylib"
FIRESHEEP_PLATFORM_NAME=OSX
FIRESHEEP_PLATFORM="osx"
CFLAGS="-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -mmacosx-version-min=10.6"
;;
linux*)
DLL_EXT="so"
FIRESHEEP_PLATFORM_NAME=LINUX
FIRESHEEP_PLATFORM="Linux_${build_arch}-gcc3"
;;
esac
AC_SUBST(DLL_EXT)
AC_SUBST(FIRESHEEP_PLATFORM)
AC_SUBST(FIRESHEEP_PLATFORM_NAME)
AM_CONDITIONAL(PLATFORM_WIN32, test x$FIRESHEEP_PLATFORM_NAME = xWIN32)
AM_CONDITIONAL(PLATFORM_OSX, test x$FIRESHEEP_PLATFORM_NAME = xOSX)
AM_CONDITIONAL(PLATFORM_LINUX, test x$FIRESHEEP_PLATFORM_NAME = xLINUX)
# BEGIN PCAP LIBS
AC_PATH_PROG([PCAP_CONFIG], [pcap-config], [no], [$PATH])
if test "x$PCAP_CONFIG" = "xno"; then
AC_MSG_ERROR([pcap-config not found (libpcap not installed ?)])
fi
PCAP_LIBS=`pcap-config --libs`
AC_SUBST(PCAP_LIBS)
PCAP_CFLAGS=`pcap-config --cflags`
AC_SUBST(PCAP_FLAGS)
# END PCAP LIBS
# BEGIN BOOST LIBS
# Specific version ?
#BOOST_REQUIRE([1.40])
BOOST_REQUIRE
AC_SUBST(BOOST_CPPFLAGS)
BOOST_FORMAT
AC_SUBST(BOOST_FORMAT_LIBS)
BOOST_STRING_ALGO
AC_SUBST(BOOST_STRING_ALGO_LIBS)
# END BOOST LIBS
if test x$FIRESHEEP_PLATFORM_NAME = xLINUX; then
PKG_CHECK_MODULES(UDEV, [libudev])
AC_SUBST(UDEV_CFLAGS)
AC_SUBST(UDEV_LIBS)
fi
CXXFLAGS="-Wall -g -O0"
AC_SUBST(CXXFLAGS)
AC_CONFIG_FILES([
Makefile
backend/Makefile
])
AC_OUTPUT
echo "
Firesheep-$VERSION
Platform: ${FIRESHEEP_PLATFORM}
"