From 2dc45dd56c74cd3051b26bd33d2df5b3b8de3fd1 Mon Sep 17 00:00:00 2001 From: upstream svn Date: Mon, 22 Sep 2014 17:38:47 +0000 Subject: [PATCH] Move mmap detection routines to a separate file Got large enough to deserve its own file... --- .svn-revision | 2 +- Makefile.in | 15 ++- acinclude.m4 | 201 ---------------------------- aclocal.m4 | 1 + docs/Makefile.in | 15 ++- docs/man/Makefile.in | 15 ++- m4/mmap.m4 | 224 ++++++++++++++++++++++++++++++++ src/Makefile.in | 15 ++- src/libs/Makefile.in | 15 ++- src/libs/common/Makefile.in | 15 ++- src/libs/ec/Makefile.in | 15 ++- src/libs/ec/cpp/Makefile.in | 15 ++- src/pixmaps/Makefile.in | 15 ++- src/pixmaps/flags_xpm/Makefile.in | 15 ++- src/skins/Makefile.in | 15 ++- src/utils/Makefile.in | 15 ++- src/utils/aLinkCreator/Makefile.in | 15 ++- src/utils/aLinkCreator/docs/Makefile.in | 15 ++- src/utils/aLinkCreator/src/Makefile.in | 15 ++- src/utils/cas/Makefile.in | 15 ++- src/utils/cas/docs/Makefile.in | 15 ++- src/utils/fileview/Makefile.in | 15 ++- src/utils/plasmamule/Makefile.in | 15 ++- src/utils/wxCas/Makefile.in | 15 ++- src/utils/wxCas/docs/Makefile.in | 15 ++- src/utils/wxCas/src/Makefile.in | 15 ++- src/utils/xas/Makefile.in | 15 ++- src/utils/xas/docs/Makefile.in | 15 ++- src/webserver/Makefile.in | 15 ++- src/webserver/default/Makefile.in | 15 ++- src/webserver/src/Makefile.in | 15 ++- unittests/Makefile.in | 15 ++- unittests/muleunit/Makefile.in | 15 ++- unittests/tests/Makefile.in | 15 ++- 34 files changed, 466 insertions(+), 412 deletions(-) create mode 100644 m4/mmap.m4 diff --git a/.svn-revision b/.svn-revision index cef9d209..c83c505a 100644 --- a/.svn-revision +++ b/.svn-revision @@ -1 +1 @@ -10846 +10847 diff --git a/Makefile.in b/Makefile.in index d99ac9b5..af5c8fff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -59,13 +59,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ diff --git a/acinclude.m4 b/acinclude.m4 index 8c7305b5..590a2025 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -619,207 +619,6 @@ AC_DEFUN([MULE_CHECK_EXECINFO], dnl --------------------------------------------------------------------------- -dnl MULE_FUNC_MMAP -dnl -dnl This function is copied over from autoconf sources, but fixed to work with -dnl C++. -dnl --------------------------------------------------------------------------- -AC_DEFUN([MULE_FUNC_MMAP], -[AC_CHECK_HEADERS_ONCE([stdlib.h unistd.h sys/param.h]) -AC_CHECK_FUNCS([getpagesize]) -AC_CACHE_CHECK([for working mmap], [ac_cv_func_mmap_fixed_mapped], -[AC_RUN_IFELSE([AC_LANG_SOURCE([AC_INCLUDES_DEFAULT] -[[/* malloc might have been renamed as rpl_malloc. */ -#undef malloc - -/* Thanks to Mike Haertel and Jim Avera for this test. - Here is a matrix of mmap possibilities: - mmap private not fixed - mmap private fixed at somewhere currently unmapped - mmap private fixed at somewhere already mapped - mmap shared not fixed - mmap shared fixed at somewhere currently unmapped - mmap shared fixed at somewhere already mapped - For private mappings, we should verify that changes cannot be read() - back from the file, nor mmap's back from the file at a different - address. (There have been systems where private was not correctly - implemented like the infamous i386 svr4.0, and systems where the - VM page cache was not coherent with the file system buffer cache - like early versions of FreeBSD and possibly contemporary NetBSD.) - For shared mappings, we should conversely verify that changes get - propagated back to all the places they're supposed to be. - - Grep wants private fixed already mapped. - The main things grep needs to know about mmap are: - * does it exist and is it safe to write into the mmap'd area - * how to use it (BSD variants) */ - -#include -#include - -#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H -char *malloc (); -#endif - -/* This mess was copied from the GNU getpagesize.h. */ -#ifndef HAVE_GETPAGESIZE -# ifdef _SC_PAGESIZE -# define getpagesize() sysconf(_SC_PAGESIZE) -# else /* no _SC_PAGESIZE */ -# ifdef HAVE_SYS_PARAM_H -# include -# ifdef EXEC_PAGESIZE -# define getpagesize() EXEC_PAGESIZE -# else /* no EXEC_PAGESIZE */ -# ifdef NBPG -# define getpagesize() NBPG * CLSIZE -# ifndef CLSIZE -# define CLSIZE 1 -# endif /* no CLSIZE */ -# else /* no NBPG */ -# ifdef NBPC -# define getpagesize() NBPC -# else /* no NBPC */ -# ifdef PAGESIZE -# define getpagesize() PAGESIZE -# endif /* PAGESIZE */ -# endif /* no NBPC */ -# endif /* no NBPG */ -# endif /* no EXEC_PAGESIZE */ -# else /* no HAVE_SYS_PARAM_H */ -# define getpagesize() 8192 /* punt totally */ -# endif /* no HAVE_SYS_PARAM_H */ -# endif /* no _SC_PAGESIZE */ - -#endif /* no HAVE_GETPAGESIZE */ - -int -main () -{ - char *data, *data2, *data3; - int i, pagesize; - int fd, fd2; - - pagesize = getpagesize (); - - /* First, make a file with some known garbage in it. */ - data = (char *) malloc (pagesize); - if (!data) - return 1; - for (i = 0; i < pagesize; ++i) - *(data + i) = rand (); - umask (0); - fd = creat ("conftest.mmap", 0600); - if (fd < 0) - return 2; - if (write (fd, data, pagesize) != pagesize) - return 3; - close (fd); - - /* Next, check that the tail of a page is zero-filled. File must have - non-zero length, otherwise we risk SIGBUS for entire page. */ - fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); - if (fd2 < 0) - return 4; - data2 = (char *) ""; - if (write (fd2, data2, 1) != 1) - return 5; - data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); - if (data2 == MAP_FAILED) - return 6; - for (i = 0; i < pagesize; ++i) - if (*(data2 + i)) - return 7; - close (fd2); - if (munmap (data2, pagesize)) - return 8; - - /* Next, try to mmap the file at a fixed address which already has - something else allocated at it. If we can, also make sure that - we see the same garbage. */ - fd = open ("conftest.mmap", O_RDWR); - if (fd < 0) - return 9; - if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, - MAP_PRIVATE | MAP_FIXED, fd, 0L)) - return 10; - for (i = 0; i < pagesize; ++i) - if (*(data + i) != *(data2 + i)) - return 11; - - /* Finally, make sure that changes to the mapped area do not - percolate back to the file as seen by read(). (This is a bug on - some variants of i386 svr4.0.) */ - for (i = 0; i < pagesize; ++i) - *(data2 + i) = *(data2 + i) + 1; - data3 = (char *) malloc (pagesize); - if (!data3) - return 12; - if (read (fd, data3, pagesize) != pagesize) - return 13; - for (i = 0; i < pagesize; ++i) - if (*(data + i) != *(data3 + i)) - return 14; - close (fd); - return 0; -}]])], - [ac_cv_func_mmap_fixed_mapped=yes], - [ac_cv_func_mmap_fixed_mapped=no], - [ac_cv_func_mmap_fixed_mapped=no])]) -if test $ac_cv_func_mmap_fixed_mapped = yes; then - AC_DEFINE([HAVE_MMAP], [1], - [Define to 1 if you have a working `mmap' system call.]) -fi -rm -f conftest.mmap conftest.txt -]) - - -dnl --------------------------------------------------------------------------- -dnl MULE_CHECK_MMAP -dnl -dnl Checks for mmap() and makes use of it when found. -dnl --------------------------------------------------------------------------- -AC_DEFUN([MULE_CHECK_MMAP], -[ - MULE_ARG_ENABLE([mmap], [no], [enable using mapped memory if supported]) - - AH_TEMPLATE([ENABLE_MMAP], [Define this variable to 1 if using mapped memory was requested. Note that defining it will alone not allow usage of mmap(), but unsetting it will completely disable its usage.]) - - MULE_IF_ENABLED([mmap], [ - AC_DEFINE([ENABLE_MMAP], [1]) - MULE_FUNC_MMAP - AC_CHECK_FUNCS([munmap sysconf]) - AS_IF([test $ac_cv_func_sysconf = yes], [ - AC_MSG_CHECKING([for pagesize constant for sysconf]) - AC_LINK_IFELSE([ - AC_LANG_PROGRAM([[ - #include - ]], [[ - return sysconf(_SC_PAGESIZE); - ]]) - ], [ - AC_MSG_RESULT([_SC_PAGESIZE]) - AC_DEFINE([HAVE__SC_PAGESIZE], [1], [Define to 1 if you have the _SC_PAGESIZE constant in ]) - ], [ - AC_LINK_IFELSE([ - AC_LANG_PROGRAM([[ - #include - ]], [[ - return sysconf(_SC_PAGE_SIZE); - ]]) - ], [ - AC_MSG_RESULT([_SC_PAGE_SIZE]) - AC_DEFINE([HAVE__SC_PAGE_SIZE], [1], [Define to 1 if you have the _SC_PAGE_SIZE constant in , but not _SC_PAGESIZE]) - ], [ - AC_MSG_RESULT([none]) - ]) - ]) - ]) - ]) -]) - - -dnl --------------------------------------------------------------------------- dnl MULE_DENOISER dnl dnl Test for denoising level and add denoiser commands to config.status diff --git a/aclocal.m4 b/aclocal.m4 index 295c6ac8..e1c3a81f 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1038,6 +1038,7 @@ m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/libpng.m4]) m4_include([m4/libupnp.m4]) +m4_include([m4/mmap.m4]) m4_include([m4/nls.m4]) m4_include([m4/pkg.m4]) m4_include([m4/plasmamule.m4]) diff --git a/docs/Makefile.in b/docs/Makefile.in index c844f645..da24345a 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/docs/man/Makefile.in b/docs/man/Makefile.in index c8100fc0..6db10b1d 100644 --- a/docs/man/Makefile.in +++ b/docs/man/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/m4/mmap.m4 b/m4/mmap.m4 new file mode 100644 index 00000000..92a134cf --- /dev/null +++ b/m4/mmap.m4 @@ -0,0 +1,224 @@ +# -*- Autoconf -*- +# This file is part of the aMule Project. +# +# Copyright (c) 2014 aMule Team ( admin@amule.org / http://www.amule.org ) +# +# Any parts of this program derived from the xMule, lMule or eMule project, +# or contributed by third-party developers are copyrighted by their +# respective authors. +# +# 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 2 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, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# + + +dnl --------------------------------------------------------------------------- +dnl MULE_FUNC_MMAP +dnl +dnl This function is copied over from autoconf sources, but fixed to work with +dnl C++. +dnl --------------------------------------------------------------------------- +AC_DEFUN([MULE_FUNC_MMAP], +[AC_CHECK_HEADERS_ONCE([stdlib.h unistd.h sys/param.h]) +AC_CHECK_FUNCS([getpagesize]) +AC_CACHE_CHECK([for working mmap], [ac_cv_func_mmap_fixed_mapped], +[AC_RUN_IFELSE([AC_LANG_SOURCE([AC_INCLUDES_DEFAULT] +[[/* malloc might have been renamed as rpl_malloc. */ +#undef malloc + +/* Thanks to Mike Haertel and Jim Avera for this test. + Here is a matrix of mmap possibilities: + mmap private not fixed + mmap private fixed at somewhere currently unmapped + mmap private fixed at somewhere already mapped + mmap shared not fixed + mmap shared fixed at somewhere currently unmapped + mmap shared fixed at somewhere already mapped + For private mappings, we should verify that changes cannot be read() + back from the file, nor mmap's back from the file at a different + address. (There have been systems where private was not correctly + implemented like the infamous i386 svr4.0, and systems where the + VM page cache was not coherent with the file system buffer cache + like early versions of FreeBSD and possibly contemporary NetBSD.) + For shared mappings, we should conversely verify that changes get + propagated back to all the places they're supposed to be. + + Grep wants private fixed already mapped. + The main things grep needs to know about mmap are: + * does it exist and is it safe to write into the mmap'd area + * how to use it (BSD variants) */ + +#include +#include + +#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H +char *malloc (); +#endif + +/* This mess was copied from the GNU getpagesize.h. */ +#ifndef HAVE_GETPAGESIZE +# ifdef _SC_PAGESIZE +# define getpagesize() sysconf(_SC_PAGESIZE) +# else /* no _SC_PAGESIZE */ +# ifdef HAVE_SYS_PARAM_H +# include +# ifdef EXEC_PAGESIZE +# define getpagesize() EXEC_PAGESIZE +# else /* no EXEC_PAGESIZE */ +# ifdef NBPG +# define getpagesize() NBPG * CLSIZE +# ifndef CLSIZE +# define CLSIZE 1 +# endif /* no CLSIZE */ +# else /* no NBPG */ +# ifdef NBPC +# define getpagesize() NBPC +# else /* no NBPC */ +# ifdef PAGESIZE +# define getpagesize() PAGESIZE +# endif /* PAGESIZE */ +# endif /* no NBPC */ +# endif /* no NBPG */ +# endif /* no EXEC_PAGESIZE */ +# else /* no HAVE_SYS_PARAM_H */ +# define getpagesize() 8192 /* punt totally */ +# endif /* no HAVE_SYS_PARAM_H */ +# endif /* no _SC_PAGESIZE */ + +#endif /* no HAVE_GETPAGESIZE */ + +int +main () +{ + char *data, *data2, *data3; + int i, pagesize; + int fd, fd2; + + pagesize = getpagesize (); + + /* First, make a file with some known garbage in it. */ + data = (char *) malloc (pagesize); + if (!data) + return 1; + for (i = 0; i < pagesize; ++i) + *(data + i) = rand (); + umask (0); + fd = creat ("conftest.mmap", 0600); + if (fd < 0) + return 2; + if (write (fd, data, pagesize) != pagesize) + return 3; + close (fd); + + /* Next, check that the tail of a page is zero-filled. File must have + non-zero length, otherwise we risk SIGBUS for entire page. */ + fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); + if (fd2 < 0) + return 4; + data2 = (char *) ""; + if (write (fd2, data2, 1) != 1) + return 5; + data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); + if (data2 == MAP_FAILED) + return 6; + for (i = 0; i < pagesize; ++i) + if (*(data2 + i)) + return 7; + close (fd2); + if (munmap (data2, pagesize)) + return 8; + + /* Next, try to mmap the file at a fixed address which already has + something else allocated at it. If we can, also make sure that + we see the same garbage. */ + fd = open ("conftest.mmap", O_RDWR); + if (fd < 0) + return 9; + if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, + MAP_PRIVATE | MAP_FIXED, fd, 0L)) + return 10; + for (i = 0; i < pagesize; ++i) + if (*(data + i) != *(data2 + i)) + return 11; + + /* Finally, make sure that changes to the mapped area do not + percolate back to the file as seen by read(). (This is a bug on + some variants of i386 svr4.0.) */ + for (i = 0; i < pagesize; ++i) + *(data2 + i) = *(data2 + i) + 1; + data3 = (char *) malloc (pagesize); + if (!data3) + return 12; + if (read (fd, data3, pagesize) != pagesize) + return 13; + for (i = 0; i < pagesize; ++i) + if (*(data + i) != *(data3 + i)) + return 14; + close (fd); + return 0; +}]])], + [ac_cv_func_mmap_fixed_mapped=yes], + [ac_cv_func_mmap_fixed_mapped=no], + [ac_cv_func_mmap_fixed_mapped=no])]) +if test $ac_cv_func_mmap_fixed_mapped = yes; then + AC_DEFINE([HAVE_MMAP], [1], + [Define to 1 if you have a working `mmap' system call.]) +fi +rm -f conftest.mmap conftest.txt +]) + + +dnl --------------------------------------------------------------------------- +dnl MULE_CHECK_MMAP +dnl +dnl Checks for mmap() and makes use of it when found. +dnl --------------------------------------------------------------------------- +AC_DEFUN([MULE_CHECK_MMAP], +[ + MULE_ARG_ENABLE([mmap], [no], [enable using mapped memory if supported]) + + AH_TEMPLATE([ENABLE_MMAP], [Define this variable to 1 if using mapped memory was requested. Note that defining it will alone not allow usage of mmap(), but unsetting it will completely disable its usage.]) + + MULE_IF_ENABLED([mmap], [ + AC_DEFINE([ENABLE_MMAP], [1]) + MULE_FUNC_MMAP + AC_CHECK_FUNCS([munmap sysconf]) + AS_IF([test $ac_cv_func_sysconf = yes], [ + AC_MSG_CHECKING([for pagesize constant for sysconf]) + AC_LINK_IFELSE([ + AC_LANG_PROGRAM([[ + #include + ]], [[ + return sysconf(_SC_PAGESIZE); + ]]) + ], [ + AC_MSG_RESULT([_SC_PAGESIZE]) + AC_DEFINE([HAVE__SC_PAGESIZE], [1], [Define to 1 if you have the _SC_PAGESIZE constant in ]) + ], [ + AC_LINK_IFELSE([ + AC_LANG_PROGRAM([[ + #include + ]], [[ + return sysconf(_SC_PAGE_SIZE); + ]]) + ], [ + AC_MSG_RESULT([_SC_PAGE_SIZE]) + AC_DEFINE([HAVE__SC_PAGE_SIZE], [1], [Define to 1 if you have the _SC_PAGE_SIZE constant in , but not _SC_PAGESIZE]) + ], [ + AC_MSG_RESULT([none]) + ]) + ]) + ]) + ]) +]) diff --git a/src/Makefile.in b/src/Makefile.in index c1ada795..9abc25d9 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -70,13 +70,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/libs/Makefile.in b/src/libs/Makefile.in index e34d570c..27fa3ff8 100644 --- a/src/libs/Makefile.in +++ b/src/libs/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/libs/common/Makefile.in b/src/libs/common/Makefile.in index 7489e7ab..e11de168 100644 --- a/src/libs/common/Makefile.in +++ b/src/libs/common/Makefile.in @@ -50,13 +50,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/libs/ec/Makefile.in b/src/libs/ec/Makefile.in index 38d2b852..3cc06f6b 100644 --- a/src/libs/ec/Makefile.in +++ b/src/libs/ec/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/libs/ec/cpp/Makefile.in b/src/libs/ec/cpp/Makefile.in index 914bab83..5043cffa 100644 --- a/src/libs/ec/cpp/Makefile.in +++ b/src/libs/ec/cpp/Makefile.in @@ -50,13 +50,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/pixmaps/Makefile.in b/src/pixmaps/Makefile.in index 446e6599..97b03c64 100644 --- a/src/pixmaps/Makefile.in +++ b/src/pixmaps/Makefile.in @@ -47,13 +47,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/pixmaps/flags_xpm/Makefile.in b/src/pixmaps/flags_xpm/Makefile.in index 5b122520..c13dbaa2 100644 --- a/src/pixmaps/flags_xpm/Makefile.in +++ b/src/pixmaps/flags_xpm/Makefile.in @@ -47,13 +47,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/skins/Makefile.in b/src/skins/Makefile.in index 7b891294..c86eb96a 100644 --- a/src/skins/Makefile.in +++ b/src/skins/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/Makefile.in b/src/utils/Makefile.in index 2f1ba36b..a9ce0bf7 100644 --- a/src/utils/Makefile.in +++ b/src/utils/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/aLinkCreator/Makefile.in b/src/utils/aLinkCreator/Makefile.in index f4e84ff2..b70282e1 100644 --- a/src/utils/aLinkCreator/Makefile.in +++ b/src/utils/aLinkCreator/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/aLinkCreator/docs/Makefile.in b/src/utils/aLinkCreator/docs/Makefile.in index 441943cd..2f1d490b 100644 --- a/src/utils/aLinkCreator/docs/Makefile.in +++ b/src/utils/aLinkCreator/docs/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/aLinkCreator/src/Makefile.in b/src/utils/aLinkCreator/src/Makefile.in index 7e77ee9b..7462fdf5 100644 --- a/src/utils/aLinkCreator/src/Makefile.in +++ b/src/utils/aLinkCreator/src/Makefile.in @@ -54,13 +54,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/cas/Makefile.in b/src/utils/cas/Makefile.in index bc07d6bf..32b732a8 100644 --- a/src/utils/cas/Makefile.in +++ b/src/utils/cas/Makefile.in @@ -53,13 +53,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/cas/docs/Makefile.in b/src/utils/cas/docs/Makefile.in index a634f836..85e580de 100644 --- a/src/utils/cas/docs/Makefile.in +++ b/src/utils/cas/docs/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/fileview/Makefile.in b/src/utils/fileview/Makefile.in index b460ff00..64005bef 100644 --- a/src/utils/fileview/Makefile.in +++ b/src/utils/fileview/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/plasmamule/Makefile.in b/src/utils/plasmamule/Makefile.in index d6f555f0..382de894 100644 --- a/src/utils/plasmamule/Makefile.in +++ b/src/utils/plasmamule/Makefile.in @@ -56,13 +56,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/wxCas/Makefile.in b/src/utils/wxCas/Makefile.in index f66427d4..a3b1e2f4 100644 --- a/src/utils/wxCas/Makefile.in +++ b/src/utils/wxCas/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/wxCas/docs/Makefile.in b/src/utils/wxCas/docs/Makefile.in index 8020b7d3..a58e07a3 100644 --- a/src/utils/wxCas/docs/Makefile.in +++ b/src/utils/wxCas/docs/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/wxCas/src/Makefile.in b/src/utils/wxCas/src/Makefile.in index 173a7878..dd5da934 100644 --- a/src/utils/wxCas/src/Makefile.in +++ b/src/utils/wxCas/src/Makefile.in @@ -52,13 +52,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/xas/Makefile.in b/src/utils/xas/Makefile.in index fc7e788d..e369439b 100644 --- a/src/utils/xas/Makefile.in +++ b/src/utils/xas/Makefile.in @@ -50,13 +50,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/utils/xas/docs/Makefile.in b/src/utils/xas/docs/Makefile.in index 72f7154a..775e4eda 100644 --- a/src/utils/xas/docs/Makefile.in +++ b/src/utils/xas/docs/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/webserver/Makefile.in b/src/webserver/Makefile.in index a1d3aff0..7c860444 100644 --- a/src/webserver/Makefile.in +++ b/src/webserver/Makefile.in @@ -47,13 +47,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/webserver/default/Makefile.in b/src/webserver/default/Makefile.in index 26ff8961..8c41b51c 100644 --- a/src/webserver/default/Makefile.in +++ b/src/webserver/default/Makefile.in @@ -49,13 +49,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/src/webserver/src/Makefile.in b/src/webserver/src/Makefile.in index 99dbff75..77b640ad 100644 --- a/src/webserver/src/Makefile.in +++ b/src/webserver/src/Makefile.in @@ -51,13 +51,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/unittests/Makefile.in b/unittests/Makefile.in index 35a17e7b..857b077f 100644 --- a/unittests/Makefile.in +++ b/unittests/Makefile.in @@ -47,13 +47,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/unittests/muleunit/Makefile.in b/unittests/muleunit/Makefile.in index f1d2cfd1..0f1e2be2 100644 --- a/unittests/muleunit/Makefile.in +++ b/unittests/muleunit/Makefile.in @@ -48,13 +48,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/unittests/tests/Makefile.in b/unittests/tests/Makefile.in index 8b29a441..eb998456 100644 --- a/unittests/tests/Makefile.in +++ b/unittests/tests/Makefile.in @@ -52,13 +52,14 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/GeoIP.m4 \ $(top_srcdir)/m4/kde.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libpng.m4 \ - $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/plasmamule.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/qt.m4 \ - $(top_srcdir)/m4/readline.m4 $(top_srcdir)/m4/stdint_h.m4 \ - $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ - $(top_srcdir)/m4/wxwin.m4 $(top_srcdir)/m4/zlib.m4 \ - $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in + $(top_srcdir)/m4/libupnp.m4 $(top_srcdir)/m4/mmap.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \ + $(top_srcdir)/m4/plasmamule.m4 $(top_srcdir)/m4/progtest.m4 \ + $(top_srcdir)/m4/qt.m4 $(top_srcdir)/m4/readline.m4 \ + $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ + $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/m4/wxwin.m4 \ + $(top_srcdir)/m4/zlib.m4 $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -- 2.11.4.GIT