aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: 8f58d3edb56cbe50d6dc223f9ba6f1416dc5d1fc (plain) (blame)
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# This file is part of GNUnet.
# (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Christian Grothoff (and other contributing authors)
#
# GNUnet 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 2, or (at your
# option) any later version.
#
# GNUnet 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 GNUnet; see the file COPYING.  If not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
#
# Process this file with autoconf to produce a configure script.
#
AC_PREREQ(2.57)
AC_INIT([gnunet-gtk],[0.7.3],[bug-gnunet@gnu.org])
AM_INIT_AUTOMAKE([gnunet-gtk], [0.7.3])
AM_CONFIG_HEADER(config.h)

AH_TOP([#define _GNU_SOURCE  1])

AC_ISC_POSIX
AC_PROG_AWK
AC_PROG_CC

AC_PROG_MKDIR_P
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_LIBTOOL_WIN32_DLL
AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_CXX
AC_HEADER_STDC
AC_CANONICAL_HOST


# dynamic libraries/plugins
AC_LIBTOOL_DLOPEN
AC_LIBLTDL_INSTALLABLE
AC_SUBST(LTDLINCL)
AC_SUBST(LIBLTDL)
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_LIB_LTDL
AC_CONFIG_SUBDIRS(libltdl)


AC_SYS_LARGEFILE
AC_FUNC_FSEEKO

# check for gtk >= 2.6.0
AC_MSG_CHECKING(for gtk)
AM_PATH_GTK_2_0(2.6.0,without_gtk=false,without_gtk=true)
AM_CONDITIONAL(HAVE_GTK, test x$without_gtk != xtrue)
if test $without_gtk != true
then
 AC_DEFINE_UNQUOTED([HAVE_GTK], 1, [We have GTK])
else
 AC_MSG_ERROR(Cannot find GTK: Is gtk-config in path?)
fi


CFLAGS="-Wall $CFLAGS"
# use '-fno-strict-aliasing', but only if the compiler can take it
if gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1;
then
 CFLAGS="-fno-strict-aliasing $CFLAGS"
fi


# Check system type
case "$host_os" in
*darwin* | *rhapsody* | *macosx*)
     AC_DEFINE_UNQUOTED(OSX,1,[This is an OS X system])
     CFLAGS="-no-cpp-precomp $CFLAGS"
     LDFLAGS="-flat_namespace -undefined suppress $LDFLAGS"
     ;;
linux*)
     AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system])
     ;;
freebsd*)
     AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
     AC_DEFINE_UNQUOTED(FREEBSD,1,[This is a FreeBSD system])
     CFLAGS="-D_THREAD_SAFE $CFLAGS"
     ;;
openbsd*)
     AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
     AC_DEFINE_UNQUOTED(OPENBSD,1,[This is an OpenBSD system])
     ;;
netbsd*)
     AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
     AC_DEFINE_UNQUOTED(NETBSD,1,[This is a NetBSD system])
     ;;
*solaris*)
     AC_DEFINE_UNQUOTED(SOLARIS,1,[This is a Solaris system])
     AC_DEFINE_UNQUOTED(_REENTRANT,1,[Need with solaris or errno doesnt work])
     AC_CHECK_LIB(resolv, res_init)
     build_target="solaris"
     ;;
*arm-linux*)
     AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system])
     CFLAGS="-D_REENTRANT -fPIC -pipe $CFLAGS"
     ;;
*cygwin*)
     AC_DEFINE_UNQUOTED(CYGWIN,1,[This is a Cygwin system])
     AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
     AC_CHECK_LIB(intl, gettext)
     LDFLAGS="$LDFLAGS -no-undefined"
     CFLAGS="-mms-bitfields $CFLAGS"
     build_target="cygwin"
     ;;
*mingw*)
     AC_DEFINE_UNQUOTED(MINGW,1,[This is a MinGW system])
     AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
     AC_DEFINE_UNQUOTED(_WIN32,1,[This is a Windows system])
     AC_CHECK_LIB(intl, gettext)
     LDFLAGS="$LDFLAGS -no-undefined -Wl,--export-all-symbols -lws2_32"
     CFLAGS="-mms-bitfields $CFLAGS"
     build_target="mingw"
     ;;
*)
     AC_MSG_RESULT(Unrecognised OS $host_os)
     AC_DEFINE_UNQUOTED(OTHEROS,1,[Some strange OS])
;;
esac

AM_CONDITIONAL(MINGW,   test "$build_target" = "mingw")

# some other checks for standard libs
AC_CHECK_LIB(nsl, gethostbyname)
AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(m, log)
AC_CHECK_FUNCS(ftruncate)

# check for POSIX emulation under Windows
AC_CHECK_LIB(plibc, plibc_conv_to_win_path)

# Checks for standard typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_PID_T

# check for gettext
AM_GNU_GETTEXT_VERSION([0.13.1])
AM_GNU_GETTEXT([external])

# test for libextractor
extractor=0
AC_MSG_CHECKING(for libextractor)
AC_ARG_WITH(extractor,
   [  --with-extractor=PFX    Base of libextractor installation],
   [AC_MSG_RESULT([$with_extractor])
    case $with_extractor in
      no)
        ;;
      yes)
        AC_CHECK_HEADERS(extractor.h,extractor=1)
        ;;
      *)
        CPPFLAGS="-I$with_extractor/include $CPPFLAGS"
        AC_CHECK_HEADERS(extractor.h,extractor=1)
        ;;
    esac
   ],
   [AC_MSG_RESULT([--with-extractor not specified])
    AC_CHECK_HEADERS(extractor.h,extractor=1)])
if test "$extractor" != 1
then
 AC_MSG_ERROR([gnunet-gtk requires libextractor headers])
fi

# test for GNUnet core
gnunet=0
AC_MSG_CHECKING(for GNUnet core)
AC_ARG_WITH(gnunet,
   [  --with-gnunet=PFX       Base of GNUnet installation],
   [AC_MSG_RESULT([$with_gnunet])
    case $with_gnunet in
      no)
        ;;
      yes)
        AC_CHECK_HEADERS(GNUnet/gnunet_util.h,
          AC_CHECK_LIB([gnunetutil], [GNUNET_GC_free],
            gnunet=1))
        ;;
      *)
        LDFLAGS="-L$with_gnunet/lib $LDFLAGS"
        CPPFLAGS="-I$with_gnunet/include $CPPFLAGS"
        AC_CHECK_HEADERS(GNUnet/gnunet_util.h,
          AC_CHECK_LIB([gnunetutil], [GNUNET_GC_free],
            EXT_LIB_PATH="-L$with_gnunet/lib $EXT_LIB_PATH"
            gnunet=1))
        ;;
    esac
   ],
   [AC_MSG_RESULT([--with-gnunet not specified])
    AC_CHECK_HEADERS(gnunet_util.h,
     AC_CHECK_LIB([GNUnet/gnunet_util.h], [GNUNET_GC_free],
      gnunet=1))])

# if GNUnet was not found, try in /usr/local
if test "$gnunet" != 1
then
AC_MSG_CHECKING(for GNUnet core in /usr/local)
with_gnunet=/usr/local
  LDFLAGS="-L$with_gnunet/lib $LDFLAGS"
  CPPFLAGS="-I$with_gnunet/include $CPPFLAGS"
  AC_CHECK_HEADERS(GNUnet/gnunet_util.h,
  AC_CHECK_LIB([gnunetutil], [GNUNET_GC_free],
  EXT_LIB_PATH="-L$with_gnunet/lib $EXT_LIB_PATH"
  gnunet=1))
fi

if test "$gnunet" != 1
then
 AC_MSG_ERROR([gnunet-gtk requires GNUnet])
fi
AC_CHECK_HEADERS([GNUnet/gnunet_ecrs_lib.h GNUnet/gnunet_fsui_lib.h GNUnet/gnunet_stats_lib.h GNUnet/gnunet_getoption_lib.h],,
                 AC_MSG_ERROR([compiling gnunet-gtk requires GNUnet core headers]))

SAVELIBS=$LIBS
AC_CHECK_LIB(gnunetutil,GNUNET_GE_LOG,,
             AC_MSG_ERROR([gnunet-gtk requires libgnunetutil]))
AC_CHECK_LIB(gnunetecrs,GNUNET_ECRS_meta_data_create,,
             AC_MSG_ERROR([gnunet-gtk requires ECRS]))
AC_CHECK_LIB(gnunetfsui,GNUNET_FSUI_start,,
             AC_MSG_ERROR([gnunet-gtk requires FSUI]))
AC_CHECK_LIB(gnunetgetoption_api,GNUNET_get_daemon_configuration_value,,
             AC_MSG_ERROR([gnunet-gtk requires getoption]))
AC_CHECK_LIB(gnunetstats_api,GNUNET_STATS_get_statistics,,
             AC_MSG_ERROR([gnunet-gtk requires stats]))
LIBS=$SAVELIBS

PKG_CHECK_MODULES(GNUNETGTK, libglade-2.0) # libgnomeui-2.0 >= 1.110.0
AC_SUBST(GNUNETGTK_CFLAGS)
AC_SUBST(GNUNETGTK_LIBS)


# Is libnotify available?
LIBNOTIFY_REQUIRED=0.3.2
AC_ARG_ENABLE(libnotify,
              [AC_HELP_STRING([--enable-libnotify],
                              [build with libnotify support [default=no]])],,
              [enable_libnotify=no])
if test x$enable_libnotify = xno ; then
    have_libnotify=no;
else
    # See if we have sufficiently new libnotify library
    PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED, have_libnotify=yes, have_libnotify=no)
    if test x$enable_libnotify = xauto ; then
        if test x$have_libnotify = xno ; then
                AC_MSG_WARN([Sufficiently new libnotify library not found])
        fi
    else 
        if test x$have_libnotify = xno ; then
                AC_MSG_ERROR([libnotify explicitly required, and sufficiently new libnotify library not found])
        fi
    fi
fi
AM_CONDITIONAL(HAVE_LIBNOTIFY, test x$have_libnotify = xyes)
if test x$have_libnotify = xyes ; then
    # Find out the version of LIBNOTIFY we're using
    libnotify_version=`pkg-config --modversion libnotify`
    LIBNOTIFY_VERSION_MAJOR=`echo $libnotify_version | awk -F. '{print $1}'`
    LIBNOTIFY_VERSION_MINOR=`echo $libnotify_version | awk -F. '{print $2}'`
    LIBNOTIFY_VERSION_MICRO=`echo $libnotify_version | awk -F. '{print $3}'`
    if test "z$LIBNOTIFY_VERSION_MAJOR" = "z"; then
        LIBNOTIFY_VERSION_MAJOR="0"
    fi
    if test "z$LIBNOTIFY_VERSION_MINOR" = "z"; then
        LIBNOTIFY_VERSION_MINOR="0"
    fi
    if test "z$LIBNOTIFY_VERSION_MICRO" = "z"; then
        LIBNOTIFY_VERSION_MICRO="0"
    fi
    echo "Your libnotify version is $LIBNOTIFY_VERSION_MAJOR.$LIBNOTIFY_VERSION_MINOR.$LIBNOTIFY_VERSION_MICRO."
    LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS -DLIBNOTIFY_VERSION_MAJOR=$LIBNOTIFY_VERSION_MAJOR"
    LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS -DLIBNOTIFY_VERSION_MINOR=$LIBNOTIFY_VERSION_MINOR"
    LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS -DLIBNOTIFY_VERSION_MICRO=$LIBNOTIFY_VERSION_MICRO"
    AC_SUBST([LIBNOTIFY_CFLAGS])
    AC_SUBST([LIBNOTIFY_LIBS])

    AC_DEFINE(WITH_LIBNOTIFY,1,[Define if libnotify is enabled])
fi

# Check for gksu version 2
AC_ARG_ENABLE(libgksu2,
              [AC_HELP_STRING([--enable-libgksu2],
                              [build with libgksu2 support [default=auto]])],,
              [enable_libgksu2=auto])
if test x$enable_libgksu2 = xno ; then
    have_libgksu2=no;
else
    # See if we have sufficiently new libgksu2 library
    PKG_CHECK_MODULES(LIBGKSU2, libgksu2, have_libgksu2=yes, have_libgksu2=no)
    if test x$enable_libgksu2 = xauto ; then
        if test x$have_libgksu2 = xno ; then
                AC_MSG_RESULT([library or headers not found, won't be enabled])
        fi
    else 
        if test x$have_libgksu2 = xno ; then
                AC_MSG_ERROR([libgksu2 explicitly required, and libgksu2 library or headers not found])
        fi
    fi
fi
AM_CONDITIONAL(HAVE_LIBGKSU2, test x$have_libgksu2 = xyes)
if test x$have_libgksu2 = xyes ; then
    AC_DEFINE(WITH_LIBGKSU2,1,[Define whether libgksu2 is enabled])
fi


AC_DEFINE_DIR([PACKAGE_DATA], [datarootdir], [The directory for installing read-only architecture-independent data])


# Set PACKAGE_SOURCE_DIR in config.h.
packagesrcdir=`cd $srcdir && pwd`
AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}", [source dir])

AC_OUTPUT([
Makefile
doc/Makefile
src/Makefile
src/include/Makefile
src/common/Makefile
src/core/Makefile
src/plugins/Makefile
src/plugins/about/Makefile
src/plugins/daemon/Makefile
src/plugins/fs/Makefile
src/plugins/peers/Makefile
src/plugins/stats/Makefile
pixmaps/Makefile
pixmaps/icons/Makefile
po/Makefile.in
po/Makefile
gnunet-gtk.desktop
])



if test x$have_libnotify = xyes ; then
    AC_MSG_NOTICE([libnotify support is enabled (experimental)])
else
    AC_MSG_NOTICE([libnotify support disabled (this is ok)])
fi

if test x$have_libgksu2 = xyes ; then
    AC_MSG_NOTICE([libgksu2 support is enabled])
else
    AC_MSG_NOTICE([libgksu2 support disabled (this is ok)])
fi