forked from codebutler/firesheep
-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
167 lines (137 loc) · 4.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#
# 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_PREREQ([2.61])
AM_INIT_AUTOMAKE([foreign])
AC_PROG_CXX
# OSX doesn't come wiht 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
case "$host_os" in
cygwin)
TARGET=WIN32
;;
darwin*)
CFLAGS="-isysroot /Developer/SDKs/MacOSX10.5.sdk -arch i386 -mmacosx-version-min=10.5"
TARGET=OSX
;;
linux*)
TARGET=LINUX
;;
esac
AM_CONDITIONAL(PLATFORM_WIN32, test x$TARGET = xWIN32)
AM_CONDITIONAL(PLATFORM_OSX, test x$TARGET = xOSX)
AM_CONDITIONAL(PLATFORM_LINUX, test x$TARGET = xLINUX)
# BEGIN MOZILLA STUFF (XULRUNNER SDK)
# Mozilla doesn't provide pkg-config files for OSX, hence all this mess.
if test x$TARGET = xOSX; then
AC_ARG_WITH([xulrunner-sdk],
[AS_HELP_STRING([--with-xulrunner-sdk=<path>], [path to xulrunner sdk])],
[xulrunner_sdk="$withval"],
[xulrunner_sdk=""])
if test x$TARGET = xWIN32; then
xulrunner_sdk=`readlink -f $xulrunner_sdk`
fi
AS_IF([test -d "$xulrunner_sdk"], [], [AC_MSG_FAILURE([Specify --with-xulrunner-sdk=<path>.])])
MOZ_SDK=$xulrunner_sdk
AC_SUBST(MOZ_SDK)
MOZ_PATH="${xulrunner_sdk}/bin"
AC_SUBST(MOZ_PATH)
AC_PATH_PROG([XPIDL], [xpidl], [no], [$MOZ_PATH:$PATH])
if test "x$XPIDL" = "xno"; then
AC_MSG_ERROR([xpidl compiler not found])
fi
AC_SUBST(XPIDL)
XPIDL_FLAGS="-I ${xulrunner_sdk}/idl"
AC_SUBST(XPIDL_FLAGS)
MOZ_CFLAGS="-fshort-wchar -I${MOZ_SDK}/include"
AC_SUBST(MOZ_CFLAGS)
MOZ_LIBS="-L${MOZ_SDK}/lib -L${MOZ_SDK}/bin -Wl,-executable_path,${MOZ_SDK}/bin/xulrunner-bin -lxpcomglue_s -lxpcom -lplds4 -lplc4 -lnspr4 -lpthread -ldl"
AC_SUBST(MOZ_LIBS)
else
PKG_CHECK_MODULES(MOZ, [libxul >= 1.9.2])
AC_SUBST(MOZ_CFLAGS)
AC_SUBST(MOZ_LIBS)
MOZ_SDK=`pkg-config libxul --variable=sdkdir`
AC_SUBST(MOZ_SDK)
MOZ_PATH="${MOZ_SDK}/bin"
AC_SUBST(MOZ_PATH)
XPIDL_FLAGS="-I ${MOZ_SDK}/idl"
AC_SUBST(XPIDL_FLAGS)
AC_PATH_PROG([XPIDL], [xpidl], [no], [$MOZ_PATH:$PATH])
if test "x$XPIDL" = "xno"; then
AC_MSG_ERROR([xpidl compiler not found])
fi
AC_SUBST(XPIDL)
fi
# END MOZILLA STUFF
# 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
# BEGIN LINUX
# Use generic CPU arch for xpi/platform
# on Linux
case "$build_cpu" in
i[[3456]]86*)
build_arch="x86"
build_target="-mtune=generic -m32"
;;
amd64*|x86_64*)
build_arch="x86_64"
build_target="-mtune=generic -m64"
;;
esac
BUILD_ARCH=$build_arch
AC_SUBST(BUILD_ARCH)
BUILD_TARGET=$build_target
AC_SUBST(BUILD_TARGET)
if test x$TARGET = xLINUX; then
PKG_CHECK_MODULES(HAL, [hal])
AC_SUBST(HAL_CFLAGS)
AC_SUBST(HAL_LIBS)
fi
# END LINUX
AC_SUBST(CFLAGS)
AC_CONFIG_FILES([
Makefile
backend/Makefile
mozpopen/Makefile
])
AC_OUTPUT