Package: basilisk2 Version: 0.9.20070407-2 Followup-For: Bug #338549
Hi again, I'm attaching an improved version of the patch which actually uses the same inclusions as the existing checks for if.h and if_tun.h. Regards, Stephen -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing'), (200, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages basilisk2 depends on: ii libatk1.0-0 1.18.0-2 The ATK accessibility toolkit ii libaudiofile0 0.2.6-6 Open-source version of SGI's audio ii libc6 2.5-7 GNU C Library: Shared libraries ii libcairo2 1.4.6-1 The Cairo 2D vector graphics libra ii libesd0 0.2.36-3 Enlightened Sound Daemon - Shared ii libfontconfig1 2.4.2-1.2 generic font configuration library ii libgcc1 1:4.2-20070516-1 GCC support library ii libglib2.0-0 2.12.12-1 The GLib library of C routines ii libgtk2.0-0 2.10.12-2 The GTK+ graphical user interface ii libpango1.0-0 1.16.4-1 Layout and rendering of internatio ii libsdl1.2debian 1.2.11-8 Simple DirectMedia Layer ii libstdc++6 4.2-20070516-1 The GNU Standard C++ Library v3 ii libx11-6 2:1.0.3-7 X11 client-side library ii libxcursor1 1.1.7-4 X cursor management library ii libxext6 1:1.0.1-2 X11 miscellaneous extension librar ii libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio ii libxi6 1:1.0.1-4 X11 Input extension library ii libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library ii libxrandr2 2:1.2.1-1 X11 RandR extension library ii libxrender1 1:0.9.1-3 X Rendering Extension client libra basilisk2 recommends no packages. -- no debconf information
--- Unix/configure 2007-05-20 22:30:18.000000000 +0200 +++ Unix/configure 2007-05-20 22:30:55.000000000 +0200 @@ -22560,6 +22560,12 @@ cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ + #ifdef HAVE_SYS_TYPES_H + #include <sys/types.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + #include <sys/socket.h> + #endif #if defined(HAVE_LINUX_IF_H) && defined(HAVE_LINUX_IF_TUN_H) #include <linux/if.h> #include <linux/if_tun.h> @@ -24531,7 +24537,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu cat > conftest.$ac_ext <<EOF -#line 24534 "configure" +#line 24540 "configure" #include "confdefs.h" /* This will not work unless sizeof(double) == 8. */ extern char sizeof_double_must_be_8 [sizeof(double) == 8 ? 1 : -1]; --- Unix/configure.ac 2007-04-07 11:24:12.000000000 +0200 +++ Unix/configure.ac 2007-05-20 22:29:59.000000000 +0200 @@ -669,6 +669,12 @@ AC_CACHE_CHECK([whether TUN/TAP is supported], ac_cv_tun_tap_support, [ AC_TRY_COMPILE([ + #ifdef HAVE_SYS_TYPES_H + #include <sys/types.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + #include <sys/socket.h> + #endif #if defined(HAVE_LINUX_IF_H) && defined(HAVE_LINUX_IF_TUN_H) #include <linux/if.h> #include <linux/if_tun.h>