summaryrefslogtreecommitdiff
path: root/configure.ac
blob: b87b57b397c9e46d59609a165a109de9f44e4eb1 (plain)
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
AC_INIT([wimax],[1.5.2],[wimax-linux@wimaxlinux.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign tar-ustar])
AC_PROG_CC
AC_PROG_LIBTOOL
AC_CONFIG_HEADERS([config.h])

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])


# For multiple installations
if test x$program_prefix = xNONE
   then
   cooked_program_prefix=
else
   cooked_program_prefix=$program_prefix
fi
AC_SUBST(program_prefix, $cooked_program_prefix)
if test x$program_suffix = xNONE
   then
   cooked_program_suffix=
else
   cooked_program_suffix=$program_suffix
fi
AC_SUBST(program_suffix, $cooked_program_suffix)


#if (test "${CFLAGS}" = ""); then
CFLAGS="-g -Wall -D _USE_TRACE -ldl -lm"
#fi

AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
			[enable compiling with debugging information]), [
	if (test "${enableval}" = "yes" &&
				test "${ac_cv_prog_cc_g}" = "yes"); then
		CFLAGS="-g -Wall -D _DEBUG -D _USE_TRACE -ldl -lm"
	fi
])


# Libwimax from wimax-tools
AC_ARG_WITH(libwimaxll, 
            AC_HELP_STRING([--with-libwimaxll],
			   [path to where libwimax is installed. USE ABSOLUTE PATHS.]), 
            export PKG_CONFIG_PATH="$withval:$withval/lib/pkgconfig:$PKG_CONFIG_PATH")
PKG_CHECK_MODULES(LIBWIMAX, libwimaxll-0)
libwimax_prefix=`pkg-config libwimaxll-0 --variable=prefix`
AC_MSG_RESULT(Using libwimax from $libwimax_prefix)
AC_SUBST(LIBWIMAX_CFLAGS)
AC_SUBST(LIBWIMAX_LIBS)

# Check if wimax-tools provide wimaxll_state_get()
LDFLAGS_save="$LDFLAGS"
LDFLAGS="$LIBWIMAX_LIBS $LDFLAGS"
AC_CHECK_FUNCS(wimaxll_state_get)
LDFLAGS="$LDFLAGS_save"

# zlib
AC_ARG_WITH(zlib,
            AC_HELP_STRING([--with-zlib],
			   [path to where zlib is installed. USE ABSOLUTE PATHS.]), 
            export PKG_CONFIG_PATH="$withval:$withval/lib/pkgconfig:$PKG_CONFIG_PATH")
PKG_CHECK_MODULES(ZLIB, zlib)
libwimax_prefix=`pkg-config zlib --variable=prefix`
AC_MSG_RESULT(Using zlib from $libwimax_prefix)
AC_SUBST(ZLIB_CFLAGS)
AC_SUBST(ZLIB_LIBS)


# Linux WiMAX stack
LINUX_KERNEL=/usr
AC_ARG_WITH(linux,
            AC_HELP_STRING([--with-linux],
			   [path to the Linux kernel headers/source (containing the
                            definitions for the WiMAX stack); defaults to what
                            is installed in your system's /usr/include/linux.
                            USE ABSOLUTE PATHS.]),
            [
                LINUX_KERNEL="$withval"
            ])
# Old, for backwards compat
AC_ARG_WITH(i2400m, 
            AC_HELP_STRING([--with-i2400m],
			   [path to the Linux kernel headers/source (containing the
                            definitions for the WiMAX stack); defaults to what
                            is installed in your system's /usr/include/linux.
                            DEPRECATED: this option will be removed soon.
                            USE ABSOLUTE PATHS.]),
            [
                LINUX_KERNEL="$withval"
            ])

AC_CHECK_FILE([$LINUX_KERNEL/include/linux/wimax.h],
                [AC_DEFINE([HAVE_WIMAX_H], 1, [Define to 1 if you have <linux/wimax.h>.])],
                [AC_MSG_ERROR([Can't locate include/linux/wimax.h in
 $LINUX_KERNEL])])

AC_SUBST(I2400M_INCLUDES, "-I${LINUX_KERNEL}/include")
AC_SUBST(LINUX_INCLUDE_PATH, "${LINUX_KERNEL}/include")

AC_CHECK_HEADER(zlib.h, [],
             
   [AC_MSG_ERROR([Can't locate zlib.h; did you install zlib-devel?])])
AC_CHECK_LIB(z, gzopen, [],
             [AC_MSG_ERROR([Can't locate libz; did you install zlib-devel?])])

AC_ARG_ENABLE(instrument, 
	      AC_HELP_STRING([--enable-instrument],[enable support for instrumentation]), 
	      [
		AC_MSG_RESULT(Instrument has been enabled)
		AC_SUBST(USE_INST, "1")
	      ],
	      [
		AC_MSG_RESULT(Instrument has been disabled)
		AC_SUBST(USE_INST, "0")
	      ])

AC_ARG_ENABLE(bindb, 
	      AC_HELP_STRING([--enable-bindb],[enable support for binary databases (disabled by default)]), 
	      __BINDB_ENABLED=$enable_bindb,
	      __BINDB_ENABLED=no)
if test x$__BINDB_ENABLED = xyes
then
	AC_MSG_RESULT(Database support will be in binary format)
else
	AC_MSG_RESULT(Database support will be in clear text format)
fi
AM_CONDITIONAL([BINDB_ENABLED], [test x$__BINDB_ENABLED = xyes])

AC_ARG_WITH(wimax-db-bin, 
            AC_HELP_STRING([--with-wimax-db-bin],
			   [path to the pre-generated binary WiMAX
                            configuration database; this is only used
                            when --enable-bindb is specified. USE
                            ABSOLUTE PATHS.]),
            [],
            with_wimax_db_bin="InfraStack/OSAgnostic/WiMAX/Agents/NDnS/XML_Files/WiMAX_DB.bin")         

AC_ARG_WITH(ver-info-bin, 
            AC_HELP_STRING([--with-ver-info-bin],
			   [path to the pre-generated binary
                            ver_info.bin file; this is only used when
                            --enable-bindb is specified. USE ABSOLUTE
                            PATHS.]),
            [],
            with_ver_info_bin="InfraStack/OSDependent/Linux/Config/Ver_info.bin")

if test x$__BINDB_ENABLED = xyes
then
        AC_CHECK_FILE([$with_wimax_db_bin],
                      [],
                      [AC_MSG_ERROR([Can't locate $with_wimax_db_bin])])
        AC_CHECK_FILE([$with_ver_info_bin],
                      [],
                      [AC_MSG_ERROR([Can't locate $with_ver_info_bin])])
fi
AC_SUBST(WIMAX_DB_BIN, $with_wimax_db_bin)
AC_SUBST(VER_INFO_BIN, $with_ver_info_bin)

AC_ARG_WITH(supplicant,
            AC_HELP_STRING([--with-supplicant=external|internal|devicescape],
			   [Specify which supplicant to use; "external" means
			    pkg-config will be used to autodetect the prefix
			    for libeap0 (use PKG_CONFIG_PATH to override the
			    .pc file location).  "internal" builds an internal
			    copy of libeap0.  "devicescape" uses the external
			    binary DeviceScape supplicant library.]))

AC_ARG_ENABLE(sup-ds, 
            AC_HELP_STRING([--enable-sup-ds],
			   [Enable usage of the DS binary
                            supplicant (disabled by default).  Overrides
                            any --with-supplicant value.]),
            [], [enable_sup_ds=no])

if test x$enable_sup_ds = xyes -o x$with_supplicant = xdevicescape; then
	AC_MSG_RESULT([supplicant: configured DS binary supplicant])
        enable_sup_wpa=no
elif test x$with_supplicant = xinternal; then
        enable_sup_wpa=yes
        AC_MSG_RESULT(supplicant: using internal EAP library)
        build_path="$ac_abs_confdir/supplicant/wpa_supplicant-1.0-rc3/"
        AC_SUBST(LIBEAP0_CFLAGS, "-I$build_path/src")
        AC_SUBST(LIBEAP0_LIBS, "-R$DESTDIR$libdir/wimax -L$build_path/src/eap_peer -leap")
        AC_SUBST(LIBEAP0_LIBDIR, "$libdir/wimax")
else
        enable_sup_wpa=yes
        PKG_CHECK_MODULES(LIBEAP0, libeap0 >= 0.7.0)
        libeap0_libdir=`pkg-config libeap0 --variable=libdir`
        AC_MSG_RESULT(supplicant: using EAP library from $libeap0_libdir)
        AC_SUBST(LIBEAP0_CFLAGS)
        AC_SUBST(LIBEAP0_LIBS)
        AC_SUBST(LIBEAP0_LIBDIR, $libeap0_libdir)
fi
AC_SUBST(WPA_SUP_PREFIX, $with_sup_wpa)
AM_CONDITIONAL(WPA_SUP_ENABLE, test x$enable_sup_wpa = xyes)
AM_CONDITIONAL(WPA_SUP_INTERNAL, test x$with_supplicant = xinternal)

curr_dir=`pwd`
mkdir -p InfraStack/OSDependent/Linux/InfraStackModules/CommonAPIHeaders
cd InfraStack/OSDependent/Linux/InfraStackModules/CommonAPIHeaders
ln -sf $ac_abs_confdir/InfraStack/OSAgnostic/OSInterface/OSAL/Primitives/wimax_osal_types.h
ln -sf $ac_abs_confdir/InfraStack/OSDependent/Linux/OSAL/Primitives/wimax_osal_basictypes.h
ln -sf $ac_abs_confdir/InfraStack/OSDependent/Linux/OSAL/Primitives/wimax_osal_linux_types.h
ln -sf $ac_abs_confdir/InfraStack/OSDependent/Linux/OSAL/Primitives/wimax_consts.h
ln -sf $ac_abs_confdir/InfraStack/OSDependent/Linux/OSAL/Primitives/windows_error.h
ln -sf $ac_abs_confdir/InfraStack/OSDependent/Linux/OSAL/Primitives/wimax_osal_error.h
ln -sf $ac_abs_confdir/InfraStack/OSDependent/Linux/OSAL/Services/wimax_osal_win_config_controller_defines.h
cd $curr_dir

AC_CONFIG_FILES([
	Makefile
	wns-version.h
        wimax.spec
        supplicant/Makefile
	InfraStack/OSDependent/Linux/OSAL/Makefile
	InfraStack/OSDependent/Linux/InfraStackModules/IPCs/Makefile
	InfraStack/OSAgnostic/Common/CommonServices/Makefile
	InfraStack/OSAgnostic/Common/CommonServices/XmlParser/Makefile
	InfraStack/OSAgnostic/Common/L4Common/Makefile
	InfraStack/OSAgnostic/Product/PipeHandler/Makefile
	InfraStack/OSAgnostic/WiMax/Agents/NDnS/Makefile
	InfraStack/OSAgnostic/WiMax/Agents/Supplicant/Makefile
	InfraStack/OSAgnostic/Product/Instrumantation/Makefile
	InfraStack/OSAgnostic/Product/Instrumantation/DnDAgent/Makefile
	InfraStack/OSAgnostic/Product/Instrumantation/MocMsgProxy/Makefile
	InfraStack/OSAgnostic/Product/AppSrvInfra/Makefile
	InfraStack/OSAgnostic/WiMax/Wrappers/iWmxSDK/Makefile
	InfraStack/OSAgnostic/WiMax/Wrappers/iWmxSDK/libiWmxSdk-0.pc
	InfraStack/OSAgnostic/WiMax/Wrappers/iWmxSDK/libiWmxSdk-0-uninstalled.pc
	InfraStack/OSDependent/Linux/wimaxcu/Makefile
	InfraStack/OSDependent/Linux/wimax_utils/wimax_monitor/Makefile
	])
AC_OUTPUT