# This file is part of GNUnet. # (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011 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.61) AC_INIT([gnunet-gtk],[0.9.0pre3],[bug-gnunet@gnu.org]) AM_INIT_AUTOMAKE([gnunet-gtk], [0.9.0pre3]) AM_CONFIG_HEADER(gnunet_gtk_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_HEADER_STDC AC_CANONICAL_HOST # dynamic libraries/plugins AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_SYS_LARGEFILE AC_FUNC_FSEEKO AC_TYPE_UID_T 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]) ;; 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]) build_target="solaris" ;; *arm-linux*) AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system]) ;; *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" 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") # check for gettext AM_GNU_GETTEXT_VERSION([0.17]) AM_GNU_GETTEXT([external]) AC_CHECK_HEADERS([errno.h stdio.h unistd.h locale.h sys/stat.h sys/types.h langinfo.h libintl.h unistd.h stddef.h argz.h sys/socket.h netinet/in.h stdarg.h]) # 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 # 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 pkg-config in path?) fi CFLAGS="$CFLAGS $GTK_CFLAGS" CPPFLAGS="$CPPFLAGS $GTK_CFLAGS" LIBS="$LIBS $GTK_LIBS" AC_CHECK_HEADERS([glib.h gmodule.h gtk/gtk.h],,AC_MSG_ERROR([gnunet-gtk requires GTK])) # test for Glade glade=0 lookin=${prefix} GLADE_CPPFLAGS="" GLADE_LDFLAGS="" GLADE_CFLAGS="" AC_MSG_CHECKING(for Glade core) AC_ARG_WITH(glade, [ --with-glade=PFX Base of Glade installation (found with pkg-config if omitted)], [AC_MSG_RESULT([$with_glade]) case $with_glade in no) lookin="" ;; yes) lookin="${prefix}" ;; *) lookin="$with_glade" ;; esac ], [ AC_MSG_RESULT([--with-glade not specified]) PKG_CHECK_MODULES([GLADE], [gladeui-1.0 >= 3.8.0], glade=1, [ PKG_CHECK_MODULES([GLADE], [gladeui-2.0 >= 3.10.0], glade=2) ] ) ] ) if test "x$glade" == "x0" -a ! "x$lookin" == "x" then AC_MSG_CHECKING(for Glade3 in $lookin) backup_LIBS="$LIBS" backup_CFLAGS="$CFLAGS" backup_CPPFLAGS="$CPPFLAGS" GLADE_LIBS="-L${lookin}/lib" GLADE_CFLAGS="-I${lookin}/include/libgladeui-1.0" GLADE_CPPFLAGS="-I${lookin}/include/libgladeui-1.0" LIBS="$GLADE_LIBS $backup_LIBS" CFLAGS="$GLADE_CFLAGS $backup_CFLAGS" CPPFLAGS="$GLADE_CPPFLAGS $backup_CPPFLAGS" AC_CHECK_HEADERS(gladeui/glade.h, AC_CHECK_LIB([gladeui-1], [glade_xml_node_new], [glade=1] ) ) if test "x$glade" == "x0" then GLADE_LIBS="-L${lookin}/lib" GLADE_CFLAGS="-I${lookin}/include/libgladeui-2.0" GLADE_CPPFLAGS="-I${lookin}/include/libgladeui-2.0" LIBS="$GLADE_LIBS $backup_LIBS" CFLAGS="$GLADE_CFLAGS $backup_CFLAGS" CPPFLAGS="$GLADE_CPPFLAGS $backup_CPPFLAGS" AC_CHECK_HEADERS(gladeui/glade.h, AC_CHECK_LIB([gladeui-2], [glade_xml_node_new], glade=2) ) fi if test ! "x$glade" == "x0" then EXT_LIB_PATH="-L${lookin}/lib $EXT_LIB_PATH" fi LIBS="$backup_LIBS" CFLAGS="$backup_CFLAGS" CPPFLAGS="$backup_CPPFLAGS" fi if test "x$glade" == "x0" then AC_MSG_ERROR([gnunet-gtk requires Glade3 (library and headers)]) fi AC_SUBST(GLADE_CFLAGS) AC_SUBST(GLADE_LIBS) # test for GNUnet core gnunet=0 lookin=${prefix} GNUNET_CFLAGS="" GNUNET_CPPFLAGS="" GNUNET_LIBS="" 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) lookin="" ;; yes) lookin="${prefix}" ;; *) lookin="$with_gnunet" ;; esac ], [ AC_MSG_RESULT([--with-gnunet not specified]) PKG_CHECK_MODULES([GNUNET], [gnunetutil >= 0.9.0], gnunet=1) ] ) if test "x$gnunet" == "x0" -a ! "x$lookin" == "x" then AC_MSG_CHECKING(for GNUnet util library in $lookin) backup_LIBS="$LIBS" backup_CFLAGS="$CFLAGS" backup_CPPFLAGS="$CPPFLAGS" GNUNET_LIBS="-L${lookin}/lib" GNUNET_CFLAGS="-I${lookin}/include" GNUNET_CPPFLAGS="-I${lookin}/include" LIBS="$GNUNET_LIBS $backup_LIBS" CFLAGS="$GNUNET_CFLAGS $backup_CFLAGS" CPPFLAGS="$GNUNET_CPPFLAGS $backup_CPPFLAGS" AC_CHECK_HEADERS([gnunet/platform.h gnunet/gnunet_util_lib.h], AC_CHECK_LIB([gnunetutil], [GNUNET_xfree_], [ gnunet=1 EXT_LIB_PATH="-L${lookin}/lib $EXT_LIB_PATH" ] ) ) LIBS="$backup_LIBS" CFLAGS="$backup_CFLAGS" CPPFLAGS="$backup_CPPFLAGS" fi if test "x$gnunet" == "x0" then AC_MSG_ERROR([gnunet-gtk requires GNUnet]) fi AC_SUBST(GNUNET_CFLAGS) AC_SUBST(GNUNET_LIBS) backup_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$GNUNET_CPPFLAGS $backup_CPPFLAGS" AC_CHECK_HEADERS([gnunet/gnunet_fs_service.h gnunet/gnunet_statistics_service.h gnunet/gnunet_core_service.h], [], AC_MSG_ERROR([compiling gnunet-gtk requires GNUnet core headers])) CPPFLAGS="$backup_CPPFLAGS" SAVELIBS=$LIBS LIBS="$GNUNET_LIBS $LIBS" AC_CHECK_LIB(gnunetutil,GNUNET_log,, AC_MSG_ERROR([gnunet-gtk requires libgnunetutil])) AC_CHECK_LIB(gnunetfs,GNUNET_FS_uri_to_string,, AC_MSG_ERROR([gnunet-gtk requires FS])) AC_CHECK_LIB(gnunetstatistics,GNUNET_STATISTICS_get,, AC_MSG_ERROR([gnunet-gtk requires STATISTICS])) AC_CHECK_LIB(gnunetcore,GNUNET_CORE_connect,, AC_MSG_ERROR([gnunet-gtk requires CORE])) AC_CHECK_LIB(gladeui-1,glade_xml_node_new, [], [ AC_CHECK_LIB(gladeui-2,glade_xml_node_new,, AC_MSG_ERROR([gnunet-gtk requires glade3])) ] ) LIBS=$SAVELIBS AC_DEFINE_DIR([PACKAGE_DATA], [datarootdir], [The directory for installing read-only architecture-independent data]) # Set PACKAGE_SOURCE_DIR in gnunet_gtk_config.h. packagesrcdir=`cd $srcdir && pwd` AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}", [source dir]) AC_OUTPUT([ Makefile contrib/Makefile doc/Makefile src/Makefile src/include/Makefile src/lib/Makefile src/fs/Makefile src/peerinfo/Makefile src/setup/Makefile pixmaps/Makefile po/Makefile.in po/Makefile gnunet-fs-gtk.desktop gnunet-setup.desktop ])